A CLI tool to scan and identify suspicious URLs based on categories like keywords, extensions, paths, and hidden files.
go install github.com/alwalxed/juicyurls@latest
juicyurls [options]
Options:
-h Show help message
-l <path> Path to the list of URLs (required)
-m <categories> Comma-separated categories to check (optional)
-o <path> Output file path (optional)
-e <patterns> Comma-separated patterns to exclude (optional)
Categories: keywords, extensions, paths, hidden
By default, all categories are checked.
# Typical scan
juicyurls -l urls.txt
# Scan specific categories
juicyurls -l urls.txt -m keywords,paths
# Exclude patterns
juicyurls -l urls.txt -e .js,.css
# Save output
juicyurls -l urls.txt -o output.txt
Contributions are welcome via pull requests.