mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
11 lines
302 B
Plaintext
11 lines
302 B
Plaintext
import python
|
|
|
|
import semmle.python.security.Exceptions
|
|
import semmle.python.web.HttpResponse
|
|
|
|
|
|
from TaintSource src, TaintKind kind
|
|
where
|
|
src.isSourceOf(kind) and
|
|
not src.getLocation().getFile().inStdlib()
|
|
select src.getLocation().toString(), src.(ControlFlowNode).getNode().toString(), kind |