Skip to content

Commit 102b187

Browse files
committed
JS: Ignore experimental queries for now
1 parent dba76a0 commit 102b187

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

javascript/ql/src/experimental/Security/CWE-099/EnvValueAndKeyInjection.ql

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@ module EnvValueAndKeyInjectionConfig implements DataFlow::ConfigSig {
3333
)
3434
)
3535
}
36-
37-
predicate observeDiffInformedIncrementalMode() {
38-
// TODO(diff-informed): Manually verify if config can be diff-informed.
39-
// ql/src/experimental/Security/CWE-099/EnvValueAndKeyInjection.ql:71: Column 1 does not select a source or sink originating from the flow call on line 68
40-
none()
41-
}
4236
}
4337

4438
module EnvValueAndKeyInjectionFlow = TaintTracking::Global<EnvValueAndKeyInjectionConfig>;

javascript/ql/src/experimental/Security/CWE-347/decodeJwtWithoutVerification.ql

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,6 @@ module VerifiedDecodeConfig implements DataFlow::ConfigSig {
2727
predicate isSource(DataFlow::Node source) { source instanceof ActiveThreatModelSource }
2828

2929
predicate isSink(DataFlow::Node sink) { sink = verifiedDecode() }
30-
31-
predicate observeDiffInformedIncrementalMode() {
32-
// TODO(diff-informed): Manually verify if config can be diff-informed.
33-
// ql/src/experimental/Security/CWE-347/decodeJwtWithoutVerification.ql:42: Column 5 does not select a source or sink originating from the flow call on line 41
34-
none()
35-
}
3630
}
3731

3832
module VerifiedDecodeFlow = TaintTracking::Global<VerifiedDecodeConfig>;

0 commit comments

Comments
 (0)