-
Notifications
You must be signed in to change notification settings - Fork 205
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
X-Original-Url / X-Rewrite-Url bypass #4
Comments
Thank you, fixed in new update. |
Hy, I also check this method: but it's home page in code response |
i have the same problem, did you fix it?? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, I think you are using
X-Original-Url / X-Rewrite-Url
vector in a wrong way. These headers usually help to bypass front server rules, which are based on URI, but you don't change URI while using these headers.First, normal request returns 403:
This attempt to bypass will return 403 too, because URI hasn't changed and the rule still applies:
This one should bypass the restriction:
The text was updated successfully, but these errors were encountered: