We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A parameter defined in the OpenAPI 3.0.1 json that should be an HTTP header is instead being treated as a Cookie value.
Create an openapi 3.0.1 json with this following "paths" included:
"/myapifunction": { "get": { "tags": [ "Picture" ], "parameters": [ { "name": "pictureCode", "in": "header", "schema": { "type": "string" } } ], "responses": { "200": { "description": "Success" } } } },
Load the json in the Burp OpenAPI Parser tab
Observe that the raw request used Cookie: pictureCode instead of a separate HTTP header named pictureCode.
The HTTP request generated should have created a separate HTTP header instead of using a Cookie.
No response
The text was updated successfully, but these errors were encountered:
aress31
No branches or pull requests
Prerequisites
Description
A parameter defined in the OpenAPI 3.0.1 json that should be an HTTP header is instead being treated as a Cookie value.
Steps to Reproduce
Create an openapi 3.0.1 json with this following "paths" included:
Load the json in the Burp OpenAPI Parser tab
Observe that the raw request used Cookie: pictureCode instead of a separate HTTP header named pictureCode.
Expected Behavior
The HTTP request generated should have created a separate HTTP header instead of using a Cookie.
Screenshots
No response
Environment
Error Message
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: