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
(Automating Code Reviews)
(Examples by Vulnerability)
Line 15: Line 15:
 
#[[Data Validation (Code Review)|Data Validation]]
 
#[[Data Validation (Code Review)|Data Validation]]
 
#[[Error Handling]]
 
#[[Error Handling]]
 +
#[[Logging issues]]
 
#[[The Secure Code Environment]]
 
#[[The Secure Code Environment]]
 
#[[Transaction Analysis]]
 
#[[Transaction Analysis]]
Line 22: Line 23:
 
#[[Cross Site Request Forgery]]
 
#[[Cross Site Request Forgery]]
 
#[[Cryptography]]
 
#[[Cryptography]]
 +
#[[Dangerous HTTP Methods]]
 +
#[[Race Conditions]]
  
 
== Language specific best practice ==
 
== Language specific best practice ==

Revision as of 11:04, 9 January 2007

Methodology

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

Design review

  1. Designing for security

Examples by Vulnerability

  1. Buffer Overruns and Overflows
  2. OS Injection
  3. SQL Injection
  4. Data Validation
  5. Error Handling
  6. Logging issues
  7. The Secure Code Environment
  8. Transaction Analysis
  9. Authorization
  10. Authentication
  11. Session Integrity
  12. Cross Site Request Forgery
  13. Cryptography
  14. Dangerous HTTP Methods
  15. 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