Files
codeql/python/ql/test/library-tests/taint/general/TestStep.ql
2020-03-30 11:59:10 +02:00

9 lines
318 B
Plaintext

import python
import semmle.python.security.TaintTracking
import TaintLib
from TaintedNode n, TaintedNode s
where s = n.getASuccessor()
select n.toString(), n.getLocation().toString(), n.getNode().toString(), n.getContext(), "-->",
s.toString(), s.getLocation().toString(), s.getNode().toString(), s.getContext()