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 "Testing: Introduction and objectives"

From OWASP
Jump to: navigation, search
m
m (Change Data Validation to Input Validation)
 
(15 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Template:OWASP Testing Guide v3}}
+
{{Template:OWASP Testing Guide v4}}
  
This Chapter describes the OWASP Web Application Penetration testing methodology and explains how to test each vulnerability.
+
This section describes the OWASP web application security testing methodology and explains how to test for evidence of vulnerabilities within the application due to deficiencies with identified security controls.
  
'''What is Web Application Penetration Testing?'''<br>
+
'''What is Web Application Security Testing?'''<br>
A penetration test is a method of evaluating the security of a computer system or network by simulating an attack. A Web Application Penetration Test focuses only on evaluating the security of a web application.<br>
+
A security test is a method of evaluating the security of a computer system or network by methodically validating and verifying the effectiveness of application security controls. A web application security test focuses only on evaluating the security of a web application. The process involves an active analysis of the application for any weaknesses, technical flaws, or vulnerabilities. Any security issues that are found will be presented to the system owner, together with an assessment of the impact, a proposal for mitigation or a technical solution.
The process involves an active analysis of the application for any weaknesses, technical flaws, or vulnerabilities. Any security issues that are found will be presented to the system owner together with an assessment of their impact and often with a proposal for mitigation or a technical solution.
 
  
'''What is a vulnerability?'''<br>
 
  
Given that an application owns a set of assets (resources of value, such as the data in a database or in the file system), a vulnerability is a weakness in an asset that makes a threat possible.
+
'''What is a Vulnerability?'''<br>
So a threat is a potential occurrence that may harm an asset by exploiting a vulnerability.
+
A vulnerability is a flaw or weakness in a system's design, implementation, operation or management that could be exploited to compromise the system's security objectives.  
A test is an action that tends to show a vulnerability in the application.
 
  
'''Our approach in writing this guide'''
 
  
The OWASP approach is Open and Collaborative:
+
'''What is a Threat?'''<br>
 +
A threat is anything (a malicious external attacker, an internal user, a system instability, etc) that may harm the assets owned by an application (resources of value, such as the data in a database or in the file system) by exploiting a vulnerability.
 +
 
 +
 
 +
'''What is a Test?'''<br>
 +
A test is an action to demonstrate that an application meets the security requirements of its stakeholders.
 +
 
 +
 
 +
'''The Approach in Writing this Guide'''
 +
 
 +
The OWASP approach is open and collaborative:
 
* Open: every security expert can participate with his or her experience in the project. Everything is free.
 
* Open: every security expert can participate with his or her experience in the project. Everything is free.
* Collaborative: we usually perform brainstorming before the articles are written so we can share our ideas and develop a collective vision of the project. That means rough consensus, wider audience and participation.<br>
+
* Collaborative: brainstorming is performed before the articles are written so the team can share ideas and develop a collective vision of the project. That means rough consensus, a wider audience and increased participation.<br>
 +
 
 +
 
 
This approach tends to create a defined Testing Methodology that will be:
 
This approach tends to create a defined Testing Methodology that will be:
 
* Consistent
 
* Consistent
 
* Reproducible
 
* Reproducible
 +
* Rigorous
 
* Under quality control<br>
 
* Under quality control<br>
The problems that we want to be addressed are:
+
 
* Document all
+
 
* Test all
+
The problems to be addressed are fully documented and tested. It is important to use a method to test all known vulnerabilities and document all the security test activities.<br>
We think it is important to use a method to test all known vulnerabilities and document all the pen test activities.<br>
+
 
  
 
'''What is the OWASP testing methodology?'''<br>
 
'''What is the OWASP testing methodology?'''<br>
  
Penetration testing will never be an exact science where a complete list of all possible issues that should be tested can be defined. Indeed, penetration testing is only an appropriate technique for testing the security of web applications under certain circumstances.  
+
Security testing will never be an exact science where a complete list of all possible issues that should be tested can be defined. Indeed, security testing is only an appropriate technique for testing the security of web applications under certain circumstances. The goal of this project is to collect all the possible testing techniques, explain these techniques, and keep the guide updated. The OWASP Web Application Security Testing method is based on the black box approach. The tester knows nothing or has very little information about the application to be tested.
The goal is to collect all the possible testing techniques, explain, them and keep the guide updated.<br>
+
 
The OWASP Web Application Penetration Testing method is based on the black box approach. The tester knows nothing or very little information about the application to be tested.
+
 
 
The testing model consists of:
 
The testing model consists of:
 
* Tester: Who performs the testing activities  
 
* Tester: Who performs the testing activities  
 
* Tools and methodology: The core of this Testing Guide project
 
* Tools and methodology: The core of this Testing Guide project
 
* Application: The black box to test
 
* Application: The black box to test
 +
 +
 
The test is divided into 2 phases:
 
The test is divided into 2 phases:
* Passive mode: in the passive mode, the tester tries to understand the application's logic, plays with the application. Tools can be used for information gathering, for example, an HTTP proxy to observe all the HTTP requests and responses. At the end of this phase, the tester should understand all the access points (gates) of the application (e.g., HTTP headers, parameters, and cookies). For example, the tester could find the following:
+
* Phase 1 Passive mode:  
 +
In the passive mode the tester tries to understand the application's logic and plays with the application. Tools can be used for information gathering. For example, an HTTP proxy can be used to observe all the HTTP requests and responses. At the end of this phase, the tester should understand all the access points (''gates'') of the application (e.g., HTTP headers, parameters, and cookies). The Information Gathering section explains how to perform a passive mode test.
 +
 
 +
For example the tester could find the following:
 
<pre>
 
<pre>
 
https://www.example.com/login/Authentic_Form.html
 
https://www.example.com/login/Authentic_Form.html
 
</pre>
 
</pre>
This may indicate an authentication form in which the application requests a username and a password. <br>
+
 
 +
This may indicate an authentication form where the application requests a username and a password. <br>
 +
 
 +
 
 
The following parameters represent two access points (gates) to the application:
 
The following parameters represent two access points (gates) to the application:
 
<pre>
 
<pre>
 
http://www.example.com/Appx.jsp?a=1&b=1
 
http://www.example.com/Appx.jsp?a=1&b=1
 
</pre>
 
</pre>
 +
 +
 
In this case, the application shows two gates (parameters a and b).
 
In this case, the application shows two gates (parameters a and b).
All the gates found in this phase represent a point of testing. A spreadsheet with the directory tree of the application and all the access points would be useful for the second phase.<br> <br>
+
All the gates found in this phase represent a point of testing. A spreadsheet with the directory tree of the application and all the access points would be useful for the second phase.
* Active mode: in this phase, the tester begins to test using the methodology described in the follow paragraphs.
 
  
We have split the set of tests in 10 sub-categories:
+
 
* Information Gathering  
+
* Phase 2 Active mode:
* Configuration Management Testing
+
In this phase the tester begins to test using the methodology described in the follow sections.
 +
 
 +
 
 +
The set of active tests have been split into 11 sub-categories for a total of 91 controls:
 +
* Information Gathering
 +
* Configuration and Deployment Management Testing
 +
* Identity Management Testing
 +
* Authentication Testing
 +
* Authorization Testing
 +
* Session Management Testing
 +
* Input Validation Testing
 +
* Error Handling
 +
* Cryptography
 
* Business Logic Testing
 
* Business Logic Testing
* Authentication Testing
 
* Authorization testing
 
* Session Management Testing
 
* Data Validation Testing
 
* Denial of Service Testing
 
* Web Services Testing
 
 
* Client Side Testing
 
* Client Side Testing
 
In the following paragraph it is described the set of checklist that composed the methodology.
 

Latest revision as of 15:25, 5 August 2014

This article is part of the new OWASP Testing Guide v4.
Back to the OWASP Testing Guide v4 ToC: https://www.owasp.org/index.php/OWASP_Testing_Guide_v4_Table_of_Contents Back to the OWASP Testing Guide Project: https://www.owasp.org/index.php/OWASP_Testing_Project


This section describes the OWASP web application security testing methodology and explains how to test for evidence of vulnerabilities within the application due to deficiencies with identified security controls.

What is Web Application Security Testing?
A security test is a method of evaluating the security of a computer system or network by methodically validating and verifying the effectiveness of application security controls. A web application security test focuses only on evaluating the security of a web application. The process involves an active analysis of the application for any weaknesses, technical flaws, or vulnerabilities. Any security issues that are found will be presented to the system owner, together with an assessment of the impact, a proposal for mitigation or a technical solution.


What is a Vulnerability?
A vulnerability is a flaw or weakness in a system's design, implementation, operation or management that could be exploited to compromise the system's security objectives.


What is a Threat?
A threat is anything (a malicious external attacker, an internal user, a system instability, etc) that may harm the assets owned by an application (resources of value, such as the data in a database or in the file system) by exploiting a vulnerability.


What is a Test?
A test is an action to demonstrate that an application meets the security requirements of its stakeholders.


The Approach in Writing this Guide

The OWASP approach is open and collaborative:

  • Open: every security expert can participate with his or her experience in the project. Everything is free.
  • Collaborative: brainstorming is performed before the articles are written so the team can share ideas and develop a collective vision of the project. That means rough consensus, a wider audience and increased participation.


This approach tends to create a defined Testing Methodology that will be:

  • Consistent
  • Reproducible
  • Rigorous
  • Under quality control


The problems to be addressed are fully documented and tested. It is important to use a method to test all known vulnerabilities and document all the security test activities.


What is the OWASP testing methodology?

Security testing will never be an exact science where a complete list of all possible issues that should be tested can be defined. Indeed, security testing is only an appropriate technique for testing the security of web applications under certain circumstances. The goal of this project is to collect all the possible testing techniques, explain these techniques, and keep the guide updated. The OWASP Web Application Security Testing method is based on the black box approach. The tester knows nothing or has very little information about the application to be tested.


The testing model consists of:

  • Tester: Who performs the testing activities
  • Tools and methodology: The core of this Testing Guide project
  • Application: The black box to test


The test is divided into 2 phases:

  • Phase 1 Passive mode:

In the passive mode the tester tries to understand the application's logic and plays with the application. Tools can be used for information gathering. For example, an HTTP proxy can be used to observe all the HTTP requests and responses. At the end of this phase, the tester should understand all the access points (gates) of the application (e.g., HTTP headers, parameters, and cookies). The Information Gathering section explains how to perform a passive mode test.

For example the tester could find the following:

https://www.example.com/login/Authentic_Form.html

This may indicate an authentication form where the application requests a username and a password.


The following parameters represent two access points (gates) to the application:

http://www.example.com/Appx.jsp?a=1&b=1


In this case, the application shows two gates (parameters a and b). All the gates found in this phase represent a point of testing. A spreadsheet with the directory tree of the application and all the access points would be useful for the second phase.


  • Phase 2 Active mode:

In this phase the tester begins to test using the methodology described in the follow sections.


The set of active tests have been split into 11 sub-categories for a total of 91 controls:

  • Information Gathering
  • Configuration and Deployment Management Testing
  • Identity Management Testing
  • Authentication Testing
  • Authorization Testing
  • Session Management Testing
  • Input Validation Testing
  • Error Handling
  • Cryptography
  • Business Logic Testing
  • Client Side Testing