Files
codeql/python/ql/test/library-tests/taint/general/TestStep.ql

13 lines
331 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()