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
(Java)
(Java)
Line 37: Line 37:
 
#[[Java overview]]
 
#[[Java overview]]
 
#[[Java applet code review]]
 
#[[Java applet code review]]
#[[Java server (J2EE) review]]
+
#[[Java server (J2EE) code review]]
 
#[[Inner classes]]
 
#[[Inner classes]]
 
#[[Class comparison]]
 
#[[Class comparison]]

Revision as of 21:16, 21 January 2007

Chapters Assigned

Guide History

Long long ago...

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. Reviewing Code for SQL Injection
  4. Reviewing Code for Data Validation
  5. Reviewing code for XSS issues
  6. Reviewing Code for Error Handling
  7. Reviewing Code for Logging Issues
  8. Reviewing The Secure Code Environment
  9. Transaction Analysis
  10. Authorization
  11. Authentication
  12. Session Integrity
  13. Cross Site Request Forgery
  14. Cryptography
  15. Dangerous HTTP Methods
  16. Race Conditions

Language specific best practice

Java

  1. Java overview
  2. Java applet code review
  3. Java server (J2EE) code review
  4. Inner classes
  5. Class comparison
  6. Cloneable classes
  7. Serializable classes
  8. Package scope and encapsulation
  9. Mutable objects
  10. Native Methods
  11. Private methods & circumvention
  12. Static Fields

.NET

PHP

C

  1. Memory management
  2. String management
  3. Secure access to file system items

Automating Code Reviews

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

References