For this i took the basic idea of a script from Unlocker-al and put together this little ban script.
Code:
#!/bin/sh ########################### ## Auto Ban script ## ## Illegal CCcam Users ## ## Written By CC_Share ## ## Thanks to Unlocker-AL ## ## For the Basic idea ## ########################### workdir="/" #This is there the debug info from CCcam is dumped firewall="/" #The saved firewall rules logdir="/emu/log" #The logfile directory EMAIL="" #Email adres to mail result to SUBJECT="Illegal Userlist CCcam" #Subject title of the email EMAILMESSAGE="/emu/log/illegaluser.txt" #List that contains the Illegal users rm $workdir/debug.old cp $workdir/debug.txt $workdir/debug.old cp $logdir/iptables-save.new $logdir/iptables-save.old cat $workdir/debug.old|grep illegal > $logdir/illegaluser.log grep 'illegal' $logdir/illegaluser.log | awk -F" " '{print $5,$7}' > $logdir/illegaluser.txt grep 'illegal' $logdir/illegaluser.log | awk -F" " '{print $7}' | grep -o '^[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}' > $logdir/badIP.out awk ' {s[$0]++} END { for(i in s) { if(s[i]>1) { print i } } }' $logdir/badIP.out > $logdir/badIP.block while IFS= read -r EachLine do command="iptables -A INPUT -s "$EachLine" -j DROP" echo $command $command done < $logdir/badIP.block rm $logdir/badIP.block if [ -s $logdir/illegaluser.txt ] ; then iptables-save -c > $logdir/iptables-save.new /usr/bin/nail -s "$SUBJECT" "$EMAIL" < $EMAILMESSAGE else echo "No Illegal Users found right now" fi sleep 1 > $workdir/debug.txt exit 0
If you want, the script can also mail you the result so you know what users are put in ip-tables and gives you the advantage to check if it's not a valid user.
You can put this script in the crontab to enable automatic checking.
The following is an example how to install.
Code:
./CCcam.x86 -dv > /home/debug.txt
Code:
workdir="/"
Code:
workdir="/home"
Code:
firewall="/"
Code:
firewall="/emu/log/"
Code:
00 */1 * * * root /emu/script/./illegal.sh
For the mail function to work, you have to do the following:
Code:
apt-get install nail apt-get install exim4 dpkg-reconfigure exim4-config
Code:
EMAIL=""
0 comments:
Post a Comment