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 "OWASP Periodic Table of Vulnerabilities - Insufficient Authentication/Authorization"

From OWASP
Jump to: navigation, search
(initial page setup)
 
m
Line 18: Line 18:
  
 
Use an authentication framework.<br>
 
Use an authentication framework.<br>
 +
Deny all access by default, and explicitly grant access per item.
  
 
=== Custom Framework Solution ===
 
=== Custom Framework Solution ===
 
+
Generate easy configurable role-based authentication and authorization policies.<br>
Apply least-privilege principle to all transactions, requiring authentication and authorization where applicable.  
+
Apply least-privilege principle to all transactions, requiring authentication and authorization wherever applicable.  
  
 
=== Custom Code Solution ===
 
=== Custom Code Solution ===
Line 29: Line 30:
 
=== Discussion / Controversy ===
 
=== Discussion / Controversy ===
  
<discussion / controversy tracking here>
 
  
 
=== References ===
 
=== References ===
  
 
[http://projects.webappsec.org/w/page/13246939/Insufficient%20Authentication Insufficient Authentication (WASC)]
 
[http://projects.webappsec.org/w/page/13246939/Insufficient%20Authentication Insufficient Authentication (WASC)]

Revision as of 09:39, 16 May 2013

Return to Periodic Table Working View

Insufficient Authentication/Authorization

Root Cause Summary

Incorrect verification of identity and permissions can results to an attacker accessing sensitive data or functionality without properly being authenticated and/or authorized to do so.

Browser / Standards Solution

None

Perimeter Solution

Whenever possible, apply server-side Access Control Lists for those sections of sensitive data that should't be publicly accessible.

Generic Framework Solution

Use an authentication framework.
Deny all access by default, and explicitly grant access per item.

Custom Framework Solution

Generate easy configurable role-based authentication and authorization policies.
Apply least-privilege principle to all transactions, requiring authentication and authorization wherever applicable.

Custom Code Solution

None

Discussion / Controversy

References

Insufficient Authentication (WASC)