mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-09 17:03:35 -09:00
Fail2ban 1.1.0 brings Python 3.12 compatibility, and removes support for 2.x. This means 2to3 handling can be dropped. Unfortunately fail2ban 1.1.0 still relies on asynchat and asyncore, which have been removed from the Python standard library in 3.12. Depend on the compatibility package python-pyasynchat (which pulls in python-pyasyncore) and remove copies bundled in upstream code. Signed-off-by: Fiona Klute (WIWA) <fiona.klute@gmx.de> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
18 lines
641 B
Plaintext
18 lines
641 B
Plaintext
config BR2_PACKAGE_FAIL2BAN
|
|
bool "fail2ban"
|
|
depends on BR2_PACKAGE_PYTHON3
|
|
select BR2_PACKAGE_PYTHON_PYASYNCHAT # runtime
|
|
select BR2_PACKAGE_PYTHON_SYSTEMD if BR2_PACKAGE_SYSTEMD
|
|
help
|
|
Fail2ban scans log files (e.g. /var/log/apache/error_log) and
|
|
bans IPs that show the malicious signs -- too many password
|
|
failures, seeking for exploits, etc. Out of the box Fail2Ban
|
|
comes with filters for various services (apache, courier,
|
|
ssh, etc).
|
|
|
|
Fail2Ban is able to reduce the rate of incorrect
|
|
authentications attempts however it cannot eliminate the risk
|
|
that weak authentication presents.
|
|
|
|
https://www.fail2ban.org
|