Umbra Wiki weakness weakness/CWE-643
Back to wiki

CWE-643 — Improper Neutralization of Data within XPath Expressions ('XPath Injection')

provenance: imported · CWE: CWE-643

CWE-643: Improper Neutralization of Data within XPath Expressions ('XPath Injection')

MITRE CWE weakness

Kind Weakness
Abstraction Base
Status Incomplete
Likelihood of exploit High

Description

The product uses external input to dynamically construct an XPath expression used to retrieve data from an XML database, but it does not neutralize or incorrectly neutralizes that input. This allows an attacker to control the structure of the query.

The net effect is that the attacker will have control over the information selected from the XML database and may use that ability to control application flow, modify logic, retrieve unauthorized data, or bypass important checks (e.g. authentication).

Common consequences

  • Access Control: Bypass Protection Mechanism
  • Confidentiality: Read Application Data

Mitigations

Implementation — Use parameterized XPath queries (e.g. using XQuery). This will help ensure separation between data plane and control plane.

Implementation — Properly validate user input. Reject data where appropriate, filter where appropriate and escape where appropriate. Make sure input that will be used in XPath queries is safe in that context.

References

  • CWE page: https://cwe.mitre.org/data/definitions/643.html
  • CWE list: https://cwe.mitre.org/data/index.html