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 019726a commit 84a16b3Copy full SHA for 84a16b3
swift/ql/lib/codeql/swift/security/InsecureTLSQuery.qll
@@ -21,6 +21,10 @@ module InsecureTlsConfig implements DataFlow::ConfigSig {
21
predicate isAdditionalFlowStep(DataFlow::Node nodeFrom, DataFlow::Node nodeTo) {
22
any(InsecureTlsExtensionsAdditionalFlowStep s).step(nodeFrom, nodeTo)
23
}
24
+
25
+ predicate observeDiffInformedIncrementalMode() {
26
+ none() // query selects some Swift nodes (e.g. "[post] self") that have location file://:0:0:0:0, which always fall outside the diff range.
27
+ }
28
29
30
module InsecureTlsFlow = TaintTracking::Global<InsecureTlsConfig>;
0 commit comments