mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
8 lines
225 B
Plaintext
8 lines
225 B
Plaintext
import python
|
|
import semmle.python.dataflow.TaintTracking
|
|
import TaintLib
|
|
|
|
from TaintSource src, TaintKind kind
|
|
where src.isSourceOf(kind)
|
|
select src.getLocation().toString(), src.(ControlFlowNode).getNode().toString(), kind
|