mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
11 lines
294 B
Plaintext
11 lines
294 B
Plaintext
import codeql.ruby.Concepts
|
|
import codeql.ruby.DataFlow
|
|
|
|
query predicate httpRequests(
|
|
HTTP::Client::Request r, string framework, DataFlow::Node urlPart, DataFlow::Node responseBody
|
|
) {
|
|
r.getFramework() = framework and
|
|
r.getAUrlPart() = urlPart and
|
|
r.getResponseBody() = responseBody
|
|
}
|