From 29a4baf2f4c3f11cf648673ced817bafd3dc4e38 Mon Sep 17 00:00:00 2001 From: Mafoo Date: Sat, 11 Jun 2016 15:48:55 +0100 Subject: [PATCH] Enhance-Add new bots (#18) added a couple more persistent bots --- debian/resources/iptables.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/resources/iptables.sh b/debian/resources/iptables.sh index 44ab9c0..749948e 100755 --- a/debian/resources/iptables.sh +++ b/debian/resources/iptables.sh @@ -7,6 +7,8 @@ echo "Configure IPTables" iptables -N sip iptables -A sip -j DROP -m string --string "friendly-scanner" --algo bm iptables -A sip -j DROP -m string --string "sipcli/" --algo bm +iptables -A sip -j DROP -m string --string "VaxSIPUserAgent" --algo bm +iptables -A sip -j DROP -m string --string "sipvicious" --algo bm iptables -A sip -j ACCEPT iptables -A INPUT -i lo -j ACCEPT iptables -A INPUT -j sip -p tcp -m multiport --dports 5060,5061,5080,5081 -m comment --comment "SIP tcp"