Gossamer Forum
Home : General : Chit Chat :

Re: [Watts] A question about SPAM

Quote Reply
Re: [Watts] A question about SPAM In reply to
Hmm, a better perl script to catch spam would be:

Code:
my $sa = Mail::SpamAssassin->new;
my $status = $sa->check_message($email);
if ($status->get_hits >= 5) {
# This is spam.
}
else {
# Nope!
}

=). Your number 2 example reminds me, there is a recent ie exploit that allows you to use that style of URL to hide what domain you are on:

http://www.zapthedingbat.com/security/ex01/vun1.htm

I imagine there will be even more paypal/aol/ebay credit card scams now.

Cheers,

Alex
--
Gossamer Threads Inc.
Subject Author Views Date
Thread A question about SPAM Watts 7139 Dec 12, 2003, 1:32 PM
Thread Re: [Watts] A question about SPAM
Alex 6782 Dec 12, 2003, 2:11 PM
Thread Re: [Alex] A question about SPAM
Watts 6782 Dec 15, 2003, 7:48 AM
Thread Re: [Watts] A question about SPAM
Coombes 6775 Dec 15, 2003, 7:53 AM
Post Re: [Coombes] A question about SPAM
Watts 6701 Dec 15, 2003, 7:55 AM