Skip to content

Instantly share code, notes, and snippets.

@dubey-amit
Last active July 8, 2022 14:03
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dubey-amit/930189cbf75b704a8a587cbebfe538e6 to your computer and use it in GitHub Desktop.
Save dubey-amit/930189cbf75b704a8a587cbebfe538e6 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.
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