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 Code Review Guide Table of Contents"
From OWASP
(→Methodology) |
(→Examples by vulnerability) |
||
Line 11: | Line 11: | ||
==[[Design review]] == | ==[[Design review]] == | ||
− | ==Examples by | + | ==Examples by Vulnerability== |
#[[Buffer Overruns and Overflows|Buffer Overruns and Overflows]] | #[[Buffer Overruns and Overflows|Buffer Overruns and Overflows]] | ||
#[[OS Injection]] | #[[OS Injection]] | ||
− | #[[SQL Injection]] | + | #[[Review Code for SQL Injection|SQL Injection]] |
#[[Data Validation (Code Review)|Data Validation]] | #[[Data Validation (Code Review)|Data Validation]] | ||
#[[Error Handling]] | #[[Error Handling]] |
Revision as of 16:14, 15 November 2006
Methodology
NOTE: The following two sections seem to describe quality code review processes, not specifically focused on security. Security code reviews are somewhat different as they require an understanding of the threat model.
Design review
Examples by Vulnerability
- Buffer Overruns and Overflows
- OS Injection
- SQL Injection
- Data Validation
- Error Handling
- The Secure Code Environment
- Transaction Analysis
- Authorization
- Authentication
- Session Integrity
Language specific best practice
Java
- Inner classes
- Class comparison
- Cloneable classes
- Serializable classes
- Package scope and encapsulation
- Mutable objects
- Private methods & circumvention