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 "Top 10-2017 A1-Injection"

From OWASP
Jump to: navigation, search
m (T.Gigler moved page Top 10 2017-A1-Injection to Top 10-2017 A1-Injection: OWASP Top 10-2017 Release)
m (Updated PrevLink and NextLink)
Line 1: Line 1:
 
{{Top_10_2013:TopTemplate
 
{{Top_10_2013:TopTemplate
     |usenext=2013NextLink
+
     |usenext=2017NextLink
 
     |next=A2-{{Top_10_2010:ByTheNumbers
 
     |next=A2-{{Top_10_2010:ByTheNumbers
 
               |2
 
               |2
 
               |year=2017
 
               |year=2017
 
               |language=en}}
 
               |language=en}}
     |useprev=2013PrevLink
+
     |useprev=2017PrevLink
 
     |prev={{Top_10:LanguageFile|text=top10|year=2017|language=en}}
 
     |prev={{Top_10:LanguageFile|text=top10|year=2017|language=en}}
 
     |year=2017
 
     |year=2017
Line 81: Line 81:
 
{{Top_10_2013:BottomAdvancedTemplate
 
{{Top_10_2013:BottomAdvancedTemplate
 
     |type={{Top_10_2010:StyleTemplate}}
 
     |type={{Top_10_2010:StyleTemplate}}
     |usenext=2013NextLink
+
     |usenext=2017NextLink
 
     |next=A2-{{Top_10_2010:ByTheNumbers
 
     |next=A2-{{Top_10_2010:ByTheNumbers
 
               |2
 
               |2
 
               |year=2017
 
               |year=2017
 
               |language=en}}
 
               |language=en}}
     |useprev=2013PrevLink
+
     |useprev=2017PrevLink
 
     |prev={{Top_10:LanguageFile|text=top10|year=2017|language=en}}
 
     |prev={{Top_10:LanguageFile|text=top10|year=2017|language=en}}
 
     |year=2017
 
     |year=2017
 
     |language=en
 
     |language=en
 
}}
 
}}

Revision as of 00:19, 12 December 2017

← Top 10
2017 Table of Contents

PDF version

A2-Broken Authentication →
Threat Agents / Attack Vectors Security Weakness Impacts
App Specific Exploitability
EASY
Prevalence
COMMON
Detectability
AVERAGE
Impact
SEVERE
Business ?
Consider anyone who can send untrusted data to the system, including external users, internal users, and administrators. Attackers send simple text-based attacks that exploit the syntax of the targeted interpreter. Almost any source of data can be an injection vector, including internal sources. Injection flaws occur when an application sends untrusted data to an interpreter. Injection flaws are very prevalent, particularly in legacy code. They are often found in SQL, LDAP, XPath, or NoSQL queries; OS commands; XML parsers, SMTP Headers, expression languages, etc. Injection flaws are easy to discover when examining code, but frequently hard to discover via testing. Scanners and fuzzers can help attackers find injection flaws. Injection can result in data loss or corruption, lack of accountability, or denial of access. Injection can sometimes lead to complete host takeover.


Consider the business value of the affected data and the platform running the interpreter. All data could be stolen, modified, or deleted. Could your reputation be harmed?
Am I Vulnerable To 'Injection'?

The best way to find out if an application is vulnerable to injection is to verify that all use of interpreters clearly separates untrusted data from the command or query. In many cases, it is recommended to avoid the interpreter, or disable it (e.g., XXE), if possible. For SQL calls, use bind variables in all prepared statements and stored procedures, or avoid dynamic queries. Checking the code is a fast and accurate way to see if the application uses interpreters safely. Code analysis tools can help a security analyst find use of interpreters and trace data flow through the application. Penetration testers can validate these issues by crafting exploits that confirm the vulnerability. Automated dynamic scanning which exercises the application may provide insight into whether some exploitable injection flaws exist. Scanners cannot always reach interpreters and have difficulty detecting whether an attack was successful. Poor error handling makes injection flaws easier to discover.

How Do I Prevent 'Injection'?

Preventing injection requires keeping untrusted data separate from commands and queries.

  1. The preferred option is to use a safe API which avoids the use of the interpreter entirely or provides a parameterized interface. Be careful with APIs, such as stored procedures, that are parameterized, but can still introduce injection under the hood.
  2. If a parameterized API is not available, you should carefully escape special characters using the specific escape syntax for that interpreter. OWASP’s Java Encoder and similar libraries provide such escaping routines.
  3. Positive or “white list” input validation is also recommended, but is not a complete defense as many situations require special characters be allowed. If special characters are required, only approaches (1) and (2) above will make their use safe. OWASP’s ESAPI has an extensible library of white list input validation routines.
Example Attack Scenarios

Scenario #1: An application uses untrusted data in the construction of the following vulnerable SQL call:

String query = "SELECT * FROM accounts WHERE custID='" + request.getParameter("id") + "'";


Scenario #2: Similarly, an application’s blind trust in frameworks may result in queries that are still vulnerable, (e.g., Hibernate Query Language (HQL)):

Query HQLQuery = session.createQuery("FROM accounts WHERE custID='" + request.getParameter("id") + "'");

In both cases, the attacker modifies the ‘id’ parameter value in her browser to send: ' or '1'='1. For example:

http://example.com/app/accountView?id=' or '1'='1

This changes the meaning of both queries to return all the records from the accounts table. More dangerous attacks could modify data or even invoke stored procedures.

References

OWASP

External

← Top 10
2017 Table of Contents

PDF version

A2-Broken Authentication →

© 2002-2017 OWASP Foundation This document is licensed under the Creative Commons Attribution-ShareAlike 3.0 license. Some rights reserved. CC-by-sa-3 0-88x31.png