mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
9 lines
317 B
Plaintext
9 lines
317 B
Plaintext
import python
|
|
import semmle.python.dataflow.new.FlowSummary
|
|
import semmle.python.dataflow.new.internal.FlowSummaryImpl
|
|
|
|
query predicate invalidSpecComponent(SummarizedCallable sc, string s, string c) {
|
|
(sc.propagatesFlow(s, _, _) or sc.propagatesFlow(_, s, _)) and
|
|
Private::External::invalidSpecComponent(s, c)
|
|
}
|