Files
codeql/python/ql/test/library-tests/taint/config/TestStep.ql
Rasmus Wriedt Larsen f602f3e1c7 Python: Use proper import for semmle.python.dataflow.TaintTracking
It was moved in 637677d515, but imports were not
updated.
2020-05-25 13:45:49 +02:00

11 lines
456 B
Plaintext

import python
import semmle.python.dataflow.TaintTracking
import TaintLib
import semmle.python.dataflow.Implementation
from TaintTrackingNode n, TaintTrackingNode s, TestConfig config
where s = n.getASuccessor() and config = n.getConfiguration()
select config + ":", n.getTaintKind(), n.getLocation().toString(), n.getNode().toString(),
n.getContext(), " --> ", s.getTaintKind(), s.getLocation().toString(), s.getNode().toString(),
s.getContext()