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 f1e44bc commit 92c00cbCopy full SHA for 92c00cb
java/ql/src/Security/CWE/CWE-652/XQueryInjection.ql
@@ -30,7 +30,7 @@ class XQueryInjectionConfig extends TaintTracking::Configuration {
30
}
31
32
/**
33
- * Conveys taint from the input to a `prepareExpression` call to the returned prepared expression.
+ * Holds if taint from the input `pred` to a `prepareExpression` call flows to the returned prepared expression `succ`.
34
*/
35
override predicate isAdditionalTaintStep(DataFlow::Node pred, DataFlow::Node succ) {
36
exists(XQueryParserCall parser | pred.asExpr() = parser.getInput() and succ.asExpr() = parser)
0 commit comments