You are not logged in.
Hi,
Could you tell me why in file All IPs in CSV is only 26576 IP when on main page stopforumspam.com is information about 514517 spammers?
Thank you.
Offline
The search, and lookup will provide up to the larger amount.
The CSV however is only a past 90(?) days storage.
Zap ![]()
Offline
Not to mention the CSV has all the dupes removed.
Offline
The CSV I just downloaded has the ISP's in a horizontal layout, which is finite in Excel, and not in the vertical numeric orientation which is infinite. Any way to get the infinite version rather than the horizontal finite one?
Thanks in advance.
Offline
The new site offers a download with that, in the meantime, there is some php on the site here that will do what you want.
something like
$csvarray = explode(",", @get_file_contents("http://www.stopforumspam.com/downloads/bannedips.csv"));
gives you an array. This is typed in from the top of my head and hasnt been tested at all.
Offline
ZB Block just does a fast pattern match on the CSV. It would be happy with ww1.xx1.yy1.zz1,cookie monster,ww2.xx2.yy2.zz2 .So I've never cared, EXCEPT when compiling my own during a recent bit of nastiness...
then I used notpad++ to find "," and replace with ",\n" (\n=newline)...
then I used gnu tools to remove dupes from the combined db, then reversed the above process.
Zap ![]()
Offline