lookyloo
lookyloo copied to clipboard
[Feature]: Get more URLs out of the rendered page
Is your feature request related to a problem? Please describe.
The URLs in the rendered page are currently gathered by this method in har2tree.
It doesn't uses a regex to find anything that look like a URL, and for decent reasons: we use it to run subsequent captures and want valid URLs. The problem is that some pages will have stuff like that:
<input type="hidden" name="_redirect" value="<url>">
And we'd like to be able to trigger a capture for those too.
Describe the solution you'd like
Getting more URL shaped strings out of the rendered pages. Maybe have a button to use a regex on the rendered page?
Describe alternatives you've considered
No response
Additional context
No response