team-projectdiscovery 2020-12-18 21:13:19 +05:30
parent 337036379f
commit 8d7d91af82
1 changed files with 3 additions and 2 deletions

View File

@ -202,11 +202,12 @@ Remember to change `/path-to-nuclei-templates` to the real path on your host fil
### Rate Limits
Nuclei have multiple rate limit controls for multiple factors including number of template to execute in parallel, number of hosts to be scanned in parallel for each template and the global number of request / per second you wanted to make / limit using nuclei, as example here is how all this can be controlled using flags.
Nuclei have multiple rate limit controls for multiple factors including a number of templates to execute in parallel, a number of hosts to be scanned in parallel for each template, and the global number of request / per second you wanted to make/limit using nuclei, as an example here is how all this can be controlled using flags.
`-c` flag => Limits the number of templates processed in parallel.
`-bulk-size` flag => Limits the number of hosts processed in parallel for each template.
`-rate-limit` flag => Global rate limiter that ensure defined number of request/second across all templates.
`-rate-limit` flag => Global rate limiter that ensures defined number of requests/second across all templates.
If you wanted go fast or control the scans, feel free to play with these flags and numbers, `rate-limit` always ensure to control the outgoing requests regardless the other flag you are using.