mirror of
https://github.com/github/codeql.git
synced 2026-01-28 22:02:57 +01:00
11 lines
346 B
Plaintext
11 lines
346 B
Plaintext
import python
|
|
import semmle.python.security.TaintTracking
|
|
|
|
import python
|
|
import semmle.python.security.SensitiveData
|
|
import semmle.python.security.Crypto
|
|
|
|
from TaintedNode n, AstNode src
|
|
where src = n.getNode().getNode() and src.getLocation().getFile().getName().matches("%test%")
|
|
select n.getTrackedValue(), n.getLocation(), src, n.getContext()
|