mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
python: missed a spot..
This commit is contained in:
@@ -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() }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user