Getting All Known Links From Wayback Machine

Ever wanted to see everything the WayBack Machine from the internet archive has on a domain? Here you go: Just give it the url you want it to search for and if you DO want it to include subdomains add True at the end. python3 waybackurls.py example.com true <—with subdomains python3 waybackurls.py example.com <—without subdomains It’ll save the results in a nice little json file in the same directory. import requests import sys import json def waybackurls(host, with_subs): if with_subs: url = 'http://web....

September 11, 2024 · Brent