mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
12 lines
291 B
Plaintext
12 lines
291 B
Plaintext
|
|
import python
|
|
|
|
import semmle.python.web.HttpRequest
|
|
import semmle.python.web.HttpResponse
|
|
import semmle.python.security.strings.Untrusted
|
|
|
|
|
|
from TaintSource src, TaintKind kind
|
|
where src.isSourceOf(kind)
|
|
select src.getLocation().toString(), src.(ControlFlowNode).getNode().toString(), kind
|