Files
codeql/python/ql/test/library-tests/taint/strings/TestNode.ql
2018-11-19 15:15:54 +00:00

10 lines
249 B
Plaintext

import python
import semmle.python.security.TaintTracking
import Taint
from TaintedNode n
where n.getLocation().getFile().getName().matches("%test.py")
select n.getTrackedValue(), n.getLocation().toString(), n.getNode().getNode(), n.getContext()