Am 24.11.2014 um 13:51 schrieb RW:
On Sat, 22 Nov 2014 15:32:26 -0600 (CST)
Dave Funk wrote:

Another way to seed spamtrap addresses is to make up some and
then feed them into "unsubscribe" links in spam sent to regular
users. I've got some of those I started that way 15 years ago
and they're still going strong.

Isn't there a danger that you get lower-grade spam that way, if spammers
avoid unsubscribed addresses in their snowshoe lists.

<?php
 $file = file(__DIR__ . '/unsub.txt');
 foreach($file as $line)
 {
  $line = trim($line);
  if(!empty($line))
  {
$line = str_replace('[email]', md5(microtime() . $line) . '@honeypot-domain.tld', $line);
   echo $line;
   usleep(1000);
   $out = @file_get_contents($line);
   if(!empty($out))
   {
    echo ': OK' . "\n";
   }
   else
   {
    echo ': FAILED' . "\n";
   }
  }
 }
?>

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to