From 70950c8a8d3d905e2895bb7200e6ee5b6e9599ea Mon Sep 17 00:00:00 2001 From: Thuban <thuban@yeuxdelibad.net> Date: Thu, 13 Dec 2018 18:17:10 +0000 Subject: [PATCH] better memory perf --- vilain.conf | 72 +++++++++++++++++++++++++++++++++-- 1 files changed, 67 insertions(+), 5 deletions(-) diff --git a/vilain.conf b/vilain.conf index 8fe5ffb..9828c21 100644 --- a/vilain.conf +++ b/vilain.conf @@ -1,18 +1,28 @@ [DEFAULT] -# 24h + 5min -# Time to keep banned a bad ip -watch_while = 86700 -# Max tries before being bannes +# Duration (in sec) to keep banned a bad ip, reduce value if too much memory consumption +watch_while = 3602 +# Max tries before being banned maxtries = 3 # pf table to keep bad IP. # remember to clean the table with this command in a cron job : -# pfctl -t vilain_bruteforce -T expire 86400 +# /sbin/pfctl -t vilain_bruteforce -T expire 86400 vilain_table = vilain_bruteforce + +# vilain log file +vilain_log = /var/log/daemon + +# duration before each checks on the different log files +sleeptime = 3.0 + +### Ip ignored ### +[ignoreip] +ip1 = 127.0.0.1 ### Guardians #[name of the guardian] #logfile = /file/to/watch #regex = regex that return the bad guy IP +#maxtries = 2 #facultative [ssh] logfile = /var/log/authlog @@ -22,3 +32,55 @@ logfile = /var/log/authlog regex = .* Connection closed by ([\S]+) .* +#[ssh3] +#logfile = /var/log/authlog +#regex = .* Invalid user \w+ from ([\S]+) .* + +[ssh4] +logfile = /var/log/authlog +regex = .* Disconnected from authenticating user root ([\S]+) .* + +#[http404] +#logfile = /var/www/logs/access.log +#regex = (?:\S+\s){1}(\S+).*\s404\s.* + +[http401] +logfile = /var/www/logs/access.log +regex = (?:\S+\s){1}(\S+).*\s401\s.* + +[http403] +logfile = /var/www/logs/access.log +regex = (?:\S+\s){1}(\S+).*\s403\s.* + +[smtp] +logfile = /var/log/maillog +regex = .* event=failed-command address=([\S]+) .* +maxtries = 2 + +[dovecot] +logfile = /var/log/maillog +regex = .*auth failed.*rip=([\S]+),.* +maxtries = 2 + +[wordpress] +# don't use if you have wordpress +logfile = /var/www/logs/access.log +regex = (?:\S+\s){1}(\S+).*wp-login.php.* +maxtries = 1 + +# Nextcloud: login page +# Nextcloud 12 brings protection against brute-force attacks +# but 1/ not yet tested so far 2/ system protection is probably more efficient +[nextcloud] +logfile = /var/www/htdocs/datacloud/nextcloud.log +regex = .*Bruteforce attempt from \\"(.*)\\" detected + +# Nextcloud: public shares protected by password +# regex is compliant with NginX log format: +# /etc/nginx/nginx.conf: +# log_format main '$remote_addr - $remote_user [$time_local] "$request" ' +# '$status $body_bytes_sent "$http_referer" ' +# '"$http_user_agent" "$http_x_forwarded_for"'; +[nextcloud-share] +logfile = /var/www/logs/access-nextcloud.log +regex = (\d+\.\d+\.\d+\.\d+) \-.*POST /s/\w+/authenticate HTTP/1.1\" 200 -- Gitblit v1.9.3