mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
8 lines
271 B
Plaintext
8 lines
271 B
Plaintext
import python
|
|
import semmle.python.web.Http
|
|
import semmle.python.web.ClientHttpRequest
|
|
|
|
from Client::HttpRequest req, string method
|
|
where if exists(req.getMethodUpper()) then method = req.getMethodUpper() else method = "<NO METHOD>"
|
|
select req, req.getAUrlPart(), method
|