Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 673 Bytes

File metadata and controls

34 lines (23 loc) · 673 Bytes

Waybackurls with Python

Accept line-delimited domains on stdin, fetch known URLs from the Wayback Machine for *.domain and output them on stdout.

Basic Usage

Single Domain

python script.py example.com

Multiple Domains (via stdin)

cat domains.txt | python main.py

or

echo "example.com" | python main.py

Save output

python script.py example.com > out

Credit

forked from tomnomnom/waybackurls This tool was inspired by @mhmdiaa's waybackurls.py script. Thanks to them for the great idea!