Control CRLFFuzz output and execution
masterSave Results to File
Use the -o flag to save findings to a specific file:
crlfuzz -l /path/to/urls.txt -o /path/to/results.txtSilent vs Verbose Mode
- Silent (
-s): Only displays vulnerable targets. Useful for piping to other tools.crlfuzz -l /path/to/urls.txt -s | tee vuln-urls.txt - Verbose (
-v): Displays detailed error information if errors occur.
Concurrency
Adjust the number of simultaneous fuzzing tasks (default is 25) using -c:
crlfuzz -l /path/to/urls.txt -c 50