mirror of
https://github.com/github/codeql.git
synced 2026-01-26 21:02:58 +01:00
10 lines
242 B
Plaintext
10 lines
242 B
Plaintext
import python
|
|
import semmle.python.security.TaintTracking
|
|
import Taint
|
|
|
|
|
|
from TaintedNode n
|
|
where n.getLocation().getFile().getName().matches("%test.py")
|
|
select n.getTrackedValue(), n.getLocation().toString(), n.getAstNode(), n.getContext()
|
|
|