# Improper Neutralization of Special Elements used in an LDAP Query ('LDAP Injection') (CWE-90) The product constructs all or part of an LDAP query using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended LDAP query. **Stack:** Go - Prevalence: 高 頻繁に悪用される - Impact: ハイ 3 件の重大度ハイのルール - Prevention: 文書化済み 3 件の修正例 **OWASP:** Injection (A03:2021-Injection) - #3 ## Description If user input is incorporated into an LDAP query without proper sanitization, an attacker can inject LDAP commands that could read or modify sensitive directory information. ## Prevention 1 件の Shoulder 検出ルールに基づく LDAP Injection の予防策。 ### Go Use ldap.EscapeFilter to sanitize user input in LDAP queries ## Warning Signs - [HIGH] user input flowing to LDAP queries without proper escaping ## Consequences - アプリケーションデータの読み取り - アプリケーションデータの変更 - 保護メカニズムの回避 ## Mitigations - 可能な限り、パラメータ化された LDAP クエリを使用する - LDAP クエリで使用するユーザー入力はすべてエスケープまたはエンコードする - 入力を許可された文字の許可リストと照合して検証する ## Detection - Total rules: 3 - Languages: go, javascript, typescript, python ## Rules by Language ### Go (1 rules) - **LDAP Injection** [HIGH]: Detects user input flowing to LDAP queries without proper escaping. - Remediation: Use ldap.EscapeFilter to sanitize user input before including in LDAP filters. ```go escaped := ldap.EscapeFilter(username) filter := fmt.Sprintf("(uid=%s)", escaped) ``` Learn more: https://shoulder.dev/learn/go/cwe-90/ldap-injection