Thwarting Spammers
Charly's Column – grepcidr
Often it is the very simple tools that, when used appropriately, lead to the greatest success. This time, sys admin columnist Charly employs an IP address filter to count the devices in his home and trip up spammers to boot.
Although Linux has many grep
variants, you can always find a new one. I only discovered grepcidr
[1] a few months ago. As the name suggests, the tool filters input by IP addresses and networks. It works equally well with IPv4 and IPv6. To show grepcidr
's capabilities, I will use it to compile a list of all IPv4 addresses on my home network. I got this from the Syslog on the firewall, which is also the DHCP server:
cd /var/log grepcidr 10.0.0.0/24 syslog|grep DHCPACK|tail -n 1500|cut -f9 -d" "|sort|uniq > 1stlist
The 1stlist
file now contains 46 IP addresses:
10.0.0.135 10.0.0.15 10.0.0.150 10.0.0.16 10.0.0.166 [...41 more...]
I automated this discovery process with the following command:
grepcidr 10.0.0.0/24 -c < ./1stlist
In this simple case, it would have been faster with wc -l
, but grepcidr
ultimately shows its strengths when you have to filter out different networks from such a file.
After a while, I repeat the game and write the list of IP addresses written to the 2ndlist
file. For my statistics,
grepcidr 10.0.0.0/24 -c < .2ndlist
shows that the file is one line shorter, so there is one less device on the network. I can easily find out which one is missing with diff
:
diff 1stlist 2ndlist 2d1 < 10.0.0.15
To see how many devices in my house are run 24/7, I send the data to a round-robin database and have a history graph drawn. The interruption at about 6am in Figure 1 is a routine reboot of the DHCP server.
Fighting Off Mail Pests
I also used grepcidr
to create IP blacklists on my mail server. I have set up some mail addresses that I don't use but that spammers will typically test for their existence: sales@...
, for example. Twice a day, grepcidr
plows through the log and extracts all the IPs from the log lines that relate to these mailboxes and writes them to the harvest
file.
Because these lines also contain my own servers' IPs, I have to remove them with a whitelist, which is also a file with IP addresses.
The ready-to-use blacklist is now built by grepcidr
in a single step:
cat harvest|grepcidr -vf whitelist > blacklist
This trick has helped me keep many a spammer out of my life.
Infos
- grepcidr: http://www.pc-tools.net/unix/grepcidr/
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.