We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98a12ce commit a484e9fCopy full SHA for a484e9f
1 file changed
java/ql/src/Security/CWE/CWE-807/ConditionalBypass.ql
@@ -35,7 +35,7 @@ predicate conditionControlsMethod(MethodAccess m, Expr e) {
35
class ConditionalBypassFlowConfig extends TaintTracking::Configuration {
36
ConditionalBypassFlowConfig() { this = "ConditionalBypassFlowConfig" }
37
38
- override predicate isSource(DataFlow::Node source) { source instanceof UserInput }
+ override predicate isSource(DataFlow::Node source) { source instanceof RemoteFlowSource }
39
40
override predicate isSink(DataFlow::Node sink) { conditionControlsMethod(_, sink.asExpr()) }
41
}
0 commit comments