v1.12.1

epi052/feroxbusterv1.12.1Jan 13, 2021by epi052

AI Summary

Fixes a regression in the scan progress bar, refactors the `filters.rs` module for better maintainability, and adds automatic recursive scanning for likely directory 403 responses.

Key Highlights

  • Fixed regression in overall scan's progress bar (was finishing too early)
  • Broke filters.rs into a module containing multiple sub-modules
  • Added automatic recursive scan for 403 responses

New Features

  • Recursive scan kicks off against 403 directories if they are likely to be directories

Full Release Notes

- fixed regression in overall scan's progress bar (was finishing too early)
- broke filters.rs into a module containing multiple sub-modules (part of a long-term code restructure to increase maintainability/quality)
- 403 responses are now tested to see if they're likely to be a directory; if they are, a recursive scan is kicked off against the 403 directory (thanks to @N0ur5 for the suggestion :grin:)

ex:
```
/admin/ => 403
/admin/login.php => 200
```