python: missed a spot..

This commit is contained in:
Rasmus Lerchedahl Petersen
2022-03-02 17:12:48 +01:00
parent 143e9ee954
commit 6946ae931a

View File

@@ -43,13 +43,13 @@ module XpathInjection {
* A construction of an XPath expression, considered as a sink.
*/
class XPathConstructionArg extends Sink {
XPathConstructionArg() { this = any(XPathConstruction c).getXPath() }
XPathConstructionArg() { this = any(XML::XPathConstruction c).getXPath() }
}
/**
* An execution of an XPath expression, considered as a sink.
*/
class XPathExecutionArg extends Sink {
XPathExecutionArg() { this = any(XPathExecution e).getXPath() }
XPathExecutionArg() { this = any(XML::XPathExecution e).getXPath() }
}
}