/** * @name XPath injection * @description Building an XPath expression from user-controlled sources is vulnerable to insertion of * malicious code by the user. * @kind path-problem * @problem.severity error * @security-severity 9.8 * @precision high * @id js/xpath-injection * @tags security * external/cwe/cwe-643 */ import javascript import semmle.javascript.security.dataflow.XpathInjectionQuery import XpathInjectionFlow::PathGraph from XpathInjectionFlow::PathNode source, XpathInjectionFlow::PathNode sink where XpathInjectionFlow::flowPath(source, sink) select sink.getNode(), source, sink, "XPath expression depends on a $@.", source.getNode(), "user-provided value"