mirror of
https://github.com/github/codeql.git
synced 2026-01-10 13:10:26 +01:00
9 lines
256 B
Plaintext
9 lines
256 B
Plaintext
import python
|
|
import semmle.python.security.TaintTracking
|
|
import Taint
|
|
|
|
|
|
from TaintedNode n
|
|
where n.getLocation().getFile().getShortName() = "test.py"
|
|
select "Taint " + n.getTaintKind(), n.getLocation().toString(), n.getCfgNode().getNode(), n.getContext()
|