Yesterday I came across some suspicious traffic from multiple IP addresses to a country who we cant trust. After check it more deep, i found that several trafick just do bruteforce attack to my server.
of course this will melt when blocking one by one the ip address, and I want all traffic from ipadress originating from that country to be blocked directly and automatically without having to patch one by one into iptables, and allows opening the block quickly if needed later.
if you have some problem like me, you can follow my steps below.
Before starting
It is assumed that you are using a CentOS 7 server already having iptables and ipset installed. Run the following command in order to double check the availability of the packages:
In case all are listed under "Installed Packages" section, you can proceed forward. Otherwise, just install the missing packages.
Step-by-step guide
Download the script.
Install the required perl libraries using the following command. As one of them is available only on EPEL, the EPEL Repository must be added first:
yum install epel-release perl-libwww-perl perl-Locale-SubCountryEdit the blockcountry.pl script and specify which countries you want to block. The list of countries is available here.
my @countries = ( "PS", "SA", "TR", );
Run the blockcountry.pl script:
perl blockcountry.plThe default policy is set to reject. The iptables rules for the above example look like this:
Chain INPUT (policy ACCEPT) target prot opt source destination REJECT all -- 0.0.0.0/0 0.0.0.0/0 match-set Turkey src reject-with icmp-host-unreachable REJECT all -- 0.0.0.0/0 0.0.0.0/0 match-set Saudi_Arabia src reject-with icmp-host-unreachable REJECT all -- 0.0.0.0/0 0.0.0.0/0 match-set Palestinian_Territory_Occupied src reject-with icmp-host-unreachable
If you want to add the iptables rules with ACCEPT or DROP instead of reject, you can call the script with -p parameter.
perl blockcountry.pl -p dropIt will add the iptables rule as follows:Chain INPUT (policy ACCEPT) target prot opt source destination DROP all -- 0.0.0.0/0 0.0.0.0/0 match-set Turkey src DROP all -- 0.0.0.0/0 0.0.0.0/0 match-set Saudi_Arabia src DROP all -- 0.0.0.0/0 0.0.0.0/0 match-set Palestinian_Territory_Occupied src
Daily refresh of the IP sets can be done via a cronjob like the one below:
* 1 * * * /usr/bin/perl /<path_to_the_script>/blockcountry.pl -r > /dev/null 2>&1
Replace <path_to_the_script> with the actual path toward the blockcountry.pl script.
If you need to flush the existing rules and destroy all the IP sets available, use the parameter -f like this:
perl blockcountry.pl -fJust answer Yes or Y and all the rules and sets will be removed.To preserve the rules during reboots, run the following command:
service iptables save && service ipset save
Make sure you do not mix up the countries, otherwise you might get yourself blocked.
To avoid such issues, it is recommended to start with a cronjob that will remove the rules. If no issues arise, the cronjob can be removed.
Source and Reference : https://wiki.4psa.com/m/view-rendered-page.action?abstractPageId=44088107
No comments: