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.
isSanitizerOut(DataFlow::Node node)
cpp/command-line-injection
1 parent 4eaec39 commit 83d35a9Copy full SHA for 83d35a9
cpp/ql/src/Security/CWE/CWE-078/ExecTainted.ql
@@ -116,8 +116,8 @@ class ExecTaintConfiguration extends TaintTracking::Configuration {
116
state instanceof ConcatState
117
}
118
119
- override predicate isSanitizerOut(DataFlow::Node node, DataFlow::FlowState state) {
120
- isSink(node, state) // Prevent duplicates along a call chain, since `shellCommand` will include wrappers
+ override predicate isSanitizerOut(DataFlow::Node node) {
+ isSink(node, _) // Prevent duplicates along a call chain, since `shellCommand` will include wrappers
121
122
123
0 commit comments