Crates.io | way_back |
lib.rs | way_back |
version | 1.1.1 |
source | src |
created_at | 2024-01-02 09:43:39.46371 |
updated_at | 2024-01-02 10:08:26.899051 |
description | A command line tool to scrape targets from the Wayback Machine |
homepage | https://github.com/whokilleddb/wayback |
repository | https://github.com/whokilleddb/wayback |
max_upload_size | |
id | 1086080 |
size | 49,879 |
A multithreaded approach to fetching URLs from the wayback machine! A more rusty version of tomnomnom/waybackurls.
You can directly fetch the binary from crates.io
with:
cargo install way_back
You can also install it directly from source with:
git clone https://github.com/whokilleddb/wayback
cd wayback
cargo build --release
The tool supports the following command line options
$ wayback --help
Fetch URLs for a domain from the wayback machine
Usage: wayback [OPTIONS] <domains>...
Arguments:
<domains>... Space separated list of domains to enumerate
Options:
-o, --outfile <outfile> File to save output to
--no-subs Do not enumerate subdomains for the given domain
-j, --json Save output as JSON file
-h, --help Print help
For example, to enumerate domains for google.com
and youtube.com
, and store them as a JSON file, the command would be:
$ wayback --json --outfile example.json google.com youtube.com
stderr
so you can pipe the output from stdout
to be used in scripts as well!