Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96cf4f1 commit 1016b73Copy full SHA for 1016b73
1 file changed
java/ql/lib/semmle/code/java/security/ConditionalBypassQuery.qll
@@ -53,6 +53,9 @@ deprecated class ConditionalBypassFlowConfig extends TaintTracking::Configuratio
53
}
54
55
56
+/**
57
+ * A taint tracking configuration for untrusted data flowing to sensitive conditions.
58
+ */
59
module ConditionalBypassFlowConfig implements DataFlow::ConfigSig {
60
predicate isSource(DataFlow::Node source) { source instanceof RemoteFlowSource }
61
@@ -64,6 +67,6 @@ module ConditionalBypassFlowConfig implements DataFlow::ConfigSig {
64
67
65
68
66
69
/**
- * A taint tracking configuration for untrusted data flowing to sensitive conditions.
70
+ * Taint tracking flow for untrusted data flowing to sensitive conditions.
71
*/
72
module ConditionalBypassFlow = TaintTracking::Global<ConditionalBypassFlowConfig>;
0 commit comments