Name |
LDAP Injection |
|
Likelyhood of attack |
Typical severity |
High |
High |
|
Summary |
An attacker manipulates or crafts an LDAP query for the purpose of undermining the security of the target. Some applications use user input to create LDAP queries that are processed by an LDAP server. For example, a user might provide their username during authentication and the username might be inserted in an LDAP query during the authentication process. An attacker could use this input to inject additional commands into an LDAP query that could disclose sensitive information. For example, entering a * in the aforementioned query might return information about all users on the system. This attack is very similar to an SQL injection attack in that it manipulates a query to gather additional information or coerce a particular return value. |
Prerequisites |
The target application must accept a string as user input, fail to sanitize characters that have a special meaning in LDAP queries in the user input, and insert the user-supplied string in an LDAP query which is then processed. |
Execution Flow |
Step |
Phase |
Description |
Techniques |
1 |
Explore |
[Survey application] The attacker takes an inventory of the entry points of the application. |
- Spider web sites for all available links
- Sniff network communications with application using a utility such as WireShark.
|
2 |
Experiment |
[Determine user-controllable input susceptible to LDAP injection] For each user-controllable input that the attacker suspects is vulnerable to LDAP injection, attempt to inject characters that have special meaning in LDAP (such as a single quote character, etc.). The goal is to create a LDAP query with an invalid syntax |
- Use web browser to inject input through text fields or through HTTP GET parameters
- Use a web application debugging tool such as Tamper Data, TamperIE, WebScarab,etc. to modify HTTP POST parameters, hidden fields, non-freeform fields, or other HTTP header.
- Use modified client (modified by reverse engineering) to inject input.
|
3 |
Experiment |
[Try to exploit the LDAP injection vulnerability] After determining that a given input is vulnerable to LDAP Injection, hypothesize what the underlying query looks like. Possibly using a tool, iteratively try to add logic to the query to extract information from the LDAP, or to modify or delete information in the LDAP. |
- Add logic to the LDAP query to change the meaning of that command. Automated tools could be used to generate the LDAP injection strings.
- Use a web application debugging tool such as Tamper Data, TamperIE, WebScarab,etc. to modify HTTP POST parameters, hidden fields, non-freeform fields, or other HTTP header.
|
|
Solutions | Strong input validation - All user-controllable input must be validated and filtered for illegal characters as well as LDAP content. Use of custom error pages - Attackers can glean information about the nature of queries from descriptive error messages. Input validation must be coupled with customized error pages that inform about an error without disclosing information about the LDAP or application. |
Related Weaknesses |
CWE ID
|
Description
|
CWE-20 |
Improper Input Validation |
CWE-77 |
Improper Neutralization of Special Elements used in a Command ('Command Injection') |
CWE-90 |
Improper Neutralization of Special Elements used in an LDAP Query ('LDAP Injection') |
|
Related CAPECS |
CAPEC ID
|
Description
|
CAPEC-248 |
An adversary looking to execute a command of their choosing, injects new items into an existing command thus modifying interpretation away from what was intended. Commands in this context are often standalone strings that are interpreted by a downstream component and cause specific responses. This type of attack is possible when untrusted values are used to build these command strings. Weaknesses in input validation or command construction can enable the attack and lead to successful exploitation. |
|
Taxonomy: WASC |
Entry ID
|
Entry Name
|
29 |
LDAP Injection |
|
Taxonomy: OWASP Attacks |
Entry ID
|
Entry Name
|
Link |
LDAP Injection |
|