mirror of
https://github.com/github/codeql.git
synced 2026-01-29 22:32:58 +01:00
10 lines
318 B
Plaintext
10 lines
318 B
Plaintext
import python
|
|
import semmle.python.security.TaintTest
|
|
import TaintLib
|
|
|
|
|
|
from EssaVariable var, TaintedNode n
|
|
where TaintFlowTest::tainted_var(var, _, n)
|
|
select
|
|
var.getDefinition().getLocation().toString(), var.getRepresentation(), n.getLocation().toString(), n.getTrackedValue(), n.getNode().getNode().toString()
|