-
I would like to identify all potential initiating GET requests using CodeQL in python language. But does it identify a GET request performed by |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
@github/codeql-python : Could you help out here, please? |
Beta Was this translation helpful? Give feedback.
-
Hi @Sim4n6. We don't currently model the request method, but
I'm very interested to hear why you only care about GET requests. If you really need this, I'd be open to help you figure out how we can add the request method to our modeling. However, notice that there will be cases like the one below where it's not possible to know what method will be used
|
Beta Was this translation helpful? Give feedback.
Hi @Sim4n6. We don't currently model the request method, but
Http::Client::Request
will give you all outgoing requests, so you should be able to use the code below to find any modeled HTTP client requestI'm very interested to hear why you only care about GET requests.
If you really need this, I'd be open to help you figure out how we can add the request method to our modeling. However, notice that there will be cases like the one below where it's not possible to know what method will be used