mirror of
https://github.com/github/codeql.git
synced 2026-01-08 12:10:22 +01:00
12 lines
333 B
Plaintext
12 lines
333 B
Plaintext
import python
|
|
import semmle.python.TestUtils
|
|
|
|
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 remove_library_prefix(src.getLocation()), src.(ControlFlowNode).getNode().toString(), kind
|