Przede wszystkim nie wymyślaj koła na nowo. Właśnie po to denyhosts
jest:
DenyHosts is a python program that automatically blocks ssh attacks by
adding entries to /etc/hosts.deny. DenyHosts will also inform Linux
administrators about offending hosts, attacked users and suspicious
logins.
O ile mi wiadomo, denyhosts
dotyczy tylko ssh
połączeń, ale jest też coś,
fail2ban
co dotyczy praktycznie wszystkiego:
Fail2Ban consists of a client, server and configuration files to limit
brute force authentication attempts.
The server program fail2ban-server is responsible for monitoring log
files and issuing ban/unban commands. It gets configured through a
simple protocol by fail2ban-client, which can also read configuration
files and issue corresponding configuration commands to the server.
Oba są dostępne w repozytoriach:
sudo apt-get install denyhosts fail2ban
Możesz to również napisać, jeśli chcesz. Coś jak:
#!/usr/bin/env sh
netstat -an |
awk -vmax=100 '/tcp/{split($5,a,":"); if(a[1] > 0 && a[1]!="0.0.0.0"){c[a[1]]++}}
END{for(ip in c){if(c[ip]>max){print ip}}}' |
while read ip; do iptables -I INPUT 1 -s "$ip" -j DROP; done
awk
Będzie wyodrębnić IP i policzyć je i wydrukować tylko te, które pojawiają się więcej niż max
razy (tu -vmax=100
, zmień je odpowiednio). Adresy IP są następnie podawane do pętli while, która uruchamia odpowiednią iptables
regułę.
Aby uruchomić to 24/7, zrobiłbym cronjob, który uruchamia polecenie powyżej co minutę. Dodaj tę linię do/etc/crontab
* * * * * root /path/to/script.sh