Skip to content

Instantly share code, notes, and snippets.

@secfb
Forked from dubey-amit/Unique wayback url
Created July 26, 2020 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save secfb/30372e0787c6f08cf9ea04b754e1498e to your computer and use it in GitHub Desktop.
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.
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