This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "User:Yehohanan7"

From OWASP
Jump to: navigation, search
(Accidental leaking of sensitive information through data queries)
 
Line 1: Line 1:
 
 
== Access control enforced by presentation layer ==
 
== Access control enforced by presentation layer ==
  
Line 26: Line 25:
  
 
== Accidental leaking of sensitive information through data queries ==
 
== Accidental leaking of sensitive information through data queries ==
 +
 +
[[SQL Injection]]

Latest revision as of 14:07, 22 May 2008

Access control enforced by presentation layer

Definition:

Enforcing access control in the presentation layer means that the developer does not show buttons and links for functions and assets that are not authorized for the user

Example in our application:

The payment button will be not shown in the payment page if the holiday is already booked.

Attacks

Forced Browsing


Defense

Access control must be performed in the business layer, not only the presentation layer.




Accidental leaking of sensitive information through data queries

SQL Injection