mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
10 lines
299 B
Plaintext
10 lines
299 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
|