DSLReports Study: 8 Hours 'til the Spam Hits
Masem writes: "In a rather interesting study at DSLReports, it was observed that email addresses published on a web site recieved spam within 8 hours of being posted, showing how aggressive the harvesters are working. In particular, a special link was set up on the main page that by following the link, the site generated an email address that was trackable to the IP that called the link, and not published anywhere else at any time. In the specific case, in only 8 hours after the email address was created, it had recieved spam; since that time about 9 months ago, it's gotten around 100 pieces. Given the time and source of most of the emails, the authors believe that they've simply got someone at one end of a home broadband pipeline using open relay mail servers, and most likely being paid to redistribute spam on the email addresses they harvest."
...would be for their ISP to go thru their logs and tell you the subscriber name and address of the offending little turd and kick their door in within 10 hours ;)
What's the average length of time between a slashdot posting and the subsequent DoS attack on the linked site?
Jason.
Damn that Bernard Shifman! Will he never learn?
If Bill Gates had a nickel for every time Windows crashed... Oh wait, he does.
The solution to spam is that Giant laser of death the airforce just got. Tie it to the email system, so once a spammer is identified, they become toast. Literally.
Sheesh, though, I hate spam. I get like 10 spam a day at my real email address, which people only can discover by talking to me (I don't post it or give it out for obvious reasons).
Maybe some kind of bulk-email tax could be imposed.... Even though I am firmly against internet tax, I think making the spammers pay for the mail (ala-junk mail via postal system) is the only solution.
I rarely ever got telemarketing calls.
Last week I applied for a telemarketing job.
Within hours I started getting calls, and I've gotten 5 a day since.
I'm sorry, Bob. So very, very sorry.
hotline@mpaa.org and cdreward@riaa.org.
"Cause there's 40 different shades of black, so many fortresses and ways to attack, so why you complainin'?"
Make their lists worthless. Compile this, run it, and put the result up on your favorite web site. Hide a link to it in your pages. Also add a disalow in your robots.txt so Google doesn't waste time on it.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#define MAX_DOMAINS 8
static char * domains[MAX_DOMAINS] =
{
"com", "edu", "biz", "net", "gov", "it", "ru", "info"
};
int getRandomLength( void )
{
float val = (float)rand();
val = val / RAND_MAX;
val = val * 20;
return (int)val;
}
char getRandomChar( void )
{
float val = (float)rand();
val = val / RAND_MAX;
val = val * 26;
return (char)( ((int)val) + 0x61 );
}
int main(int argc, char* argv[])
{
char c;
char buf[1000];
FILE * fp;
int accountLength;
int subDomainLength;
int bufIndex;
int i, g;
int gencount = atoi( argv[1] );
printf( "Generating %i accounts.\n", gencount );
fp = fopen( "emaillist.html", "w" );
if ( fp == 0 ) return 0;
for ( int dcount = 0; dcount < MAX_DOMAINS; dcount++ ) {
g = gencount;
while ( g > 0 ) {
memset( buf, 0, sizeof( buf ) );
bufIndex = 0;
accountLength = getRandomLength();
subDomainLength = getRandomLength();
for ( i = 0; i <= accountLength; i++ ) {
c = getRandomChar();
buf[bufIndex] = c;
bufIndex++;
}
buf[bufIndex] = '@';
bufIndex++;
for ( i = 0; i <= subDomainLength; i++ ) {
c = getRandomChar();
buf[bufIndex] = c;
bufIndex++;
}
buf[bufIndex] = '.';
bufIndex++;
strcat( &buf[bufIndex], domains[dcount] );
fprintf( fp, "%s ", buf );
g--;
}
}
fclose( fp );
return 0;
}
-- "The best way to predict the future is to invent it."
I think we could combine the technologies outlined in the article below this (laser of death) with the problems in this article (spammers)! Think of the possibilities!
Robort knows all.
One guy is the source of all the spam on the Internet?
I say we've found a perfect target for testing that AC-130 Death Ray.
--Blair