mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
13 lines
331 B
Plaintext
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()
|