Skip to content

Instantly share code, notes, and snippets.

@Spy0x7
Forked from dubey-amit/Unique wayback url
Created September 6, 2020 18:46
Show Gist options
  • Save Spy0x7/273f7c86916da05ff53778855c719d8e to your computer and use it in GitHub Desktop.
Save Spy0x7/273f7c86916da05ff53778855c719d8e 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