-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
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
Ignore normalization URL #5289
Comments
@EDjur Thank you for your information. Do you know a workaround to resolve this? |
Try using prepared request
|
@akmalhisyam Thank you very much. It works well. |
@akmalhisyam is correct here. Using the PreparedRequests workflow will typically solve issues like this if you MUST explicitly set something. |
This was referenced Nov 15, 2020
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In cases I would like to test Path Traversal vulnerabilities in web applications, the target URL is usually
https://example.com/../../path
. Using the GET method in requests, that URL will be normalized as below. Consequently, this will lead to unintended results in the test.With
curl
, we have an option to ignore the normalization :--path-as-is
. So, do we have an equivalent option forrequests
?The text was updated successfully, but these errors were encountered: