mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01:00
10 lines
254 B
Plaintext
10 lines
254 B
Plaintext
import python
|
|
import Config
|
|
|
|
from TestConfiguration config, ControlFlowNode src, ControlFlowNode sink
|
|
where
|
|
config
|
|
.hasSimpleFlow(any(DataFlow::Node s | s.asCfgNode() = src),
|
|
any(DataFlow::Node s | s.asCfgNode() = sink))
|
|
select src, sink
|