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 81bbcda commit 272a97dCopy full SHA for 272a97d
javascript/ql/src/experimental/Security/CWE-347/decodeJwtWithoutVerification.ql
@@ -27,6 +27,10 @@ module VerifiedDecodeConfig implements DataFlow::ConfigSig {
27
predicate isSource(DataFlow::Node source) { source instanceof ActiveThreatModelSource }
28
29
predicate isSink(DataFlow::Node sink) { sink = verifiedDecode() }
30
+
31
+ predicate observeDiffInformedIncrementalMode() {
32
+ none() // used as secondary config
33
+ }
34
}
35
36
module VerifiedDecodeFlow = TaintTracking::Global<VerifiedDecodeConfig>;
0 commit comments