mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
13 lines
314 B
Plaintext
13 lines
314 B
Plaintext
|
|
import python
|
|
|
|
|
|
import semmle.python.web.HttpRequest
|
|
import semmle.python.web.HttpResponse
|
|
import semmle.python.security.strings.Untrusted
|
|
|
|
|
|
from TaintedNode node
|
|
where node.getLocation().getFile().getShortName() = "test.py"
|
|
select node.getLocation().toString(), node.getAstNode().toString(), node.getTaintKind()
|