ariary / cfuzz

Command line fuzzer and bruteforcer 🌪 wfuzz for command
The Unlicense
85 stars 9 forks source link

Set `ulimit` or `--delay` with large wordlist #16

Open ariary opened 2 years ago

ariary commented 2 years ago

Large wordlist will likely open many file descriptors (many go routine etc..).

By default OS (or mac) set a limit for fd opens (ulimit).

Set it if you are dealing with a large payload:

# set it
ulimit -n 65535 # or 10000000
# check
ulimit -n
ariary commented 2 years ago

-d 1 seems to work

If ambiguous, add --Thread flag to specify how many exec you can launch in the same time (useful if we need > 1000 exec/s in the same time as -d is in millisecond)