Some advices for common programmers problems

How to simply get rid off to curious bots
by mblielecki

cat /var/log/apache2/access.log | egrep "(/[^/]*){50,}” | awk ‘{ print $1}’ | sort -u
iptables -I INPUT -p all -s 201.160.49.13 -j DROP

iptables -L -nv