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
Jump to: navigation, search
(Examples by Vulnerability)
(Examples by Vulnerability)
Line 12: Line 12:
 
#[[Reviewing Code for Buffer Overruns and Overflows|Reviewing Code for Buffer Overruns and Overflows]]
 
#[[Reviewing Code for Buffer Overruns and Overflows|Reviewing Code for Buffer Overruns and Overflows]]
 
#[[Reviewing Code for OS Injection]]
 
#[[Reviewing Code for OS Injection]]
#[[OS Injection]]
 
 
#[[Reviewing Code for SQL Injection|SQL Injection]]
 
#[[Reviewing Code for SQL Injection|SQL Injection]]
 
#[[Data Validation (Code Review)|Data Validation]]
 
#[[Data Validation (Code Review)|Data Validation]]

Revision as of 10:44, 11 January 2007

Methodology

  1. Introduction
  2. Steps and Roles
  3. Code Review Processes

Design review

  1. Designing for security

Examples by Vulnerability

  1. Reviewing Code for Buffer Overruns and Overflows
  2. Reviewing Code for OS Injection
  3. SQL Injection
  4. Data Validation
  5. Reviewing Code for Data Validation
  6. Error Handling
  7. Reviewing Code for Error Handling
  8. Logging issues
  9. Reviewing Code for Logging Issues
  10. The Secure Code Environment
  11. Reviewing The Secure Code Environment
  12. Transaction Analysis
  13. Authorization
  14. Authentication
  15. Session Integrity
  16. Cross Site Request Forgery
  17. Cryptography
  18. Dangerous HTTP Methods
  19. Race Conditions

Language specific best practice

Java

  1. Inner classes
  2. Class comparison
  3. Cloneable classes
  4. Serializable classes
  5. Package scope and encapsulation
  6. Mutable objects
  7. Private methods & circumvention

.NET

PHP

Automating Code Reviews

  1. Preface
  2. Reasons for using automated tools
  3. Education and cultural change
  4. Tool Deployment Model

References