-
-
Save secfb/30372e0787c6f08cf9ea04b754e1498e to your computer and use it in GitHub Desktop.
Get all the Wayback endpoints to compare it with your Burp crawled URLs & probe all the unique endpoints.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat urls | unfurl -u format %s://%d%p > unique && sort -uo unique unique && cat unique | unfurl -u domains | waybackurls | unfurl -u format %s://%d%p > wayurl && sort -uo wayurl wayurl | comm -1 -3 unique wayurl > final && rm urls && rm unique && rm wayurl && httpx -l final --status-code -silent --content-length | grep -i 200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment