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
(Language specific best practice)
Line 24: Line 24:
 
== Language specific best practice ==
 
== Language specific best practice ==
  
 
+
===Java===
 
#[[Inner classes]]
 
#[[Inner classes]]
 
#[[Class comparison]]
 
#[[Class comparison]]
Line 32: Line 32:
 
#[[Mutable objects]]
 
#[[Mutable objects]]
 
#[[Private methods & circumvention]]
 
#[[Private methods & circumvention]]
 +
 +
===.NET===
 +
 +
===PHP===
  
 
==[[Automating Code Reviews]] ==
 
==[[Automating Code Reviews]] ==

Revision as of 22:41, 18 October 2006

Methodology

  1. Introduction

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.

  1. Steps and Roles
  2. Code Review Processes

Design review

Examples by vulnerability

  1. Buffer Overruns and Overflows
  2. OS Injection
  3. SQL Injection
  4. Data Validation
  5. Error Handling
  6. The Secure Code Environment
  7. Transaction Analysis
  8. Authorisation
  9. Authentication


Language specific best practice

Java

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

.NET

PHP

Automating Code Reviews

References