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
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.