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/Training/OWASP ESAPI"

From OWASP
Jump to: navigation, search
 
(7 intermediate revisions by one other user not shown)
Line 6: Line 6:
 
| Content =  
 
| Content =  
 
 
 
 
All OWASP ESAPI language versions have the same basic design:  
+
ESAPI is a collection security building blocks. All ESAPI language versions have the same basic design. There is a set of security control interfaces. There is a reference implementation for each security control. There are optionally your own implementations for each security control.
 +
<br><br>
 +
You can download ESAPI from [http://www.owasp.org/index.php/Category:OWASP_Enterprise_Security_API#tab=Downloads here.]  The [[ESAPI_Swingset | ESAPI Swingset]] sample application demonstrates how to leverage ESAPI to protect a web application.
  
* '''There is a set of security control interfaces.''' They define for example types of parameters that are passed to types of security controls.
 
 
* '''There is a reference implementation for each security control.''' The logic is not organization‐specific and the logic is not application‐specific. An example: string‐based input validation.
 
 
* '''There are optionally your own implementations for each security control.''' There may be application logic contained in these classes which may be developed by or for your organization. An example: enterprise authentication.
 
 
&nbsp;
 
&nbsp;
 
| Material =  
 
| Material =  
Line 23: Line 20:
  
 
}}
 
}}
 +
 +
 +
[[Category:OWASP_Training|Training]]

Latest revision as of 16:26, 23 November 2010

MODULE
OWASP Enterprise Security API
Overview & Goal
ESAPI is Enterprise security api’s for remediation of OWASP Top 10 vulnerabilities. It has generic api's for each of these vulnerability. This is a great source where application developers can see how specific issues can be remediated. The ESAPI libraries are designed to make it easier for programmers to retrofit security into existing applications. The ESAPI libraries also serve as a solid foundation for new development.
Contents Materials
 

ESAPI is a collection security building blocks. All ESAPI language versions have the same basic design. There is a set of security control interfaces. There is a reference implementation for each security control. There are optionally your own implementations for each security control.

You can download ESAPI from here. The ESAPI Swingset sample application demonstrates how to leverage ESAPI to protect a web application.