Monday, December 10, 2007

Block List Babelfish Desperately Needed

After spending a few days trying to come up with a more comprehensive method of identifying known pre-existing bad IPs using the existing block lists it has become quite maddening.

SpamHaus has their collection criteria which comes up with one set of BL results, ProjectHoneyPot has their methods and even different results, and so on and so forth. Then I have my methods which traps IPs that may intersect those BL's but quite often cough up brand new IPs not showing in the other BLs for spammers and scrapers. Collectively all of these BLs, including my own, are quite comprehensive but unfortunately there's no easy way to combine them all in a real-time manner that makes sense.

Sadly, the current state of affairs is that there are just too many independent services to use that makes the process overwhelming for the average webmaster which probably opts just to pick one, which would let things slip through the cracks, out of frustration. Picking block list A over block list B might be the difference between your server getting hacked just because one list knew about the malicious botnet IP and the other list didn't.

Funny, if this were anti-virus software people wouldn't just pick any old thing, they would want comprehensive coverage, so why can't we get comprehensive coverage in block lists?

What is desperately needed is some mechanism to pool all the results together into one common service, a Block List Babelfish, where a single access can get the combined collective intelligence on whether the IP is good or bad so that everyone can easily benefit.

If anyone knows of a good BL aggregator let me know, OK?

10 comments:

Anonymous said...

Why not ask Spamhaus and the other composite blacklists how they do it?

Also, if you block libwww-perl and lwp-trivial you're blocking most of the hacking attempts anyway.

Of course, you could also decide not to run any PHP software, ha!

Johann // johannburkard.de

IncrediBILL said...

I know how they do it and they're mostly focused on email and email scrapers but I don't have the resources to set up large email anti-spam anti-phish anti-malware traps that they use or the big honeypots.

I do something that's total focused on scrapers so we have some overlap with the crawlers I block but I'd just as soon block all the bad guys.

FYI, I don't run any open source PHP software but the idiots running botnets don't seem to get that.

Anonymous said...

Firewall as much trash as possible. I use PF on Freebsd.

PF Configuration

Getting additional list for testing spfilter

Let me know if this is what you had in mind.

IncrediBILL said...

Yes and no.

It might do the job if you can get the BL in the first place but most sites providing BLs now only provide a public DNSBL you can query in real time and for enterprise accounts you can download the list for a large sum of money.

With 100s of DNSBL servers and/or paid BLs out there, it's simply not practical for any single webmaster to manage unless you work for a really big company with a serious budget to deal with this.

What I'm looking for is a single aggregator that actually does all this work, compiles all the BLs together so someone can get a pretty definitive YES or NO answer that this is a badly behaving IP in real-time without jumping through hoops.

Whoever did this could probably make some serious coin being a single outsourced provider for such a cumulative service that could be easily tapped into.

Anonymous said...

Bill;
I would be happy to share my blocklists with you. Three of them are already online, at www.wizcrafts.net (Nigerian, Chinese and Russian/Exploited servers blocklists). I have other unpublished IPs and CIDRs that I've captured from my raw access logs, for spam or exploit attempts. I also receive input from other webmasters who fend off scammers.

Let me know if you want me to send some of these deny from's to you.

Wiz

Anonymous said...

Wizcrafts, if those IPs are permanently banned from your server, think about loading then into a firewall. Using a firewall will free up apache resources.

IncrediBILL said...

Not exactly a good idea to put all port 80 blocks in a firewall as
that much data in Apache's blocking mechanism or the normal firewall could slow the server down.

My code protecting against bot blockers is much faster by design than most firewalls for the sheer volume of data it handles.

The second point is many things I block in port 80 would cause you trouble if it were also used to block SMTP/POP ports as well. Just because I block all data centers from accessing my website doesn't mean I want to block them from sending email otherwise I couldn't get order notifications, newsletters, etc.

Anonymous said...

Bill do you get order notifications, newsletters, etc, from Nigerian, Chinese and Russian/Exploited servers :). I don't

Firewall as much garbage as possible. PF can easily handle the IP lists Wizcrafts posted (use tables).

Where else is he using them? Httpd.conf or htaccess. If so, Apache is being loaded up for no reason.

Anonymous said...

Ban Proxies said...

"Wizcrafts, if those IPs are permanently banned from your server, think about loading then into a firewall. Using a firewall will free up apache resources."

This does no good when you are using shared hosting, which I use. Our only recourse is directives placed in our own Apache Server .htaccess files. That's why the titles of all of my blocklists include: "from your Apache server, with this .htaccess file."

I should mention that I have requested and received a firewall block when my website was under attack from a Chinese server. That only got done because it affected the entire server, which hosts God knows how many other websites. If it was just me being annoyed they would laugh at me for asking for a firewall rule.

IncrediBILL said...

Even PF would probably choke with the 80K IPs I'm tracking so not a viable alternative IMO.