Create TURBO config for MAXIMUM speed (use with caution)
()
| 89 | |
| 90 | /// Create TURBO config for MAXIMUM speed (use with caution) |
| 91 | pub fn turbo() -> Self { |
| 92 | Self { |
| 93 | nuclei_workers: 16, // Maximum parallel instances |
| 94 | nuclei_batch_size: 200, // Large batches |
| 95 | nuclei_concurrency: 200, // High concurrency per instance |
| 96 | rate_limit: 0, // NO rate limiting |
| 97 | batch_delay_ms: 0, // NO delay between batches |
| 98 | cloud_workers: 100, // Maximum cloud workers |
| 99 | timeout_secs: 10, // Short timeout |
| 100 | nuclei_bulk_size: 100, // Large bulk size |
| 101 | nuclei_headless_bulk: 50, // Large headless bulk |
| 102 | nuclei_retries: 0, // NO retries |
| 103 | nuclei_max_host_errors: 100, // High error tolerance |
| 104 | nuclei_response_size_limit: 512 * 1024, // 512KB limit for speed |
| 105 | turbo_mode: true, |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | /// Create respectful config with rate limiting |
| 110 | pub fn respectful() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected