Files
codeql/python/ql/test/library-tests/dataflow/basic/global.ql
2024-04-23 09:40:44 +02:00

10 lines
277 B
Plaintext

import allFlowsConfig
from DataFlow::Node source, DataFlow::Node sink
where
source != sink and
AllFlowsFlow::flow(source, sink) and
exists(source.getLocation().getFile().getRelativePath()) and
exists(sink.getLocation().getFile().getRelativePath())
select source, sink