mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
11 lines
347 B
Plaintext
11 lines
347 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.getAstNode() and src.getLocation().getFile().getName().matches("%test%")
|
|
select "Taint " + n.getTaintKind(), n.getLocation(), src, n.getContext()
|