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 "Injection problem"

From OWASP
Jump to: navigation, search
Line 57: Line 57:
 
==Examples==
 
==Examples==
  
===Short example name===
+
Injection problems describe a large subset of problems with varied instantiations. For an example of one of these problems, see the section [[Format string problem]].  
: A short example description, small picture, or sample code with [http://www.site.com links]
 
 
 
===Short example name===
 
: A short example description, small picture, or sample code with [http://www.site.com links]
 
 
 
  
 
==Related [[Attacks]]==
 
==Related [[Attacks]]==
Line 72: Line 67:
 
==Related [[Vulnerabilities]]==
 
==Related [[Vulnerabilities]]==
  
* [[Vulnerability 1]]
+
* [[SQL injection]]
* [[Vulnerabiltiy 2]]
+
* [[Format String]]
 +
* [[Command injection]]
 +
* [[Log injection]]
 +
* [[Reflection injection]]
 +
* [[Interpreter Injection]]
  
  
Line 92: Line 91:
 
TBD
 
TBD
  
[[Category:FIXME|add links
 
 
In addition, one should classify vulnerability based on the following subcategories: Ex:<nowiki>[[Category:Error Handling Vulnerability]]</nowiki>
 
 
Availability Vulnerability
 
 
Authorization Vulnerability
 
 
Authentication Vulnerability
 
 
Concurrency Vulnerability
 
 
Configuration Vulnerability
 
 
Cryptographic Vulnerability
 
 
Encoding Vulnerability
 
 
Error Handling Vulnerability
 
 
Input Validation Vulnerability
 
 
Logging and Auditing Vulnerability
 
 
Session Management Vulnerability]]
 
  
 
__NOTOC__
 
__NOTOC__
Line 122: Line 96:
  
 
[[Category:OWASP ASDR Project]]
 
[[Category:OWASP ASDR Project]]
 
 
==Overview==
 
 
 
==Avoidance and mitigation ==
 
 
 
==Discussion ==
 
 
 
==Examples ==
 
 
Injection problems describe a large subset of problems with varied instantiations. For an example of one of these problems, see the section [[Format string problem]].
 
 
==Related problems ==
 
 
* [[SQL injection]]
 
 
* [[Format String]]
 
 
* [[Command injection]]
 
 
* [[Log injection]]
 
 
* [[Reflection injection]]
 
 
*      [[Interpreter Injection]]
 
 
 
[[Category:Vulnerability]]
 
[[Category:Vulnerability]]
 
 
[[Category:Input Validation]]
 
[[Category:Input Validation]]
 
 
[[Category:OWASP_CLASP_Project]]
 
[[Category:OWASP_CLASP_Project]]
 +
[[Category:Input Validation Vulnerability]]

Revision as of 14:12, 26 September 2008


This is a Vulnerability. To view all vulnerabilities, please see the Vulnerability Category page.

Last revision (mm/dd/yy): 09/26/2008

Vulnerabilities Table of Contents

ASDR Table of Contents


Description

Injection problems span a wide range of instantiations. The basic form of this flaw involves the injection of control-plane data into the data-plane in order to alter the control flow of the process.

Consequences

  • Confidentiality: Many injection attacks involve the disclosure of important information - in terms of both data sensitivity and usefulness in further exploitation
  • Authentication: In some cases injectable code controls authentication; this may lead to remote vulnerability
  • Access Control: Injection attacks are characterized by the ability to significantly change the flow of a given process, and in some cases, to the execution of arbitrary code.
  • Integrity: Data injection attacks lead to loss of data integrity in nearly all cases as the control-plane data injected is always incidental to data recall or writing.
  • Accountability: Often the actions performed by injected control code are unlogged.

Exposure period

  • Requirements specification: A language might be chosen which is not subject to these issues.
  • Implementation: Many logic errors can contribute to these issues.

Platform

  • Languages: C, C++, Assembly, SQL
  • Platforms: Any

Required resources

Any

Severity

High

Likelihood of exploit

Very High

Injection problems encompass a wide variety of issues - all mitigated in very different ways. For this reason, the most effective way to discuss these flaws is to note the distinct features which classify them as injection flaws.

The most important issue to note is that all injection problems share one thing in common - i.e., they allow for the injection of control plane data into the user-controlled data plane. This means that the execution of the process may be altered by sending code in through legitimate data channels, using no other mechanism. While buffer overflows, and many other flaws, involve the use of some further issue to gain execution, injection problems need only for the data to be parsed.

The most classing instantiations of this category of flaw are SQL injection and format string vulnerabilities.


Risk Factors

TBD

Examples

Injection problems describe a large subset of problems with varied instantiations. For an example of one of these problems, see the section Format string problem.

Related Attacks


Related Vulnerabilities


Related Controls

  • Requirements specification: A language might be chosen which is not subject to these issues.
  • Implementation: As so many possible implementations of this flaw exist, it is best to simply be aware of the flaw and work to ensure that all control characters entered in data are subject to black-list style parsing.


Related Technical Impacts


References

TBD