v1.2.0
epi052/feroxbusterv1.2.0Oct 25, 2020by epi052
AI Summary
This version introduces a concurrency limit feature to prevent overwhelming the target server by restricting the number of simultaneous active scans.
Key Highlights
- Added `--scan-limit` flag
- Controls concurrent scan execution
- Prevents server overload
- Thanks to @Raywando for the feature request
New Features
- Scan limiting mechanism
Full Release Notes
- Users can now limit the number of scans permitted to run at any given time. Recursion will still identify new directories, but newly discovered directories can only begin scanning when the total number of active scans drops below the value passed to `--scan-limit`. Special thanks to @Raywando for filing the issue that led to this feature! ``` ./feroxbuster -u http://127.1 --scan-limit 2 ```