We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 143e9ee commit 6946ae9Copy full SHA for 6946ae9
python/ql/lib/semmle/python/security/dataflow/XpathInjectionCustomizations.qll
@@ -43,13 +43,13 @@ module XpathInjection {
43
* A construction of an XPath expression, considered as a sink.
44
*/
45
class XPathConstructionArg extends Sink {
46
- XPathConstructionArg() { this = any(XPathConstruction c).getXPath() }
+ XPathConstructionArg() { this = any(XML::XPathConstruction c).getXPath() }
47
}
48
49
/**
50
* An execution of an XPath expression, considered as a sink.
51
52
class XPathExecutionArg extends Sink {
53
- XPathExecutionArg() { this = any(XPathExecution e).getXPath() }
+ XPathExecutionArg() { this = any(XML::XPathExecution e).getXPath() }
54
55
0 commit comments