You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When busting a certain URL, it will frequently redirect to a "maintenance" page. The Ferboxbuster output looks like this:
301 GET 0l 0w 0c https://example.com/WEB_2011 => https://example.com/pages/maintenance.html
301 GET 0l 0w 0c https://example.com/1024x768 => https://example.com/pages/maintenance.html
301 GET 0l 0w 0c https://example.com/1280x800 => https://example.com/pages/maintenance.html
301 GET 0l 0w 0c https://example.com/1440x900 => https://example.com/pages/maintenance.html
Describe the solution you'd like
An option to filter either by the 301 destination or by arbitrary response headers. I'd still like to see redirects to other pages in the output, but filter out redirects to specific pages.
Describe alternatives you've considered
I tried --filter-similar-to, but that compares the body of the filtered page with the body of the busted page which will not be similar since the busted page has no response body. Likewise, the --filter-regex flag also compares only the response body
The text was updated successfully, but these errors were encountered:
i agree that there's no built-in way to do what you're after. I don't like the idea of filtering by redirect location (pretty sure i turned down a similar proposal a while back).
On the other hand, filtering by headers, or modifying --filter-regex to include headers seem like reasonable changes that are generic enough to be useful to more than a single usecase.
I'm a bit embarrassed to say, but I can't find the subdomain I was busting at the time when I created this issue so I'm not able to test it out but if the functionality works I'd say merge it!
Thank you for such a quick turnaround.
Is your feature request related to a problem? Please describe.
When busting a certain URL, it will frequently redirect to a "maintenance" page. The Ferboxbuster output looks like this:
Describe the solution you'd like
An option to filter either by the 301 destination or by arbitrary response headers. I'd still like to see redirects to other pages in the output, but filter out redirects to specific pages.
Describe alternatives you've considered
I tried
--filter-similar-to
, but that compares the body of the filtered page with the body of the busted page which will not be similar since the busted page has no response body. Likewise, the--filter-regex
flag also compares only the response bodyThe text was updated successfully, but these errors were encountered: