From 92b0c3bde7d3dc1166f4d39b6ee630010ca033b2 Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Tue, 12 Mar 2024 05:10:52 +1100 Subject: [PATCH] waymore: add page (#12487) * waymore: add page --------- Co-authored-by: Juri Dispan --- pages/common/waymore.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/waymore.md diff --git a/pages/common/waymore.md b/pages/common/waymore.md new file mode 100644 index 000000000..5c24efb02 --- /dev/null +++ b/pages/common/waymore.md @@ -0,0 +1,21 @@ +# waymore + +> Fetch URLs of a domain from Wayback Machine, Common Crawl, Alien Vault OTX, URLScan, and VirusTotal. +> Note: Unless specified, output is dumped into the `results/` directory where waymore's `config.yml` resides (by default in `~/.config/waymore/`). +> More information: . + +- Search for URLs of a domain (output will typically be in `~/.config/waymore/results/`): + +`waymore -i {{example.com}}` + +- Limit search results to only include a list of URLs for a domain and store outputs to the specified file: + +`waymore -mode U -oU {{path/to/example.com-urls.txt}} -i {{example.com}}` + +- Only output the content bodies of URLs and store outputs to the specified directory: + +`waymore -mode R -oR {{path/to/example.com-url-responses}} -i {{example.com}}` + +- Filter the results by specifying date ranges: + +`waymore -from {{YYYYMMDD|YYYYMM|YYYY}} -to {{YYYYMMDD|YYYYMM|YYYY}} -i {{example.com}}`