Update Open Redirect.md

This commit is contained in:
Mehdi 2024-06-17 09:44:25 +03:30 committed by GitHub
parent 5ad93414b1
commit c67ad2188c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -228,10 +228,10 @@ xmlns="http://www.w3.org/2000/svg">
## Automate discovery
```bash
# recommend method
waybackurl target.com | grep =http | qsreplace -a | while read domain; do python3 oralyzer.py -u $domain; done
waybackurls target.com | grep =http | qsreplace -a | while read domain; do python3 oralyzer.py -u $domain; done
# alternative method
waybackurl target.com | gf redirect | qsreplace -a | while read domain; do python3 oralyzer.py -u $domain; done
waybackurls target.com | gf redirect | qsreplace -a | while read domain; do python3 oralyzer.py -u $domain; done
```