mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
10 lines
354 B
Plaintext
10 lines
354 B
Plaintext
import python
|
|
import semmle.python.dataflow.TaintTracking
|
|
import python
|
|
import semmle.python.security.SensitiveData
|
|
import semmle.python.security.Crypto
|
|
|
|
from TaintedNode n, AstNode src
|
|
where src = n.getAstNode() and src.getLocation().getFile().getAbsolutePath().matches("%test%")
|
|
select "Taint " + n.getTaintKind(), n.getLocation(), src, n.getContext()
|