← 返回命令列表

Linux command

waymore 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Find URLs for a domain

waymore -i [example.com]

Retrieve URLs only

waymore -i [example.com] -mode U

Retrieve both URLs and archived responses

waymore -i [example.com] -mode B

Output URLs to a specific file

waymore -i [example.com] -oU [urls.txt]

Exclude subdomains

waymore -i [example.com] -n

Check estimated time and request count

waymore -i [example.com] -co

Limit requests per source

waymore -i [example.com] -lr [100]

说明

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.

参数

-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.

FAQ

What is the waymore command used for?

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.

How do I run a basic waymore example?

Run `waymore -i [example.com]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -i _DOMAIN_ do in waymore?

Input domain or file of domains.