LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

waymore

Find archived URLs from multiple sources

TLDR

Find URLs for a domain
$ waymore -i [example.com]
copy
Retrieve URLs only (skip response downloads)
$ waymore -i [example.com] -mode U
copy
Retrieve both URLs and archived responses
$ waymore -i [example.com] -mode B
copy
Output URLs to a specific file
$ waymore -i [example.com] -oU [urls.txt]
copy
Exclude subdomains
$ waymore -i [example.com] -n
copy
Check estimated time and request count before running
$ waymore -i [example.com] -co
copy
Limit requests per source
$ waymore -i [example.com] -lr [100]
copy

SYNOPSIS

waymore [-i domain] [-mode mode] [-oU file] [options]

DESCRIPTION

waymore is a reconnaissance tool that discovers URLs and archived responses for a domain by querying multiple web archive sources including the Wayback Machine, Common Crawl, Alien Vault OTX, URLScan, VirusTotal, GhostArchive, and Intelligence X. It provides broader coverage than tools that query only a single archive.The tool operates in three modes: URL mode (U) extracts known URLs for the target domain from archive indices, response mode (R) retrieves the actual archived page contents, and both mode (B) does both. Results can be filtered to exclude specific sources or match keyword patterns.Multi-threaded processing speeds up large queries, and output can be saved to files for further analysis. The tool is commonly used in security research and bug bounty programs for discovering forgotten endpoints, old API paths, and removed content.

PARAMETERS

-i DOMAIN

Input domain or file of domains.
-mode MODE
Mode: U (URLs only), R (Responses only), B (Both). Default: U.
-n, --no-subs
Do not include subdomains of the target domain.
-oU FILE
Output file for discovered URLs.
-oR DIR
Output directory for downloaded responses.
-xcc
Exclude Common Crawl results.
-xav
Exclude Alien Vault OTX results.
-lr NUM
Limit requests per source (0 = no limit).
-co, --check-only
Check estimated request count and time without running.
-ow, --output-overwrite
Overwrite output file instead of appending.
-f REGEX
Filter URLs with keyword regex.
-v, --verbose
Verbose output.

CAVEATS

Rate limited by archive sources. Large domains can take significant time; use -co to estimate first. Requires Python 3. Configuration via config.yml for API keys and defaults.

HISTORY

waymore was created by xnl-h4ck3r for web reconnaissance, searching multiple archive sources for URLs.

SEE ALSO

Copied to clipboard
Kai