mirror of
https://github.com/github/codeql.git
synced 2026-01-27 21:33:03 +01:00
12 lines
326 B
Plaintext
12 lines
326 B
Plaintext
import python
|
|
|
|
import ExtensionsLib
|
|
|
|
|
|
from TaintedNode n, TaintedNode s
|
|
where s = n.getASuccessor()
|
|
select
|
|
n.getTrackedValue(), n.getLocation().toString(), n.getNode().getNode().toString(), n.getContext(),
|
|
" --> ",
|
|
s.getTrackedValue(), s.getLocation().toString(), s.getNode().getNode().toString(), s.getContext()
|