I don't know of one but it's easy enough to write a bash script to use rblcheck.If anyone has any convenient tool to scan entire subnet's that'd be great.
#!/bin/bash
## RBLChecker
## v.0.1 ~ sonicboxes.com
## Depends on rblcheck
###########################
##subnet/24 to check, without last octet
IP="74.125.239"
## inset date/time into log
date +"%X - %x" >> rblchecker.log
COUNTER=0
## run check
while [ $COUNTER -lt 254 ]
do
COUNTER=$((COUNTER + 1))
## check and report to rblchecker.log if found
rblcheck -q "$IP"."$COUNTER" >> rblchecker.log
sleep 2
done
## finish
clear
echo " !! RBLChecker Is Finished !!"
echo " Review rblchecker.log For Results"
oo-what?
Hmm, that is a unique approach.. Money is certainly a sure way to reach people's nerves.We ask for faxed CC information and that instantly dropped spam and abuse. They spam. We have a signed contract allowing us to legally charge their card for clean up fees.
That sounds nuts, whoever would be willing to agree to that is plain stupid. Now I am not defending spammers or any kind of abusive users, but giving my CC-info for some host to keep in a unencrypted-environment? How about nope.We ask for faxed CC information and that instantly dropped spam and abuse. They spam. We have a signed contract allowing us to legally charge their card for clean up fees.
There was a discussion about it a while ago, I forget the exact details but either Master Card or Visa has a rule where a business cannot refuse service if a customer declines to show the physical card to the business? Technically you could lose processing privileges for doing so.I'm almost sure that keeping a written copy on file of a CC number is against some sort of regulation in the US. I know for a fact retail stores can't use the carbon swipers any more.
You can show it. They just aren't allowed to store it on paper.There was a discussion about it a while ago, I forget the exact details but either Master Card or Visa has a rule where a business cannot refuse service if a customer declines to show the physical card to the business? Technically you could lose processing privileges for doing so.