-
-
Notifications
You must be signed in to change notification settings - Fork 72
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
Dectetion in Open redirect gives false positive #1
Comments
Thank you for the feedback. I've just updated some fuzz signature from my config to resolve that issue Let me know if you have any issue. |
Hello @j3ssie Hope you are doing good |
Tried to make a one of my own failed miserably name: 'Upload file'
desc: 'Check in HTML if upload is possible'
rules:
- id: upload-file
reason: uploading
detections:
- >-
RegexSearch("response", "\u003cinput[^\u003e]+type=[\"']?file[\"']?") |
Hello
First of all thanks for the tool
I was trying to check your condition on open redirect and it seems like it will give a a false positive results due to the validation
You are using
Which doesnt mean 100% redirected to the evil destination
Location should be
google.com
instead ofhttps://doorman.elisaviihde.fi/google.com
I think the best way to match open redirect is with a regex that looks like this
< location: (https?:)?[/\\]{2,}example.com
Replace
example.com
with the{dest}
This should apply to Open-redirect-params.yaml as well
Regards
The text was updated successfully, but these errors were encountered: