From 054d18dd28d64c8cefd032d0e7110471425e3221 Mon Sep 17 00:00:00 2001 From: Cyril Jaquier Date: Fri, 10 Feb 2006 10:26:16 +0000 Subject: [PATCH] - Updated with ideas for 0.7 git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@236 a942ae1a-1317-0410-a47c-b1dcaea8d605 --- TODO | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 57 insertions(+), 11 deletions(-) diff --git a/TODO b/TODO index 190a84cb..6abfc5c1 100644 --- a/TODO +++ b/TODO @@ -4,23 +4,69 @@ |_| \__,_|_|_/___|_.__/\__,_|_||_| ============================================================= -ToDo $Revision$ +ToDo $Revision$ ============================================================= See Feature Request Tracking System at SourceForge.net - improve installation process (better prefix support) -- install Fail2ban into /usr/share + +- improve documentation and website + - better configuration files + - add a check to see if the time of the log messages is correctly detected (valid regexp) -- split configuration files in /etc/fail2ban/services.d - Example: /etc/fail2ban/services.d/apache -- template for common services in /etc/fail2ban/scripts.d - Example: /etc/fail2ban/scripts.d/apache -- remove debug mode (root check) -- better return values in function -- use more email.Utils in mail.py -- add gettext support -- send an email when fail2ban is running + - use Gentoo Portage style for scripts + - split configuration files in /etc/fail2ban/services.d + Example: /etc/fail2ban/services.d/apache + - template for common services in /etc/fail2ban/scripts.d + Example: /etc/fail2ban/scripts.d/apache + +- remove debug mode (root check) + +- better return values in function + +- use more email.Utils in mail.py + +- add gettext support + +- send an email when fail2ban is running + +- add multithreading. Python threading is not really + efficient. However, fail2ban could benefit of it. We could + use threads like this: + - one thread which check for host to unban. + - one thread per file to watch. This will allow things like + different polling time for each file. + is read-only (we only read log files) thus no locks + are required. However, is read-write and must take + care of concurrency in case of multithreading. + +- add FAM/Gamin support. Should be quite efficient with + threading. Take care that handle_one_event() release the + Python lock. + +- add a test framework. We could use unittest which is in + Python since 2.1. It should be possible to run all tests + automatically. + +- add client/server using socket. Something similar to + gdesklets. DBUS seems to be designed for desktop use. + - fail2ban start -> start the daemon. + - fail2ban stop -> stop the daemon. + - fail2ban add -> add monitoring with + ban method (iptables, hosts.deny, etc). + - fail2ban del -> remove monitoring. + - fail2ban status -> query current fail2ban status. + Should return infos like a ban counter. Could be graph + with rrdtool. + - fail2ban pause -> suspend monitoring. + - fail2ban resume -> resume monitoring. + - fail2ban list -> list available services. + - fail2ban flush -> flush the ban list. + +- remove PID file. + +- remove most of the command lines options if possible.