Create aggressive config for faster scanning
()
| 70 | impl ParallelConfig { |
| 71 | /// Create aggressive config for faster scanning |
| 72 | pub fn aggressive() -> Self { |
| 73 | Self { |
| 74 | nuclei_workers: 8, |
| 75 | nuclei_batch_size: 100, |
| 76 | nuclei_concurrency: 100, |
| 77 | rate_limit: 500, |
| 78 | batch_delay_ms: 50, |
| 79 | cloud_workers: 50, |
| 80 | timeout_secs: 15, |
| 81 | nuclei_bulk_size: 50, |
| 82 | nuclei_headless_bulk: 25, |
| 83 | nuclei_retries: 0, |
| 84 | nuclei_max_host_errors: 50, |
| 85 | nuclei_response_size_limit: 1024 * 1024, // 1MB limit |
| 86 | turbo_mode: false, |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | /// Create TURBO config for MAXIMUM speed (use with caution) |
| 91 | pub fn turbo() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected