Slashdot Mirror


Fighting Spam on the Home Front

Saint Aardvark writes: "Something interesting from the SecurityFocus Honeypot mailing list: a couple of honeypots for spammers. This message has a link to a how-to page for setting up a Sendmail honeypot to trap spammers, and the status page for a honeypot in Moscow that's trapped spam meant for >1.7 million recipients. The author mentions using a honeypot in conjunction with the Distributed Checksum Clearinghouse -- this seems like a great way identify both spammers and their messages."

And C-Moan writes: "Wireless spam volume is likely to increase in the coming years. But smart use of spam-fighting measures can go a long way toward eliminating the problem. This article provides info about the latest crop of e-mail filters and enhanced mail client options, as well as two roll-your-own programming platforms that could help keep your in-boxes spam free."

300 comments

  1. If you don't drop the TCP SYN, you're dead. by Anonymous Coward · · Score: 5, Interesting

    I run a fourth level .ca domain. It gets so much spam that the only solution for me was to put in firewall rules. TCP port 25 is open for my 5 friends, and a few mailing lists. For everyone else, it's closed.

    I've got a longer rant on my web page, but I won't post it here, as the machine will die.

    Suffix it to say that I can't afford 500k+ spams a day. The SMTP 'HELO', 'MAIL FROM', and 'RCPT TO' traffic for spam was getting to a gigabyte of
    traffic every few days.

    rbl doesn't work. The spammers that hit me aren't listed on it. 'teergrube' doesn't work. I can't afford the bandwidth or the CPU time to maintain millions of open connections.

    When you get spam, if you do ANYTHING other than
    drop the TCP SYN packet, you've lost.

    1. Re:If you don't drop the TCP SYN, you're dead. by Anonymous Coward · · Score: 2, Informative

      Well, a comment from your "Operator in Moscow" who is actually runs this system (h0n5yp0t url above). No, my system is well-running. It's i486DX4/100 machine (go to www.corpit.ru). I can control it to the level I need. But what I want this machine to be protected from is -- from being /.'ed... ;) I noticied that machine load average increased to about 8..9 and noticied huge amount of hits in my apache logs. I was unaware of this /. posting. Well, machine handled (and handles) this load pretty good.

    2. Re:If you don't drop the TCP SYN, you're dead. by Anonymous Coward · · Score: 0

      Try this:

      http://www.spamassassin.org/

      Spamassassin is a free spam-filter written in perl. I tried it out and it is really really good. 99.5% of my spam now goes directly to /dev/null thanks to spamassassin!

    3. Re:If you don't drop the TCP SYN, you're dead. by njdj · · Score: 1

      For most people who administer a host, this is not practical because firewalls only filter on the originating IP address and low-level protocol. Therefore, if you have one friend who uses Yahoo or AOL to send email, you have to accept all email from those services - you're basically filtering by ISP. Also if one of your friends sends you an email saying "Hi, I just changed my ISP", you'll filter out the unfamiliar ISP and probably never hear from that friend again.

    4. Re:If you don't drop the TCP SYN, you're dead. by red5 · · Score: 1

      Thats not going to help this guy.
      The bandwidth alone is killing him.

      --
      I know I'm going to hell, I'm just trying to get good seats.
    5. Re:If you don't drop the TCP SYN, you're dead. by Amoeba+Protozoa · · Score: 2

      You should run teergrube, here's an answer as to why from the Teergrube FAQ:

      How many connections will be tied up by a teergrube on my host?

      A regular teergrube will hold up to ten connections open at a time. On the spammer's side there will be up to ten connections open for every teergrube he runs into. So decentral resources fight against centralised spammer ressources. The more teergrubes are installed, the better.
    6. Re:If you don't drop the TCP SYN, you're dead. by Anonymous Coward · · Score: 0

      (Anonymous to hide traces of my existence)

      I've had fast, always-on internet connections for some time. Currently 10Mbps ethernet to telco backbone and cable modem. Static IP, too. A couple of domains.

      I get spam. But not very much - perhaps 5 or so a day. Most of the spam comes to an email address I've had for over 10 years. I've used that address in Usenet, too. And many other places. The address is pretty much obsolete - I don't think I get much email for that address that would be valid.

      I have SMTP open. Once I had a spammer hit it as if it were an open relay (and no, it's not). Because the SMTP server answering the external interfaces doesn't check the emails for validity. It doesn't do spam-filtering, nor does it do anything else except receive RFC-compliant email and spool them. Later on, sendmail processes them, but out of security concerns, the externally visible MTA is not sendmail but something that can be proven as secure (small enough to read and completely understand).

      But, it was just once. And apparently not by a high-bandwidth spammer, as it wasn't a major concern bandwidth-wise - I only noticed it when I checked my maillog as it seemed bigger than usual.

      Perhaps I'm an exception. But to me it seems that having bandwidth and static IP doesn't equate to target-practice. Oh yes - there aren't too many probes, either. Nowadays it looks like less than once a day.

  2. spider traps by Alien54 · · Score: 4, Interesting
    I recall a number of scripts meant to trap spidering harvesters by generating endless pages of bogus content, with bogus addresses.

    I wonder how useful they would be in a honey pot setup, if you had the bandwidth to spare.

    --
    "It is a greater offense to steal men's labor, than their clothes"
    1. Re:spider traps by Raphael · · Score: 4, Informative
      I recall a number of scripts meant to trap spidering harvesters by generating endless pages of bogus content, with bogus addresses.

      You are probably refering to Sugarplum or Wpoison.

      I wonder how useful they would be in a honey pot setup, if you had the bandwidth to spare.

      They perform two very different purposes: the poisoning scripts mentioned above are designed to fool the robots that harvest e-mail addresses. They slow down the spammers and introduce many invalid addresses in their list, but they cannot completely prevent the spammers from collecting e-mail addresses.

      The fake open relays mentioned in the article are designed to stop the spammers from sending their spam. The spammers think that they have found a nice open SMTP relay and they dump all their spam to it, but in the end nothing is sent to the intended recipients.

      You could of course run both on the same machine, but this is probably not a good idea because the goals of these spam traps is to convince the spammers that they have found a "live one". If there is anything that looks strange on the target site (such as a warning generated by their harvesting robot), it is likely that they would consider this to be a suspicious site and they would not try to use it to relay their spam.

      --
      -Raphaël
    2. Re:spider traps by po_boy · · Score: 3, Interesting
      I just wrote a mod_perl apache module to implement a similar honeypot idea. The primary difference is, though, that if a spider requests a page from the honeypot, the webserver realize that it's a maliicious spider. After that the webserver refuses to serve any pages at all to that client for some time.


      It's supposed to cut down on email harvesting bots and others that ignore the /robots.txt file

    3. Re:spider traps by FyRE666 · · Score: 1

      I recently wrote such a CGI script for my site. It creates html pages with randomly generated paragraphs, dotted with random email addresses and links which loop back to the script.

      However, my problem is that my site already over-runs my bandwidth limit every month so I have to pay an excess per MB, so I added a variable to the script so that after a bot has moved over X levels deep into the pages it just returns 500's instead of pages.

      The logs have started filling pretty quickly even though the link to the fake pages will only be seen by a robot (or someone looking through the source). The user agents include the usual suspects, plus a LOT of faked Explorer and Mozilla "Agents" - these are obviously not real people due to the speed at which they've moved between pages.

      If anyone wants it, just drop me a mail - it's only a little perl script; hopefully I'm doing my bit to annoy them though :-)

    4. Re:spider traps by tomstdenis · · Score: 1

      On my website I use a system where each page sent appends 50 new random yet spider-plausiable email addresses. The idea is that a spider will read these and waste time trying to spam them. If everyone on the net used a similar scheme you could easily cut spam down since people would waste so much time trying to spam non-existent computers.

      The code is available [in perl] off my website. Basically each page on my site is processed through a perl system I wrote a while back. It allows me to make easy dynamic pages [i.e stats or otherwise realtime content...]

      Tom

      --
      Someday, I'll have a real sig.
    5. Re:spider traps by Anonymous Coward · · Score: 0

      How about this?

      most of you have dns. So now you snag thier ip address. Plop it into your bind settings. then serve firstname_lastname@somethingrandom.yourhost.com in your honeypot. Now just make somethingrandom hand back the ip for that spammer. At the very least it will take out the trolling machine...

    6. Re:spider traps by Isofarro · · Score: 1

      I recently wrote such a CGI script for my site. It creates html pages with randomly generated paragraphs, dotted with random email addresses and links which loop back to the script.

      However, my problem is that my site already over-runs my bandwidth limit every month

      Why don't you introduce a sleep of a few seconds before starting to deliver the page. And then sleep every paragraph or so. If you can keep an email harvester busy for a while _waiting_ for data - that's less resources that harvester can use.

  3. Delays with the sendmail-bd by greyguppy · · Score: 4, Interesting

    I like the idea with sendmail -bd, not delivering any mail, but surely spammers will simply assume that an "open" relay that takes 2 days to deliver their test message is being moderated as such by somebody running a honeypot. Unless you can identify, and forward spam tests as quickly as if the mailserver was running properly, then the spammers will soon catch on.

    1. Re:Delays with the sendmail-bd by Raphael · · Score: 3, Interesting

      I do not think that many spammers pay attention to the delivery time for their test messages, because they usually send dozens or hundreds of probes at the same time. As long as the message is delivered (by hand) within a couple of hours, that should be sufficient.

      But they will probably pay attention to this trick sooner or later. So we need a more sophisticated script than this simple "sendmail -bd". Maybe some kind of "limited open relay": a program that always delivers the first message received from any IP address, but delays (or drops) all the other ones coming from the same address. There could be a configurable threshold allowing more than one message per IP, in order to fool the spammers who would try to send two test messages.

      Such a machine could be used as an open relay, but with limited consequences. As long as the administrator of the machine keeps the logs of all incoming IP addresses (with timestamps and as many details as possible), the messages that go through it will not do much damage.

      --
      -Raphaël
    2. Re:Delays with the sendmail-bd by cornjones · · Score: 2, Interesting

      there was a school of thought on this that would increasingly delay the time between each message sent. first message goes right out. next takes 2 seconds, 4 seconds, 8, etc we all know how doubling works. simple but effective if I am sending a message to 4 or 5 people there is no noticeable delay. if I am sending to 50 people it will take a couple hours. any more than that you are probably spamming. in a real implementation you would probably come up w/ a more elegant scheme than doubling. B)

      as w/ any spam ruleset there are exceptions. there should be a conf file for allowed mail senders such as if you are running a mailing list or the such.

      it should be trivial to write something like this into a milter or to just put a wrapper in front of your port 25.

    3. Re:Delays with the sendmail-bd by minas-beede · · Score: 1

      Most spam I trap has 48 recipients. It would be a long, long time before recipient 48 got his spam. (Not too long ago most had 21 recipients. Even that would introduce some long delays.)

  4. Since the dot.bomb happend... by AltGrendel · · Score: 0, Redundant

    ...I've noticed that spam has increased quite a bit. Like 10x or more.

    --
    The simple truth is that interstellar distances will not fit into the human imagination

    - Douglas Adams

    1. Re:Since the dot.bomb happend... by ackthpt · · Score: 1
      I'd call that largely coincidence. I think there's just more cretins trying testing the waters and it's going to get much, much worse. One thing I recently did was mask my email address on my web pages, and it's had a pretty fast impact. This leads me to suspect many spammers aren't even buying the CD's full of email addresses, but directly harvesting themselves.

      Keep in mind, if you get 1% of 1.7 million people to send you $5, you've more than paid for your efforts, that's what has to be fought, the spammer at the pocketbook.

      --

      A feeling of having made the same mistake before: Deja Foobar
    2. Re:Since the dot.bomb happend... by andreass · · Score: 1

      > Keep in mind, if you get 1% of 1.7 million people to send you $5, you've more than paid for your efforts, that's what has to be fought, the spammer at the pocketbook.

      I guess we'll never get rid of spam since there continue to be enough stupid people in the world who will not only read the crap, but go out and buy it!

      I never buy anything advertised as spam, the same as I hang up on every telemarketer that ever calls me. If I want something, I'll do the calling. I suppose if everyone acted in this manner rather than giving into to their impulses, we wouldn't have a spam problem. And those telemarketers would stop calling as well! Too bad it will never happen and we'll have to rely on Uncle Sam to 'protect' us (well, maybe just the stupid people)

    3. Re:Since the dot.bomb happend... by ackthpt · · Score: 1
      I guess we'll never get rid of spam since there continue to be enough stupid people in the world who will not only read the crap, but go out and buy it!

      ...

      Too bad it will never happen and we'll have to rely on Uncle Sam to 'protect' us (well, maybe just the stupid people)

      That's the problem right there. The saps. Without them spam would have failed ages ago, along with all the crap the offer. Problem is, you can't create laws against being a gullible sap, it has been tried before in many other forms, but the unethical combined with the witless create a lot of trouble for everyone else (i.e. Notice how in drawing this conclusion I avoid making any references to W., C. and the Enron scandal...oops)

      Tossing this into the unsolicited opinion realm (i.e. free speech) makes it a minefield, even before the Direct Merchandising weasels got to lobbying, because poison pills were often included in legislation, by error or intent hard to say, and ultimately laws fail the constitutional test and get tossed out.

      --

      A feeling of having made the same mistake before: Deja Foobar
    4. Re:Since the dot.bomb happend... by Anonymous Coward · · Score: 0

      ...I hang up on every telemarketer that ever calls me...

      It's been said before, but it deserves saying again.... DON'T DO THIS. It costs a telemarketer virtually nothing to have you hang up, but a noticable amount if you dick them around for quarter of an hour before telling them to piss off.
    5. Re:Since the dot.bomb happend... by Mark+Pitman · · Score: 1
      It costs a telemarketer virtually nothing to have you hang up, but a noticable amount if you dick them around for quarter of an hour before telling them to piss off.

      That's fine, but then I waste 15 minutes for every telemarketer that calls. I don't know about anyone else, but I have better things to do than dick around with telemarketers for 15 minutes a pop.

    6. Re:Since the dot.bomb happend... by sandman935 · · Score: 1

      If you have a toddler in the house, hand the phone to them. They love talking on the phone and they don't care if it's a stranger.

      --

      Defecation occurs.
    7. Re:Since the dot.bomb happend... by Mark+Pitman · · Score: 1

      Now THAT is a good idea! I have 2!

  5. YRO? by MoNsTeR · · Score: 0, Flamebait

    I don't normally complain about this, but why is this story in "Your Rights Online"?

    Unless, the Slashdot authors have finally acknowledged that spammers have rights too, but I doubt that.

    (And no, I'm not trolling.)

    1. Re:YRO? by Anonymous Coward · · Score: 0

      How about that spamming is a form of censoreship in that it inhibits communication?

  6. What am I missing? by Carmody · · Score: 3, Insightful

    I read the article, and it seems to be based on this.

    (1) Spammer sends bunch of stuff to someone who is throwing it away, unread

    (2) ? ? ?

    (3) Spammer is discouraged from sending spam

    In other words, I understand that that spammer THINKS his spam is reaching endusers, when, in actuality, it is not. But I don't understand how that discourages or harms the spammer in any way.

    --
    God is real unless declared integer
    1. Re:What am I missing? by Anonymous Coward · · Score: 0

      doesn't everyone just throw away the spam, unread, to begin with. what's the difference, then?

    2. Re:What am I missing? by Anonymous Coward · · Score: 0

      My MS Outlooks makes me to read each mail before I can delete it.

    3. Re:What am I missing? by Carmody · · Score: 2, Interesting

      Uh, spammers send out spam to get orders, sales etc.. If their mails don't get through, they sell less and get discouraged.

      You are misunderstanding me. I understand why it hurts spammers if their mail doesn't make it through to their destination. What I don't understand is why it is better to let them THINK it is getting through than it is to let them realize that it is not.

      --
      God is real unless declared integer
    4. Re:What am I missing? by codexus · · Score: 0, Redundant

      If that's the case, then why are you using this software?

      --
      True warriors use the Klingon Google
    5. Re:What am I missing? by GeorgeH · · Score: 5, Insightful

      (2) Spammer sees .01% response rate drop to .0000001% response rate (finding open relays, spidering email addresses, etc). Looks at books and sees that he spent 10 hours getting everything together to spam. Additionally, he spends 30 hours dealing with people who call pretending to be interested, keep him on the line, and then say that their credit card number is "spammers suck." So he spent 40 hours and only sold one widget, that he gets a $5 profit on. Realizes that he could have made more money working 40 hours at Mcdonalds, and there are nicer customers to boot.

      The reason people spam is the cost is low. Increase the cost of doing business and they will reevaluate.

      --
      Why can't I moderate something "Wrong" or at least "Grossly Misinformed"?
    6. Re:What am I missing? by GeckoX · · Score: 0, Troll

      Well then, guess you'd better rtfm!

      --
      No Comment.
    7. Re:What am I missing? by Anonymous Coward · · Score: 0

      He didn't say open source.

      And if it doesn't do what you want, then isn't it crap independent of whether it's closed or open source?

    8. Re:What am I missing? by ShaunC · · Score: 2

      >What I don't understand is why it is better to let them THINK
      >it is getting through than it is to let them realize that it
      >is not.

      Because if they think the spam is getting through, the spammer ends up wasting a whole lot of time sending spams which don't get delivered. If they realize they've got a honeypot, they move to another relay and start sending spams which do get delivered. Clearly it's better to have a spammer sending mail to nowhere than sending it to everywhere, but no spammer's going to intentionally send mail to nowhere. That's where the trickery comes in.

      The idea is to occupy time and/or resources that the spammer would otherwise be using to pollute the net. The stats on the Russian honeypot show that they trapped a spam run which lasted four full days and totalled more than a million recipients. This adds up to quite a bit of wasted spamming time, and quite a lot of spam messages that would have otherwise been delivered.

      Shaun

      --
      Thanks to the War on Drugs, it's easier to buy meth than it is to buy cold medicine!
    9. Re:What am I missing? by GeckoX · · Score: 1

      Modded as a troll for suggesting someone rtfm?
      Wow.
      Gotta love the intelligence of the /. crowd ehh?

      --
      No Comment.
    10. Re:What am I missing? by Anonymous Coward · · Score: 0

      Either you are a moron or a 12 yr old. I am betting on both.

    11. Re:What am I missing? by Carmody · · Score: 3, Insightful

      (2) Spammer sees .01% response rate drop to .0000001% response rate (finding open relays, spidering email addresses, etc)

      This is an interesting answer. If the spammer is looking at response RATES, that answers my question, because the honeypot will decrease the apparent response rate. But wouldn't a spammer be looking at the response TOTALS? In other words, "I spend $1,000 to send a spam, and I got $10,000 in orders, so I made 10x my investment." The response total will not change if there are honeypots or not, because the spam would be blocked by the ISP who set up the honeypot in either case.

      Your argument works if the time investment (the 40 hours you detailed) goes up as the response rate goes down. I don't believe it does that - whether or not a honeypot is set up, the spammer still sends out the same quantity of spam.

      Do you agree with me, or am I still being thick?

      --
      God is real unless declared integer
    12. Re:What am I missing? by Anonymous Coward · · Score: 0

      ...say that their credit card number is "spammers suck".....

      Would there be any benefit in giving spammers reported stolen credit card numbers ?
    13. Re:What am I missing? by Anonymous Coward · · Score: 0

      They do look at response rates. That is how they sell the SPAM. What they do is sell a certain number of mails sent for a certain amount. Right now the amount that they get for say, 1 million emails is about 1/100th of what they get for opt-in emails. But, opt-in emails are more responsive. So if the return on investment for SPAM becomes lower than the ROI for opt-in emails, then the spammers will no longer have any customers.

      QED baby.

    14. Re:What am I missing? by minas-beede · · Score: 1

      The spammer sends out the same number of spams. True. A major function of the honeypot is to prevent delivery of all the spam that the spammer sends to the honeypot thinking it will be relayed. My honeypot (in Wisconsin) probably has a negligible effect, percentage-wise, on the delivered spam. Michael Tokarev's honeypot, which the spammer chose to subject to a spam flood, slowed deliveries for that spammer (Ralsky) to a crawl while he (Ralsky) was using the honeypot. The effect of honeypots should scale: twice as many should have twice as much effect, etc. Ultimately the amount of spam any given honeypot stops is determined by how much the spammer sends to it so you can't know until you create and run the honeypot what its effect will be. The joy of running a honeypot starts when you trap the first relay test messsage and grows from there.

  7. vipul's razor!!!1` by notsoanonymouscoward · · Score: 5, Interesting

    This sounds alot like vipul's razor a fellow checksum'ing spam catcher. In addition to being free and open source, I think vipul's has been around longer than these other guys. They also use honeypots to catch lots of spam, but I believe not so much in the relay dept.

    --
    I ate my sig.
  8. Suffix? by Anonymous Coward · · Score: 0, Funny

    "Suffix to say"? Bwahahahaha! {wiping tears} thanks for the laugh dude!

    LOL

    ROFLMFAO

    "Suffix to say"?

    tee hee

  9. Spam only has a political/legislative solution by GSloop · · Score: 5, Interesting

    I've come to the realization that the solution to spam is political/legislative.

    I use SpamAssassin and it blocks virtually all spam, but that doesn't really solve the problem. Most users can't use spam assassin, or other good spam blocking system. Spamcop is good too, but that's now $3/month. Why should I be forced to pay to haul the spam, and $3/month not to see it?

    The solution as I see it is this. We need legislation that allows for damages from the beneficiary of the spam. Almost all of the spam I get comes from SMTP servers in China and Eastern Europe. Good luck getting these people shutdown. Or, it comes from an open relay. Again, it's useless to attack the unwitting/stupid party, although it might have some effect here. But the spam beneficiary almost certainly has a bank account in your country, or some bank funds transfer mechanism. If they want to do lots of business with the US or other countries, there's going to be somefinancial presence there. So, we now have money...just tap into that money, by making the beneficiary of spam a civil tort, and spam just gets more expensive to promote.

    When the demand for spam drops, because it's too expensive, then the demand for the out of country spam services drops, and eventually, most spam stops.

    There would need to be some way to keep companies from being "set-up" as spam beneficiaries, but I think that shouldn't be too hard of a problem to solve. (Who's going to pay a spammer to "set-up" someone else, when the risk could be quite high if you get caught?)

    Anyway, I'm starting to print out the most scummy spams, Porn etc (Esp pictures) and I'm going to mail them to my Congressmen and Senators. I don't know that they care, but I can pretty much guarantee they're going to get sick of getting such sicko stuff in the mail. Perhaps they'll actually do something. I've even pondered sending it all to every congressman and every senator, but that's a bit costly!

    Well, do your damage...

    Cheers!

    1. Re:Spam only has a political/legislative solution by Anonymous Coward · · Score: 0

      I've even pondered sending it all to every congressman and every senator, but that's a bit costly!

      You could always spam them with it ;)

    2. Re:Spam only has a political/legislative solution by hendridm · · Score: 2

      Agreed. You can cite U.S. state-specific violations from this page. Remember, it's just as easy for them to ignore e-mail as it is for you to ignore spam, so send a postal letter to your representative or senator.

    3. Re:Spam only has a political/legislative solution by hey · · Score: 1
      Noooo.

      Do you want Congress passing laws about the content of e-mail??!! Spam is anoying but government inference would be way worse.

      And, of course, there is that little problem of Congress not having much control outside the USA.)

    4. Re:Spam only has a political/legislative solution by Anonymous Coward · · Score: 1, Insightful

      "it's useless to attack the unwitting/stupid party"

      I know someone who knowingly runs an open relay at work. He'd love to close it - he's *begged* to be allowed to take the time - he's overwhelmed with other work and he's too wiped to fix it on his own time.
      We both think that the only way to get the Powers That Be to allow him to do the job, is for the company to be threatened by lawsuit or legislature for having an open relay.

    5. Re:Spam only has a political/legislative solution by jazman_777 · · Score: 5, Funny
      I've come to the realization that the solution to spam is political/legislative.


      I've come to the realization that the solution to spam is vigilante justice. That's how my emotions are, anyway.

      --
      Slashdot: Failed Car Analogies. Amateur Lawyering. Anecdote Battles.
    6. Re:Spam only has a political/legislative solution by Tazzy531 · · Score: 2

      EXACTLY!

      In recent years, there have been talks about legistlations to pass a email fee. (in the same way that they would do with normal mail) I would gladly accept a couple spams rather than the alternative of a per-email fee.

      --


      _______________________________
      "I'm not Conceited...I'm just a realist..."
    7. Re:Spam only has a political/legislative solution by mjh · · Score: 2
      Do you want Congress passing laws about the content of e-mail??

      The previous poster is not suggesting that congress pass laws about the content of email. He/she is suggesting that the beneficiary of spam be accountable for damages done through the sending of spam. So for example, if I set up an email account for my pre-teen son, and that email account starts getting lots of SPAM for porn sites, I should then be able to sue the porn sites who have attempted to benefit through the use of spam. Nobody's governing what can and can't be said, but someone does have to take responsibility for saying dumb stuff.

      The idea is this: skip the middle man (the spammers) and go after the people who reap financial benefit - the sites/services/etc being advertised. If there's an additional cost to spam then perhaps the demand will dry up.

      It's an interesting idea and I wonder if there are other implications that I can't think of.

      --
      Key to financial independence: Spend less than you earn. Save and invest the difference. Do it for a long time.
    8. Re:Spam only has a political/legislative solution by Fjord · · Score: 1

      Actually, there haven't.

      --
      -no broken link
    9. Re:Spam only has a political/legislative solution by GSloop · · Score: 1

      [Grin]

      That's how I feel too. It (spam) is just so scummy. I can handle blantant commercialism, even though I find it distasteful, but the spams I get make me want to take a shower, and then park a Ryder truck outside their "business"

      Most spam is just total hucksterism, and doesn't have any place, even as commercial speach.

      Cheers!

    10. Re:Spam only has a political/legislative solution by J'raxis · · Score: 1

      Once again, an appropriate law would not tackle the content of the mail, but the actions of the sender (forged headers? overloading a server? tresspassing on someone elses server?).

    11. Re:Spam only has a political/legislative solution by GSloop · · Score: 1

      I'd do exactly that, except they won't even see it. If I could obtain the personal email addresses of all my congressmen and senators, I'd do it in a heartbeat!

      I'm thinking of faxing it every couple of days. No doubt that a full page porno pic (preferably with faked besitality or homoerotica) sitting in your fax tray every AM would really bring some attention to the matter.

      But I think full color pictures might have more effect. So I'm in a quandry - fax or mail...or both?!

      Anyway, does anyone have a personal email list of most/all congress or senators? I need some spam targets! [Evil Grin]

      Cheers!

    12. Re:Spam only has a political/legislative solution by david+duncan+scott · · Score: 2

      I guess I'm just ignorant, but I've run Exchange servers, Mercury servers, and PostOffice servers, and my recollection is that closing the relay service was two clicks and a restart of the mail service in each case. What's your friend running that would make this so hard?

      --

      This next song is very sad. Please clap along. -- Robin Zander

    13. Re:Spam only has a political/legislative solution by DavidTC · · Score: 1
      It's easy: Find the sites that list open relays, and submit it to them. A quick test later, and poof, you're unable to send email to 10% of the internet. Spammers will notice you're on the list, and use you to relay spam. Poof, you're unable to send email to 25% of the internet.

      But I have to question this 'unable to spend enough time' on it. Most email servers can be stopped from being an open relay with one checkbox or one line in a config file, so the only possible way that makes any sense is if he has to set up authnicated relaying or something.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    14. Re:Spam only has a political/legislative solution by Anonymous Coward · · Score: 0

      Like the sig...mind if I use it...

      It gives a reason why I'm not willing to mod.

      -Parent

      Cheers!

    15. Re:Spam only has a political/legislative solution by DavidTC · · Score: 1

      I suspect the reason you're not moderating is more due to the fact you're an anonymous coward than anything else, but sure, you can use the sig. ;)

      --
      If corporations are people, aren't stockholders guilty of slavery?
    16. Re:Spam only has a political/legislative solution by MillionthMonkey · · Score: 2

      Well, if they did it right, it would be a natural step to take to combat spam. Of course, though, if they do pass laws about spam, they'll do it wrong, with a law that:
      -Exempts a subset of spammers that includes all members of the DMA
      -Has intended or unintended consequences for other, legitimate uses of email
      -Has attached riders written by MPAA/RIAA lobbyists that criminalize a number of other things
      -Spells out details of what should be in a valid SMTP header, thus creating a specification for legal spam (like the "ADV" subject line) that gives spammers a free pass, and that prohibits any further development or modification of the protocol
      -Allows the government to snoop on port 25 traffic if they so choose (oh wait, we have that law already, don't we?)
      -Places limitations on an ISP's liability if it becomes a spamhaus (unless it's a small ISP with no significant campaign contributions)
      -Clamps down on alternative solutions that ire spamhauses ("now that we have these great laws, you shouldn't need those filters/blacklists/honeypots")
      -Allows spammers to sue for damages if their packets are blocked or they are "falsely accused" (as larger companies start showing interest in spamming, you can bet on this)

      Such legislation would naturally be approached from the angle of "Hmm, how can we turn this into a gift to corporations?"

      When you think about it, programming and legislating are a lot alike. Programs have bugs, and laws have loopholes. The people in Congress look like they would make lousy programmers.

    17. Re:Spam only has a political/legislative solution by Heironymus+Coward · · Score: 1
      I've come to the realization that the solution to spam is vigilante justice. That's how my emotions are, anyway.

      you know, the link to the how-to on using sendmail to trapper spammers actually has some vigilante potential as well. once you convince spammers you're operating an open relay, all the mail "sent" through your system is spam... and you have the logs of their real IP addresses.

    18. Re:Spam only has a political/legislative solution by Anonymous Coward · · Score: 0

      But is it tresspassing if I send you *any* mail you don't want. After all I'd be using the resources of your server. What if the mail says: sorry, that position is already filled you don't get the job, etc. You're saying mail with a certian CONTENT can trespass/use the resources of my server and others can not.

    19. Re:Spam only has a political/legislative solution by J'raxis · · Score: 1

      I said trespassing on someone elses server to send me mail; i.e., the infamous relay-rape. I didnt mean I could claim unsolicited mail sent to me is trespass (however I suppose I could claim harassment if I explicitly request you stop mailing me, and you continue). I meant if you use my property to mail someone else something, like spam.

    20. Re:Spam only has a political/legislative solution by Swaffs · · Score: 2
      "The solution as I see it is this. We need legislation that allows for damages from the beneficiary of the spam"

      And watch as all Slashdotters start spamming each other with advertisements for Windows XP.

      "I've even pondered sending it all to every congressman and every senator, but that's a bit costly!"

      Email, man! :)

      --

      --
      "Karma can only be portioned out by the cosmos." - Homer Simpson [1F10]

    21. Re:Spam only has a political/legislative solution by AnotherBlackHat · · Score: 2

      And when the eco-terrorists, or the Republican party starts sending you "position papers" who do you sue then?

      -- Is a "no soliciting" sign spam?

    22. Re:Spam only has a political/legislative solution by Anonymous Coward · · Score: 0

      Lots of good points there!

    23. Re:Spam only has a political/legislative solution by minas-beede · · Score: 1

      Yep. And if your system is just some IP sitting out there among all the other IPs what reason other than relay test or spam is there for it to ever see any email? The system doesn't even need a DNS entry. If a spammer checks it for open relay and if that relay test is delivered the spammer's conclusion is: this is an open relay. Technical solutions are on a completely different front from legislative solutions: there's need be no conflict between the two approaches. I absolutely support strong legislation (if you do, too, watch out that the DMA doesn't pull a last-minute trick to make the legislation useless.)

  10. Re:Fight Spam by Zach+Garner · · Score: 5, Informative

    uce@ftc.gov is for this purpose.

    UCE = Unsolicited Commercial E-Mail FTC = Federal Trade Commission

    If you send it to someone like your congressman, YOU are spamming. If you do it often enough, I'm sure they will have a word or two with your ISP.

    If someone sends you a letter filled with anthrax, forwarding it to the president will not make things better...

  11. Teergrube by quigonn · · Score: 5, Informative
    What can be generally interesting when fighting spam is
    1. razor (I recently posted a message about it on /.)
    2. A "teergrube". This is german for "tar pit". In the ice age, animals like mammoths trapped into them, today the spammers shall trap into them. Lutz Donnerhacke wrote an interesing FAQ about it, you can get it from here (english, of course). IMHO every ISP should run such a teergrube on his SMTP host.
    --
    A monkey is doing the real work for me.
  12. more documentation by Anonymous Coward · · Score: 3, Interesting

    I've just rented a dedicated server running freebsd, and I get messages of relay denied daily, now I need to accept relay for my users... so i've been reading about pop before smpt, thats a good solution, since I am not used to sendmail, it has been very difficult to configure it for me...I think we need a document to configure sendmail "for dummies"...all the documentation ive found is not so easy to understand.

    1. Re:more documentation by Anonymous Coward · · Score: 0

      HAHAHAHHAHAHAHAHAHHAHAHHA....
      Ahhhh.....
      If only there were such a thing. I can't tell you how long it took me to do my first sendmail config! It's like asking for a Quick guide for calculus.

    2. Re:more documentation by RollingThunder · · Score: 3, Informative

      O'Reilly. The one word you need. The "Bat Book", which is their sendmail tome, helped me daily when I ran sendmail.

      I now run postfix (or qmail, when I need EZMLM for mailing lists), and am eagerly awaiting their Postfix book.

    3. Re:more documentation by ncc74656 · · Score: 3, Interesting
      I've just rented a dedicated server running freebsd, and I get messages of relay denied daily, now I need to accept relay for my users... so i've been reading about pop before smpt, thats a good solution, since I am not used to sendmail, it has been very difficult to configure it for me...

      I've handled local relaying by just adding IP addresses and/or address blocks to the server config. It works as long as nobody has a dynamic IP address...since the addresses that are let through are all private-subnet addresses (people behind the firewall), this isn't a problem. Their mail gets out, but spammers in search of an open relay are cut off.

      You might also want to look into qmail...it's much simpler to get going than sendmail, and IIRC no security holes have been found yet.

      Somebody linked to this article on using Apache to find the bots that swipe email addresses from websites. While you're waiting for the bots to respond to their suggested changes, you might also consider searching your logs for other attempts at sending mail through your system. Searching all the logged 404s on my server turned up 91 attempts at exploiting webmail systems. Some were the result of Nessus scans I had aimed at my server, but filtering those out left 36 confirmed attempts.

      Here are the user-agents that turned up:

      • EmailSiphon
      • Microsoft URL Control - 6.00.8862
      • Gozilla/4.0 (compatible; MSIE 5.5; windows 2000)
      ...and here are the addresses of the spammers (get a load of the last one on the list):
      • 07-127.057.popsite.net
      • 209.85.24.157
      • 24-161-169-176.san.rr.com
      • 24.27.210.44.pinecastle-ubr-a.cfl.rr.com
      • 251.cleveland-05-10rs.oh.dial-access.att.net
      • 2cust165.tnt2.ladue.mo.da.uu.net
      • 63.116.175.28
      • 64-214-40-67.brv.frontiernet.net
      • ac85c77d.ipt.aol.com
      • ac894f07.ipt.aol.com
      • ac8b6f74.ipt.aol.com
      • acb5c2f6.ipt.aol.com
      • adsl-64-169-101-147.dsl.lsan03.pacbell.net
      • adsl-64-172-45-126.dsl.snfc21.pacbell.net
      • cm092.8.234.24.lvcm.com
      • ip68-0-166-201.tc.ph.cox.net
      • lsanca1-ar2-143-206.lsanca1.dsl.gtei.net
      • pool-151-201-153-163.phil.east.verizon.net
      • roc-204-210-146-77.rochester.rr.com
      • tide86.microsoft.com
      --
      20 January 2017: the End of an Error.
  13. Wireless spam in Finland by Anonymous Coward · · Score: 5, Interesting
    Short-messaging (SMS) is enormously popular in Europe. Here in Finland, the porn spammers begun to capitalise on the popularity by sending "call this number to get your cock sucked by beautiful ladies" kind of SMS spam to arbitrary listed numbers including underage kids' cellphones.

    This kind of spam exists no more. How? It was made illegal practically overnight and that shut the bastards down.

    The spam problem is a political problem. Until there is enough political will in your governments to crack down on the spammers HARD, the spam problem will be getting worse and worse.

    1. Re:Wireless spam in Finland by ackthpt · · Score: 2, Interesting
      Political will in the US Government? Surely you're mistaken. Oh, sure they all jumped up and said their piece after Sept, 11, and a bunch of them actually are behind campaign finance reform, but they only do this AFTER it's a problem. Well, spam's a problem, but they've let phone solicitors drive us to screen messages on answering machines (which I swore I never would do, but do now) and all this BS is some twisting of "Freedom of Speech".

      I'd like to see the House, Senate and Administration actually come up with some relief legislation on this and crack down hard. Pity, they won't do it, but they saddle us with DMCA.

      --

      A feeling of having made the same mistake before: Deja Foobar
    2. Re:Wireless spam in Finland by Anonymous Coward · · Score: 0

      >This kind of spam exists no more. How? It was made
      illegal practically overnight and that shut the
      bastards down.

      Actualy sending large number of SMS became costly since almost all cell phone operators stoped free SMS routing from outside their network (this was something like open relays)

    3. Re:Wireless spam in Finland by beersoft · · Score: 1

      I moaned about the spam to my mobile operator (orange) and they said that the people responsible for it are just using random 11 digit numbers begining with 07. now i think orange are blocking sms from the cheap european providers at source The Reg and it has stopped.

      - Owen Insert coin for new game

    4. Re:Wireless spam in Finland by funky+womble · · Score: 1

      Yes, it has stopped, along with texts from anybody using MTN to run a legitimate SMS list to people who want to receive them, also texts from ICQ, texts from friends on Swisscom, MTN, Vodafone Australia and Telstra. And yet I still have been voice-spammed by companies who bought my number from Orange, so they're not exactly anti-spam, just anti-spam-they-don't-make-any-money-from.

  14. Re:Fight Spam by psycht · · Score: 1

    Are you to say, that this email address (uce@ftc.gov) is for us to forward the spam that hunts us? If so, why is it not more widely known?

  15. Throw SPAM to the tarpits! by weefle · · Score: 3, Interesting

    It would be really cool to take the relay blackhole list to an extreme, and enhance it with something like LaBrea. That way, instead of just immediately refusing to accept spam, freeing the spammer to move on to the next host on the list, a "tarpit" relay would bog the spammer down, maybe slowing their spamstream down to the point that they're sending only one message per hour. If we could get just a small percent of the SMTP servers on the 'net running such a tarpit, that would reduce the amount of spam that we all get. That is, until the spammers rewrite their software to give up on slow relays.

    1. Re:Throw SPAM to the tarpits! by Tazzy531 · · Score: 2

      One of the system administrators that I have worked with for a client has actually done this. He owns an ISP. Basically what he does is he setup the SMTP server to sleep for .001 milliseconds (or something small like that) for every email that you send. So if a person sends one email, there is no slow down. But if a person sends 100,000, after the 1000th or so, you'd have to wait close to a minute after each message sent. So at that point, the spammer figures his autospam program is bugging out and cancels to try again.

      --


      _______________________________
      "I'm not Conceited...I'm just a realist..."
    2. Re:Throw SPAM to the tarpits! by J'raxis · · Score: 1

      Does it reset the increment to 1 sec when he tries again, or does it remember his IP and continue the increment where it left off? Otherwise, the solution for the spammer would be to simply connect, send 1,000 messages, disconnect, then reconnect and send 1,000 more.

  16. I've said it before and I'll say it again... by Dimensio · · Score: 3, Funny

    The only real solution to the spam problem is to kill spammers brutally, horribly and publically -- placing their heads on pikes as a warning to others. The US should encourage foreign governments to do the same under threat of airstrikes (though said airstrikes should only be centered on the locations of known spammers).

    Yes, I'm serious about this. I despise spam and wish all spammers DEAD.

    1. Re:I've said it before and I'll say it again... by Dimensio · · Score: 0, Offtopic

      Troll I'll buy (though I am dead serious about wanting spammers to die horribly), but Offtopic? Who the hell is moderating today?

    2. Re:I've said it before and I'll say it again... by Anonymous Coward · · Score: 0

      Not off topic at all. It would be a way to fight spam(mers) on the 'home front' if it didn't have all the legal problems (8th Amendment for US folks).

      The other issue is would they then be seen as "the poor victims" of "anti-commerce nuts" or some such and have it backfire?

      This was speculated on for a bit on news.admin.net-abuse.email . See Google Groups for that group and search for 'Final Solution' and the thread should show up.

      Not that the spamming #$%^&* don't deserve the treatment...

    3. Re:I've said it before and I'll say it again... by Anonymous Coward · · Score: 0

      I'm with you. While most come from addresses you can't reply to, I've located valid addresses for a few of the marketing companies who have spammed me the hardest (from unique addresses every time, so I couldn't filter them), and have sent them some very nasty e-mails cursing them out and wishing them a horrible death (not direct death threats from me though, I'm not that stupid).

      My big complaint is that my ISP charges by storage used, and I've been getting about 40 spam messages daily. It's easy enough to delete anything from un-known senders, but I still have to pay the monthly bill for the disk space from my ".inbox".

      The answer is NOT to change ISP's. I've been using "The Well" since 1994, and I'd like to keep my account there for many more years. The spam increased about 800% after I bid on something on eBay last year. Before that, it wasn't such a big problem.

      Your solution will never "sell", but I support it and wish for it every time I get my monthly bill.

    4. Re:I've said it before and I'll say it again... by Dwedit · · Score: 1

      I agree. But I think you should mutulate their genitals first.

  17. Re:Fight Spam by sargon666777 · · Score: 0, Offtopic

    I heard the president actually tried anthrax once..., but he didnt inhale... or so he says... No wait that was Clinton... (This was intended to be funny not serious, for the geeks out there with no humor)

    --
    Am I lying when I tell you that im telling the truth? Or am I telling the truth when I say that Im lying?
  18. Re:Fight Spam by Anonymous Coward · · Score: 4, Informative
    PREPARED STATEMENT OF THE FEDERAL TRADE COMMISSION ON "Unsolicited Commercial E-Mail"

    On another front, the FTC set up a special electronic mailbox reserved for UCE in order to assess, first hand, emerging trends and developments in UCE. With the assistance of Internet service providers, privacy advocates, and other law enforcers, staff publicized the Commission's UCE mailbox, "uce@ftc.gov," and invited consumers to forward their UCE to it. The UCE mailbox has received more than 2,010,000 forwarded messages to date, including 3,000 to 4,000 new pieces of UCE every day. Staff enters each UCE message into the database; UCE received and entered in the database within the preceding 6 months is searchable. Periodically, staff analyzes the data, identifies trends, and uses its findings to target law enforcement and consumer and business education efforts.

  19. Hotmail honeypot by Ratso+Baggins · · Score: 1
    or from the other end, a perl script which creates bogus hotmail addresses with all the "come get me spammers" option ON and perhaps even posts itself to spam lists. The script of course would create thousands of these (each with there 2M limit). and have the secondary plus of having all the spam where it belongs ;)

    ~

    --

    --
    "we live in a post-ideological world..." - Billy Bragg.

  20. What's funny is... by linuxrunner · · Score: 3, Funny

    I decided that one day I would reply to all the spam that I received in my non-personal mailbox.

    I did
    I then received all the mail back as undeliverable.
    I replied the same day it was received so what good are these spammers doing? I mean, how do they expect to make any money if they were not there to take mine?

    --
    www.slightlycrewed.com - Because aren't we all?
    1. Re:What's funny is... by dattaway · · Score: 2

      I blame it on viruses.

      My guess is that these spams come from infected computers that are infested with a virus designed to send out spam and infect more computers at random. It might have been months or years since the first round hit and the email address of the satan who sent it is long gone (hopefully dead.)

    2. Re:What's funny is... by Tazzy531 · · Score: 2

      Most spams do not use valid return addresses. They either have you click on a URL to go to a website or have you call a number or mail something to an address. The reason that this happens is that if they were to use valid emails, they could be tracked down easily. Their accounts would close once they are detected to be spammers. So they use dummy accounts at one of the free email services online. Or they setup dummy return address fields. This hides their tracks to an extent.

      Another thing that they do is they send you spam just to check if you have a valid email address. There is probably greater profits in the sale of email addresses than what they seem to be selling in the emails. Even if you don't respond to it, 1) they don't get a auto-response bounce back (therefore it's valid) 2) at times HTML emails contain images located on a server. This allows them to track if a message has been read and which message.

      --


      _______________________________
      "I'm not Conceited...I'm just a realist..."
    3. Re:What's funny is... by Binestar · · Score: 5, Insightful

      2) at times HTML emails contain images located on a server. This allows them to track if a message has been read and which message.

      This is exactly that, most HTML e-mail messages you get contain an image. Alot of those images are formatted in such a way like:

      img src="http://www.spammersite.com/spampic.jpg?you@yo urisp.com"

      So the image display's, and they now have a list of e-mail addresses of people who looked at the message.

      So now you don't even have to click anything, they know you are looking at the message just by your mail client opening the picture.

      --
      Do you Gentoo!?
    4. Re:What's funny is... by J'raxis · · Score: 1

      I fail to see how they are going to receive any bounces at all if they are not using valid return addresses. Although the image trick I know is true; often the image files have Weird Shit appended to the URL as a query string (http://spamhost.com/image.gif?x=32487325483248372 ) which I am almost positive is a kind of verification trick.

    5. Re:What's funny is... by AndroidCat · · Score: 3, Informative
      That's why I never open spam. Instead, in Outlook Express, I use Properties/Message Source.

      I got one spam that had code to cause a banner advertising hit for the spammer. I notified the banner ad company. I suspect the spammer was unhappy about the result.

      --
      One line blog. I hear that they're called Twitters now.
    6. Re:What's funny is... by rbeattie · · Score: 2

      The same thing happened to me, sort of. I had an email address that I was using through Mail.com and besides the fact that it's a horrible service, the amount of spam I was receiving was nuts - I just used it too much on the web during the 90s not realizing what I was doing.

      So I changed email addresses and I set up the Mail.com email system to auto-respond with a message that said that it was an old email account and to check my website for the new one (thus not sending my email to Spammers ... Yes I know about web-scrapers... what can I do). Anyways, now I have to go into the mailbox every week or so to check for bozos who still email me at the old address and to clean out all the SPAM I receive AND all the Bounced Mail messages. It seems that every single instance of Spam uses a fake email address or an address at Yahoo or Hotmail which fills up in 10 minutes.

      So trying to figure out why the hell would anyone send me a message from a fake address, I determined it was obvious if you read the email. They always include a link to some random website (.ru anyone?) and when you arrive, there's absolutely no contact info, but always a pitch for some product or service and a form to put your credit card info in. Fuckers. I HATE SPAMMERS.

      From this experience I thought I'd really like to implement a sort of "thank you note validation" system on my mail server where every message that comes in would be responded to automatically with a "thank you note". Any response email that bounced would automatically mark the original message as spam. This of course would bring the Internet to it's knees if everyone did this (here's a thank you note for your thank you note) and temporary mail server or router outages would also cause false-readings, but still...

      My COMPLETELY INEXPERT opinion is this: We're all using SMTP - SIMPLE message transport protocol. It's now time for a NON-SIMPLE solution. The CMTP if you like (c for complex). If you want to send mail, you have to register your email address with an officially sanctioned registrar (yes, I know, it'd be like ICANN except worse) and then those messages would be digitally signed and your mail server could be set up with levels and filters. You could still receive unsolicited mail, but if it was from a known corporate entity, you could acurately filter it out.

      I remember when I set up my first SMTP server and email system and found out that you can basically lie in all the to and from fields and IT DOESN'T MATTER, I thought, that's sort of weird. Now I realize it's completely broken, not weird.

      My thoughts...

      -Russ

      --
      Me
    7. Re:What's funny is... by Caled · · Score: 1

      I just looked at the source of a spam I got..
      src="WINDOWS/Desktop/Mass%20Mailer/tvbooste r.jpg"
      lol

    8. Re:What's funny is... by Chops · · Score: 2

      That means, hopefully, that the system is working: People get spam, people forward spam to abuse@sourcedomain, admin shuts down the spammer with extreme prejudice, spammer doesn't make any money.

      I love spam. I really do. I love the malicious thrill I get from digging through the headers to find the magic Received-by: line that will be the target of my ire. I love the sudden urgency it brings to my day ("Gotta get this bastard before he makes a sale..."). More than anything I love to get that email back from the admin desk saying, "This account has been terminated. If you have any further comments blah blah blah..." When that happens, I do a little dance, because it means some pig bastard just lost money because of me. Someday, I'm sure I'll get bored and cynical and just starting using MAPS, but I don't think it'll be soon.

  21. most effective by TheSHAD0W · · Score: 5, Insightful

    The most effective solution for fighting spam is NOT legal; it is also not honeypots, or open server bans. It's community action.

    Did you receive a spam directing you to a website? Good. Surf there. Reload. Reload a few hundred times. 800 number? Call it and complain. When they hang up on you, call back.

    Multiply this by even a small fraction of the people the company sent spam to and swamp their lines and slashdot their servers. They won't be making any sales, and any earnings they do make won't come close to paying their bandwidth or phone bills.

    1. Re:most effective by JPriest · · Score: 1

      unless they have a banner and are being paid by impressions. If they do and are spamming the web site email the advratising co. they are using for the banner and they can often get out of paying the spammer money for the impressions.

      --
      Saying Java is nice because it works on all OS's is like saying that anal sex is nice because it works on all genders.
    2. Re:most effective by TheSHAD0W · · Score: 2

      Most advertisers won't pay for multiple hits from the same user. ;-)

    3. Re:most effective by JPriest · · Score: 1

      but I usually won't visit the page and the sites are not always hosted on legit accounts, the spammer is not necessarily the person stuck with the bandwidth bill.

      --
      Saying Java is nice because it works on all OS's is like saying that anal sex is nice because it works on all genders.
    4. Re:most effective by mmontour · · Score: 2


      www.overture.com (formerly GoTo.com) is a search engine where advertisers pay for clickthroughs, and each search result shows you how much your click costs that advertiser (more $ == higher search ranking).

      Search for "bulk email".

      Click through the first 10 or so.

      Multiply by the Slashdot Effect.

      Smile.

      (I am not associated with overture.com, nor is this an endorsement of their services. But anything that bleeds money from spammers is good IMHO).

    5. Re:most effective by Anonymous Coward · · Score: 0

      Don't click on this link, as that will only let the recipient know (via the referrer header) that you weren't a genuine visitor.

      Drag the URL to a fresh browser instance instead.

    6. Re:most effective by Anonymous Coward · · Score: 0

      (Brad Spencer replying)

      "The most effective solution for fighting spam is NOT legal; it is also not honeypots, or open server bans. It's community action."

      The honeypot IS a community action. Right now the percentage of the community doing them is very small. The Moscow honeypot didn't choose to be spammed: the spammer sent a relay test to the IP. The test was delivered, the relay spam commenced. That should work anywhere that spammers send relay tests. The Moscow honeypot is remarkable for its volume. Even a lower-volume honeypot is worthwhile. Note that with trapped spam in hand you are in a strong position to make a complaint that sticks. If, like in Moscow, you create a web page that illustrates the abuse in real time you have a powerful weapon.

    7. Re:most effective by CoachS · · Score: 1

      I see your point, but I don't have time to sit there and reload some Asian porn site a few hundred times.

      I have been known to call a spammers 800 number to...ummmm...get more information.

      But it comes down to how much I'm willing to let the spammers steal. They've already stolen a little bit of my bandwidth, some of my storage space, my time to open my overfull mailbox and delete their garbage, a little more of my time to add them to our filters or even block their mailhost entirely. I'm not inclined to let them steal even more of my time in a futile attempt to reload their page (which will probably just come out of our ISA cache anyhow) a bunch of times.

      If I thought they really cared I might do it, but I'm not convinced they do. Accordingly the occasional call to their 800 number is about as much protest as I'm willing to invest and I realize that despite the $1 it costs them in actual money it's a mostly symbolic gesture.

      -CoachS-

      --
      Perhaps the world's greatest tragedy is that ignorance is not impotence.
  22. day in the life of a spammer... by Anonymous Coward · · Score: 2, Insightful

    I remember a while back, someone did a story about a day in the life of a script kiddie type person. I think a day in the life of a spammer would be much more educational!

  23. Two spam stories in a day! by cecil36 · · Score: 4, Funny

    We first got a way that can punish spammers that dates back to the 1600's, and now a way that we can trap them. Just think, instead of locking up Bernard Shifman in a damp dungeon in England, we could honeypot his resume, then smear real honey all over Bernie and leave him near an anthill with a bunch of red ants.

  24. ISPs... by Anonymous Coward · · Score: 1, Interesting

    looks like UUNet is at the top of the list... UUNet and prserv/IBM/AT&T are always at the top of my list when it comes to spam in my inbox...

    -switched

  25. shameless plug by JPriest · · Score: 1

    PocoMail is an email program I've been using for a while that has a gret junk mail filter and things like html image loading can be turned off to prevent spammers for sending webbugs (clear images) to track active email accounts, it has other cool features as well but that'd be (-1, Offtipic)

    --
    Saying Java is nice because it works on all OS's is like saying that anal sex is nice because it works on all genders.
  26. Another article about stopping spambots by primetyme · · Score: 4, Informative
    shameless plug

    I posted an article that deals with stopping spambots with common apache tools last week in the apache section of slashdot. hopefully some can find use of it here as well :)

    here's the link directly to the article as well:
    Stopping Spambots II - The Admin Strikes Back

  27. Yup, installed it a couple of weeks ago. by Moderation+abuser · · Score: 2

    Makes quite a difference. I've pointed my trollbox at the report script. My own spamido scripts were OK, but lacked the distributed functionality of Razor.

    --
    Government of the people, by corporate executives, for corporate profits.
  28. make people pay for email! by supernova87a · · Score: 2, Interesting

    Perhaps this has been discussed before, but why not have ISPs levy a per-email-charge so that the real cost of sending these messages is reflected? It's not like it would take a quantum leap in billing technology.

    Let's make it $0.01 per email, which will cost near nothing to the average email user, but for the lousy spammer who sends out 10,000 emails, this will set him back $100.

    People will only change their behavior if it hits them right in the pocket, as soon as they carry out that unwanted behavior. Why should email be free for people to abuse?

    1. Re:make people pay for email! by psycht · · Score: 1

      you know thats not going to go over very well with the public.

    2. Re:make people pay for email! by J'raxis · · Score: 1

      How about just charging people for excessive email usage? More than x messages sent per day, and each message is thereafter charged. Say 50 or 100 messages, then you get charged 5 per message. Your average user will never exceed these limits; in fact I would think only someone engaged in bulkmailing would ever hit 100 messages/day.

      However, billing would be a pain in the ass; SMTP has no built-in authentication. This is why spammers can rape relays in the first place, and why the POP-before-SMTP kludge exists (POP authenticates and caches the IP, so a user can subsequently send via SMTP using the same server).

    3. Re:make people pay for email! by October_30th · · Score: 0
      Yes it is going to go over quite fine when you explain the reason for it.

      I don't know about you but my otherwise relaxed and liberal grandparents would be ready to impose cruel and unusual punishments on the spammers who keep filling their mailbox with crap.

      --
      The owls are not what they seem
    4. Re:make people pay for email! by muck1969 · · Score: 1

      Even if an ISP had a plan where the first 5,000 e-mail you send a month is free, then subsequent e-mail gets charged ... spammers would still find a way to circumvent this (possibly by setting up 200 e-mail accounts and crafting a small program to distribute a common outgoing message).

      --
      m.mmm..myyy ... sssissxxxtthh bbboottle offf mmmmmoouunnnttain ddeeewww.. in thhe pppassst ffffif
    5. Re:make people pay for email! by Halo1 · · Score: 2
      That wouldn't help at all. The reason is that almost all spammers send all their mail through open relays which are located in Asia most of the time. Nowadays, they also often tunnel their smtp connections through open http and socks proxies, so even port 25 blocking/intercepting wouldn't help.

      The only thing your suggestion would do, is increase the cost of complaining to the originating ISP's about spam sent by their customers.

      --
      Donate free food here
    6. Re:make people pay for email! by supernova87a · · Score: 2

      If you told the public that a $0.01 charge per email would reduce spam and lower the costs of ISPs doing business, I think they would accept it.

      I think it would pretty simply eliminate the open relay servers flooding the world with unwanted email -- if they don't pay for what they send, then their emails are rejected.

      Email is surprisingly similar to real mail. We want to receive something, but not get flooded with useless junk. It's a security risk. It's a nuisance. Let's apply models that have worked -- pay for email. Why not?

    7. Re:make people pay for email! by Ziviyr · · Score: 1

      Let's apply models that have worked -- pay for email. Why not?

      Because its alot easier to run up to a mail truck and cram your spam in the back of it in the online rhelm. And hence mainly hit normal people with the typically negligible fees. (Poorly targeted basically, not really worth the effort, or maybe it is, i dunno, I'll shut up now.)

      --

      Someone set us up the bomb, so shine we are!
  29. Move it up a level? by martyb · · Score: 3, Interesting

    Question: If this idea is viable, why don't ISPs implement it, too? For example, if AOL used this technique on a few of its dial-up (or cable) IP addresses, they could potentially make quite an impact. Futher, they could apply this technique across each of their address blocks. They could also rotate through the address block the particular addresses which act as the honeypot.

    Now imagine that AT&T, Earthlink, MSN, and other ISPs implemented this, too, that should put a HUGE DENT in spamming.

    Granted, this would chew up bandwidth on their network, but delivering spam chews it up, too.

    Please, if there are mistakes in this, don't mod me down but instead point out what ISPs COULD DO to make this work. Thanks!

    1. Re:Move it up a level? by bigbadbuccidaddy · · Score: 1

      They could drop a stateful firewall in front of suspected spammers, that behaves much like the technique described, though really just pretending to be the sendmail they're trying to get to. The added benefit is that the only bandwidth used is from spammer to ISP.

  30. Works on the clueless ones, I suppose by damiangerous · · Score: 2

    But any spammer worth his TOSsing will simply salt the list with a known address or two he set up himself to check his spam run.

    1. Re:Works on the clueless ones, I suppose by Anonymous Coward · · Score: 0

      (Brad Spencer replying)

      That's what you'd think, isn't it?

      So far, no. The spammers do show a lot of dumb. Right now the Moscow honeypot has been discussed on /. and still the spammers are trying to relay through it. I have seen spammers do fresh relay tests during a spam run. They must have suspected something was wrong. The relay tests sailed right through (automatic on my honeypot). So they kept spamming. I've not yet seen evidence they use test addresses. Some spammers have stopped trying to use the honeypot: perhaps some of these did figure it out based on spam to their own captive accounts.

      Here's most of a typical relay test:
      Received: from zzzzzz by xx.xx.xx.xx; Thu, 21 Jun 01 23:31 CST
      Received: from aol.com (tusha.cracklecorn.com [65.114.118.209]
      (may be forged)) by xx.xx.xx.xx (8.8.7/8.8.5)
      with SMTP id XAA24767; Thu, 21 Jun 2001 23:30:40 -0500
      Message-Id:
      Date: Fri, 22 Jun 2001 00:36:37 -1600
      From: shmadek56@aol.com
      Subject: 040901
      To: Undisclosed.Recipients@xx.xx.xx.xx
      MIME-Version: 1.0
      Content-Type: text/plain; charset="Windows-1252"
      Content-Transfer-Encoding: 7bit
      X-Priority: 3
      X-MSMail-Priority: Normal
      X-Mailer: Microsoft Outlook Express 5.00.3018.1300
      X-MimeOLE: Produced By Microsoft MimeOLE V5.00.3018.1300

      054053046049049052046049049056046050048057058116 11 71151040970460991140970991071081010991111141100460 99111109058052049050053058057057
      058089101115

      The string of digits is just decimal ascii. I've left off the recipient: in my PMDF software it's not in the header. The bbbaaa... string is the IP of the honeypot, also in decimal ascii. Recognize that string in an incoming email and it's almost certainly a relay test.

  31. Want to stop span? by Anonymous Coward · · Score: 5, Interesting

    Get 1000 /.ers to setup a web page on a simple box they already have or on a free web server... in fact, setup hundreds of pages. Embed in the page every political email address you can find as well as a honeypot one you setup. Set the honeypot one up to forward to the political addresses as well (all of them).

    After senator what's his face gets spammed by 10000+ p04n addresses a day for weeks on end he might take notice.

    1. Re:Want to stop span? by TeddyR · · Score: 2, Insightful

      Years ago a friend of mine used to do something similar: He had a web page that celarly stated the terms which he would accept mail.

      The page had a clearly stated no-spam accepted policy, and that the spam would be reported to the authorities; and in the wording of the policy, he had the email addresses (both semi-private work and public function) for legislators and gov. offices that deal with spam. [with of course abuse@[localhost] ]

      This way if someone was using a harvester to get email addresses, they would end up possibly sending to the legistlators that did not think spam was a problem.. [ in 1997]

      So it was not JUST a honeypot. It did have a function of informing.

      --

      --
      Time is on my side
    2. Re:Want to stop span? by Technik~ · · Score: 1

      The U.S. Senate is obliging and gives out the addresses in a convenient form: U.S. Senate. The U.S. House of Representatives is less so, but others have done the work: CongressMerge Contacting the Congress.

      It wouldn't be difficult to comb The U.S. House of Representatives Locate Representatives' Web Sites Listed by Name for addresses.

    3. Re:Want to stop span? by /tmp · · Score: 2, Insightful

      I might be wrong but I am pretty sure that the spammers know enough not to send their crap to any address that ends in .gov The email spiders they use probably screen it out so that the addresses never get put onto their lists.

      Of course if some unscrupulous person were to set up some fake email addresses in hotmail,yahoo etc etc.. and set them up to forward anything sent to the addresses to the senators email the results might be interesting. especially after using the fake email addresses in a few select newsgroups.

    4. Re:Want to stop span? by Anonymous Coward · · Score: 0

      Well, i recently get spammed with an offering a CD with addresses to spam with.

      One of the 'features' was to excluide domains starting with .mil, .gov, and so.
      Another feature was that all the addressed were checked, probably with the image retrieval technique explained before.

  32. YRO by hendridm · · Score: 1

    > I don't normally complain about this, but why is this story in "Your Rights Online"?

    How about the right not to be harrassed by unsolicited e-mail? Or the right that my children should have to be shielded from pornographic e-mail? Or the right for me not to pay for spammers use of my bandwidth? Although I hate making more laws, as we already have enough of them, I feel like I should have these rights.

  33. Anyone ever... by digitalsushi · · Score: 5, Interesting

    anyone ever responded to a spam pretending to be interested in the product? I get about a 20% turnaround on "serious inquiries". If I am using a real email address and look like a real customer, and they arent even writing back to me... they must be spamming several times what they could "legitimately" handle.

    --
    slashdot: where everyone yells sarcastic metaphors to themselves to understand the issue
  34. Having looked over DCC by Moderation+abuser · · Score: 2

    It looks like it's designed to integrate quite well with sendmail while Vipuls Razor is easier to plug and play with Procmail.

    Vipuls Razor looks easier to install and get running, but DCC might be more effective for high capacity sites.

    Two slightly different approaches, Vipuls Razor is Perl based and DCC is written in C. How's about a common data format, common databases and servers?

    --
    Government of the people, by corporate executives, for corporate profits.
  35. Client with a similar problem. by Anonymous Coward · · Score: 1, Interesting

    I have a client (in the porn biz) who has a similar problem.

    From aaa@hisdomain.net to zzzzz651@hisdomain.net, over 700,000 seperate unique names that someone had put up for the harvesters to find/get. When I called the FTC about it, and talked to the anti-spam department, they had not heard about such activities.

    His windows NT box would crash, and if the mail was allowed to follow the normal 'accept the message, then try to bounce it', his little 'old T1 would be saturated. FreeBSD didn't crash, but had over 200 sendmail connections when it took over for NT, and now sees 35 connections at any one time.

    Sounds like someone has it out for you, and is willing to allow the spammers to create the DOS attack. If you are lucky, abandoning the domain that is getting the spam means your problem will go away.

  36. Re:The best way to fight spam... by Anonymous Coward · · Score: 0

    mmmm... balls.

    -linuxchik

  37. It's for the Children! by eth1 · · Score: 4, Funny

    Maybe we can capitalize on the It's For The Children idiocy that seems so prevalant in government:

    1) Have your 14-year-old kid set up and email account somewhere.

    2) Help him/her write an innocent letter to your representative complaining about the inappropriate spam s/he is recieving.

    3) Watch them trip over themselves to Save The Children =P

    1. Re:It's for the Children! by October_30th · · Score: 0

      That's not actually a bad idea. Check out the earlier AC post about cellphone spam to kids in Europe.

      --
      The owls are not what they seem
    2. Re:It's for the Children! by DavidTC · · Score: 2, Insightful
      That is actually a horrible idea. Well intentioned, but horrible. It's been gone over in the newsgroups to death.

      You know why? It's entirely likely that spam would become 'legal', except pornographic spam. The second this whole thing started, the DMA will leap in about all the evil pornographers, the newspapers and 'parent groups' would have a field day about 'smut', and we'd end up worse off than we are now, because, while we'd stop getting prono spams, we'd end up get more of other kinds, because they're magically 'legit'.

      OTOH, it's already illegal to distribute pornographic materials to children, so if you want to have spammers who do it locked up, you have pretty good grounds to do so.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    3. Re:It's for the Children! by Ldir · · Score: 3, Interesting
      I actually had this happen to my 11-year-old. When I first tried to set up an @home account for him, his name (first.last) was already in use so I used another variant. With the disintegration of @home, their customers are moving to new ISPs. In the process, we discovered that my son's name had become available, both at @home and at our new ISP.

      We switched his account to the first.last format, and he immediately started receiving lots of spam - including porn - meant for the previous user. My wife was horrified, and wouldn't let him check e-mail until she screened it first. Once we moved entirely off of @home, the problem went away ... for now.

  38. ISPs need to do more... by digitalsushi · · Score: 2, Interesting

    replying to this article as an isp with about 12k email accounts, I'd like to point out that the biggest thing holding an ISP back from implementing large global spam blocking routines is the fear of dropping more than zero legitimate emails. It's like that old legal thought, "better to let 10 guilty men go free than to jail 1 innocent man". If I blocked an email inviting someone's grampa to the family reunion and killed 500 pr0n spams, and found out about it, I'd feel miserable for days. (Not that such a ruleset would be that likely to trigger for both- if it did I'd prolly end up with a giant R branded to my forehead for "regex")

    --
    slashdot: where everyone yells sarcastic metaphors to themselves to understand the issue
    1. Re:ISPs need to do more... by Masem · · Score: 2
      What an ISP should do is not necessary block spam, but to simply add a header (something that should be agreed on) like "X-Possible-Spam: Yes", then instruct the end users that they can choose to ignore the header together, use the header to filter the mail into the right places, or simply refuse to accept the header altogether. Of course, in such instructions, a big blazing notificiation that "You may lose legitimate email by setting this option" for the last choice would be necessary else face a lawsuit. Or, even more detailed, use something like "X-Spam-Level: (number)" where a level of 0 is nothing that looks like spam, while some higher number, say 5, are perfect matches for known spam messages. Intermediate levels may or may not be spam. Of course, I don't believe that the GUI mail clients can do 'math' on the headers for filters, but the idea is there.

      Basically, this doesn't block the delivery of any message to the end-user but gives the end user of filtering out spam if they desire. However, this puts the burden on the ISP to actually do such filtering, and unless one has a mail client with CPU cycles to spare, that might be hard to do. However, given what the averge person knows on email filtering, this might not seem unreasonable for an ISP to impliment to keep & gain customers. Of course, a key part of this is that there needs to be agreements on what format to take such that users that swap ISPs don't have to reconfigure their clients to use a different filtering system.

      --
      "Pinky, you've left the lens cap of your mind on again." - P&TB
      "I can see my house from here!" - ST:
    2. Re:ISPs need to do more... by CritterNYC · · Score: 3, Interesting

      What about the bounce message? When you use a good open relay blocking list (like ordb, my favorite), your mail server refuses to let the offending server send the message. The offending server reports back to the sender that the message did not go through. So, if Aunt Alice is sending out the message to Grandpa about the family reunion and receives a message back that the message couldn't be delivered... she'd just call him. The only really bad anti-spam technique is filtering that just discards messages. The sender doesn't know it wasn't delievered. With blacklists, the sender knows.

    3. Re:ISPs need to do more... by ehintz · · Score: 2
      So, if Aunt Alice is sending out the message to Grandpa about the family reunion and receives a message back that the message couldn't be delivered... she'd just call him.
      Problem is, most endusers are far too daft for this. They get the bounce message, and because they're deathly afraid of these crazy machines, they read the message which very clearly says "We thought this was spam so we bounced it, call our customer service line at 800 555 1234 if we made a mistake"; then they turn around and ask their local guru "why did this bounce and what should I do"? And the local guru says, "Well, it looks like they thought this was spam so they bounced it, you should probably call their customer service line at 800 555 1234 and tell them they made a mistake". The problem here is that the boneheads with no guru will stumble off to the living room for a refreshing episode of "Everybody Loves Raymond" and gramps won't get to the reunion.
      --
      ehintz
    4. Re:ISPs need to do more... by Anonymous Coward · · Score: 0
      If you do that, the spammer knows it's messages are being blocked, so can adapt the messages until they get accepted.

      AOL has been dropping email on the floor for years. Trouble is, they aren't very good at determining whether it's spam before they do it...

    5. Re:ISPs need to do more... by castanaveras · · Score: 1
      You're pretty much exactly describing spamassassin. It has a powerful set of heuristic rules like, does the subject contain !!! or $$$, does the body contain spammish phrases like 'multi-level marketing', did the message get sent through an open relay listed in ordb or one of the other black hole lists, etc.

      Check it out at http://spamassassin.sourceforge.net

    6. Re:ISPs need to do more... by Anonymous Coward · · Score: 0

      My own ISP (XMission, one of the best ISP's in the country IMHO) does just that. They have their own Exim mail filter and use ORBS and other blacklists, and any email that looks like spam gets tagged with "X-RBL-Warning:" or a similar header. Then they provide a web page where their users can set up their own filters, with clear instructions, so users can simply tell it "send all mail with an X-RBL-Warning header to /dev/null".

      Of course, I am not the average user. I've set up a procmail filter to dump tagged messages to /dev/null, then run through my own set of rules, followed by SpamBouncer, and anything that Exim didn't catch but my own filters did gets cc'ed to spam@xmission.com so they can update their filters.

  39. A simple community-based solution. by Anonymous Coward · · Score: 0

    If everyone posted their spam-sender lists on their web pages, then the spammers would be harvesting their own email addresses. While this wouldn't do anything about the disposable addresses, it'd do something about the people providing said addresses.

  40. Checksumming -- defeatable? by fm6 · · Score: 3, Interesting

    Checksumming strikes me as very easy to defeat. Just have the mailer append a random string to each message body. I've noticed most spam already does this with subject headers. Am I missing something?

    1. Re:Checksumming -- defeatable? by zsmooth · · Score: 4, Informative

      Am I missing something?

      Yes. The DCC page states that they use a 'fuzzy' checksumming algorithm that doesn't just checksum the whole message, and that the algorithm is evolving as spam evolves.

    2. Re:Checksumming -- defeatable? by Anonymous Coward · · Score: 0

      Checksumming strikes me as very easy to defeat. Just have the mailer append a random string to each message body. I've noticed most spam already does this with subject headers. Am I missing something ?

      Indeed you are. Spammers like to use the bcc: header to generate multiple copies at someone elses system, saving themselves bandwidth (and making themselves less detectable at source).
    3. Re:Checksumming -- defeatable? by AnotherBlackHat · · Score: 3, Interesting
      Checksumming strikes me as very easy to defeat.


      It is.
      A rock will let you enter a locked car, but you still lock your car.
      A filter doesn't need to be 100% effective to be useful,
      and it's not likely that spammers will care until this kind of thing is guarding more than 50% of mailboxes.

      The random string is more likely a tag to find out who responded than an attempt to bypass filtering.

      -- Is a "no soliciting" sign spam?
    4. Re:Checksumming -- defeatable? by Amoeba+Protozoa · · Score: 2, Redundant
      Yes. The DCC page states that they use a 'fuzzy' checksumming algorithm that doesn't just checksum the whole message, and that the algorithm is evolving as spam evolves.

      I cannot speak to what approach DCC uses, but razor only picks pieces of a message it believes to be static when computing its SHA1 hash. In the very near future, razor is going to implement Nilsimsa hashes which are 'fuzzy' and should be able to detect everything from spam with minor differentials to mutating e-mail viruses.

      Combined with the new razor trust system, razor is going to be quite the tool; and when used in conjunction with SpamAssassin we'll have quite the arsenal to battle unwanted spam.

  41. Hmmm by NiftyNews · · Score: 4, Insightful

    This isn't flamebait, but what is the point of doing all of this?

    So now the spammers have a lot of worthless addresses. Well let's think about that for a minute. Spam is built around a theory that next-to-no-one will reply anyway, so that doesn't matter much. Spammers also rarely pay for their own bandwidth, choosing instead to spoof unsecure machines to do their dirtywork. So in the long run, you only end up giving them more worthless addresses that creates more wasted bandwidth, neither of which really harms the people you are attempting to target.

    1. Re:Hmmm by pjrc · · Score: 2
      This isn't flamebait, but what is the point of doing all of this?

      So now the spammers have a lot of worthless addresses. I believe the point is/was to trick the spammers into wasting their time sending out emails to a server that they believed would relay them, but in fact was not.

      This concept is a separate tactic from hosting pages filled with bogus addresses intended to "poison" the spammers lists.

  42. The solution is not legislative! by warpSpeed · · Score: 3, Insightful

    We do not need more laws "protecting" us! What we really need is a easy to use universal email crypto standard where everyone will sign thier email. Any mail not signed is immediatly suspect. Any keys you do not recognize are suspect.

    Standard crypto would serve us much better then any new law (set of laws) and the possible abusive applications of said law(s). We would surly end up with all sorts of lawful and awful unintended consequences as a result af anything that is generated by any government.

    ~Sean

    1. Re:The solution is not legislative! by DavidTC · · Score: 1

      So...what's stopping spammers from signing their spam?

      --
      If corporations are people, aren't stockholders guilty of slavery?
    2. Re:The solution is not legislative! by warpSpeed · · Score: 1

      It will be difficult for spammers to fake a known keys from a friend, relative, or some other "known" person or entitiy.

      If I get a signed email, but I do not recognise the key, I will be suspisious, and may just junk it. Once signing emails is ubiquitous it will be more difficult for spammers to hide in the dark corners of the Internet. Not imposible, but more difficult. If you make it difficult enought the cost of spamming for these jerks goes up, and will result in less spam.

      ~Sean

    3. Re:The solution is not legislative! by axlrosen · · Score: 1

      I don't see how signatures or encryption will solve anything.

      If you junk all mail that is signed by keys you don't recognize, you could just as easily junk all mail with a From address that you don't recognize. It's unlikely that a spammer will forge their From address so that the message appears to be from your Aunt Edna, so the signing really doesn't buy you anything. The problem is (1) it's a hassle to maintain a list of all your friends that are allowed to send you mail, and (2) sometimes you want to recieve mail from people you don't know, e.g. if you want them to be able to respond to a posting or web site notice or something. It's this unsolicited non-commercial mail that you want to get through that makes this hard.

    4. Re:The solution is not legislative! by Anonymous Coward · · Score: 0

      Here's my idea that should even work with the existing SMTP setup we have today. Feel free to use it and expand upon it.

      Instead of using your usual address as the envelope sender, do this instead. Write your Message-ID out to a file. Sign it. Rip off the PGP headers and take the armored text, then join the lines somehow (I suggest turning a newline into a _). Make _THAT_ your envelope header.

      MAIL FROM:<big-long-mess-here@example.com>

      Now then, on the receiving side, they can do a few things with it. If the MTA is relatively stupid, it'll pass it through as usual and the user's mailer can do the verification on it. If the MTA is smart, however, it can do the check during the MAIL phase and decide whether to accept/reject right there!

      On the recipient's side, you have to take that big-long-mess, turn the _s back into newlines, put back the usual PGP/GPG headers, then verify it. If the signature matches someone you trust, then take that into account. Otherwise, see if there's a path back to this key from one of yours.

      If done properly, this would have the side effect of getting many more people to generate PGP keys and spread them around with the people they know.

      Oh yeah, you have to make sure the message-id is actually the one that's signed into the sender.
      You also have to figure out some way to deal with bounces. But this should get you started.

  43. They ain't that stupid... by J'raxis · · Score: 1

    Often I see it encoded, such as /image.png?5f7a97d66d9aec0e1582c15578ac5815. I think they know otherwise I can do this, by hand:

    GET /image.png?uselessaddr1@hotmail.com
    GET /image.png?uselessaddr2@hotmail.com
    GET /image.png?uselessaddr3@hotmail.com
    GET /image.png?junk-in-ur-db@excite.com
    GET /image.png?hahah@u.spamming.ass
    GET /image.png?XXXXXXXXXXXXXXXXXXXXXXXXXXXX.... DID I BREAK SOMETHING? AW...

    1. Re:They ain't that stupid... by Tackhead · · Score: 2
      > Often I see it encoded, such as /image.png?5f7a97d66d9aec0e1582c15578ac5815. I think they know otherwise I can do this, by hand:
      >GET /image.png?uselessaddr1@hotmail.com

      That's when you reverse-engineer the URL. If it's for beastiality or incest pr0n (yeah, we all know what Dallas-Ft. Worth spammer I'm talking about), you then punch in some URLs that "validate" some addresses at fbi.gov ;-)

    2. Re:They ain't that stupid... by J'raxis · · Score: 1

      Well, it could be an ID of an address already in the database, which means you cannot add addresses, per se. My example there was a rather obvious MD5 checksum, but they could conceivably have a database full of email addresses, and the query string is merely an index number.

    3. Re:They ain't that stupid... by FyRE666 · · Score: 1

      I had one recently that included a form, just in case I needed to order some crap goods in a hurry! So I wrote a little piece of javascript that filled the necessary fields with random characters (with @ signs for the email addresses) and posted it from a second frame, then looped. I left this going for the rest of the day, so hopefully the spammer's customer was pleasantly surprised by the 1000's of requests for more info!

      Maybe I should write a server-side script where one can enter the name and type of required fields for a spammers form. Then the cgi could generate the necessary javascript to keep on sending it nice and quickly... hmm...

    4. Re:They ain't that stupid... by Anonymous Coward · · Score: 0

      In apache I can use a ForceType directive and use dictionary names, girls names anything...

      /images/mary-does-jane-hardcore.gif
      /images/mar y-does-sarah-hardcore.gif
      /images/mary-does-kate- hardcore.gif

      [ repeat times 30 million ]

  44. Government Crack Down? by royalblue_tom · · Score: 0

    I can't see this happening while the Direct Marketing Association is lobbying (read bribing) the government.

  45. SpamAssassin! by mr.nicholas · · Score: 5, Informative
    I guess I have to throw in my $0.02 here. Instead of relying on a single services or technique for stopping SPAM, try something heuristic that combines the best of multiple worlds: SpamAssassin, for example.

    It uses a weighted score that derives it's values from a variety of sources including Razor and various Black Hole Lists.

    The type of heuristics are along the lines of:

    SPAM: -------------------- Start SpamAssassin results ----------------------
    SPAM: This mail is probably spam. The original message has been altered
    SPAM: so you can recognise or block similar unwanted mail in future.
    SPAM: See http://spamassassin.org/tag/ for more details.
    SPAM:
    SPAM: Content analysis details: (12.24 hits, 5 required)
    SPAM: Hit! (1 point) From: contains numbers mixed in with letters
    SPAM: Hit! (1.2 points) From: does not include a real name
    SPAM: Hit! (1 point) 'Message-Id' was added by a relay (2)
    SPAM: Hit! (1 point) Subject contains lots of white space
    SPAM: Hit! (1 point) BODY: List removal information
    SPAM: Hit! (1.56 points) Contains phrases frequently found in spam
    SPAM: [score: 26, hits: accept credit, credit cards,]
    SPAM: [fill out, for your, more information, our]
    SPAM: [company, phone number, receive further, remove]
    SPAM: [the, reply this, subject line, thank you, the]
    SPAM: [subject, this email, wish receive, word remove,]
    SPAM: [you for, you like, you wish, your]
    SPAM: [email]
    SPAM: Hit! (1 point) spam-phrase score is over 20
    SPAM: Hit! (1 point) Received via a relay in inputs.orbz.org
    SPAM: [RBL check: found 14.54.162.63.inputs.orbz.org.]
    SPAM: Hit! (2 points) Received via a relay in relays.osirusoft.com
    SPAM: [RBL check: found 6.223.155.212.relays.osirusoft.com., type: 127.0.0.9]
    SPAM: Hit! (1.48 points) Subject contains a unique ID number
    SPAM:
    SPAM: -------------------- End of SpamAssassin results ---------------------

    1. Re:SpamAssassin! by dallen · · Score: 1

      I have not tried spamassassin, but I have been using spambouncer (www.spambouncer.org) for about six weeks with very good results. 7/8 of my spam email has instantly gotten filtered away. It is procmail based and provides a similar user-interface, including an instructive set of headers added to your messages:

      X-SpamBouncer: 1.5 beta (10/07/01)
      X-SBRule: Nimda-A
      X-SBNote: FROM_DAEMON/Listserv
      X-SBPass: Oversize-Leantagged
      X-SBRule: Missing To:
      X-SBPass: No Freemail Filtering
      X-SBClass: Virus

      It also has hooks for RBL/ORBZ/etc. and has the capability to redirect all blocked emails back to the sender, for them to add a password to have it get through to you.

    2. Re:SpamAssassin! by Amoeba+Protozoa · · Score: 2

      I guess I have to throw in my $0.02 here. Instead of relying on a single services or technique for stopping SPAM, try something heuristic that combines the best of multiple worlds: SpamAssassin [spamassassin.org], for example.

      Just for laughes, here's the record SpamAssassin score in one of my spam's:

      SPAM: --- Start SpamAssassin results ---
      SPAM: This mail is probably spam. The original message has been altered
      SPAM: so you can recognise or block similar unwanted mail in future.
      SPAM: See http://spamassassin.org/tag/ for more details.
      SPAM:
      SPAM: Content analysis details: (31.38 hits, 5 required)
      SPAM: Hit! (1 point) From: contains numbers mixed in with letters
      SPAM: Hit! (1.2 points) From: does not include a real name
      SPAM: Hit! (2.37 points) Message-Id generated by a spam tool
      SPAM: Hit! (1.94 points) From: ends in numbers
      SPAM: Hit! (0.9 points) Message-Id is not valid, according to RFC-2822
      SPAM: Hit! (0.01 points) BODY: Asks you to click below
      SPAM: Hit! (1.32 points) BODY: Contains word 'guarantee' in all-caps
      SPAM: Hit! (1.93 points) BODY: Contains a 1-800- number
      SPAM: Hit! (1.2 points) BODY: HTML mail with non-white background
      SPAM: Hit! (4 points) BODY: Uses control sequences inside a URL's hostname
      SPAM: Hit! (1 point) BODY: Link to a URL containing "opt-in" or "opt-out"
      SPAM: Hit! (1.82 points) BODY: Link to a URL containing "remove"
      SPAM: Hit! (1 point) BODY: Image tag with an ID code to identify you
      SPAM: Hit! (1.56 points) Contains phrases frequently found in spam
      SPAM: [score: 20, hits: click here, email address,]
      SPAM: [from future, future mailings, here for,]
      SPAM: [including shipping, offer order, this email,]
      SPAM: [with our, with this, you not, your]
      SPAM: [email]
      SPAM: Hit! (3 points) Listed in Razor, see http://razor.sourceforge.net/
      SPAM: Hit! (1 point) spam-phrase score is over 20
      SPAM: Hit! (3.33 points) HTML-only mail, with no text version
      SPAM: Hit! (1.8 points) No MX records for the From: domain
      SPAM: Hit! (1 point) Received via a relay in orbs.dorkslayers.com
      SPAM: [RBL check: found 11.124.183.200.orbs.dorkslayers.com.]
      SPAM:
      SPAM: --- End of SpamAssassin results ---

      Now I've turned spam into something of a game. I have procmail rules tell me when a new record has come in so I can laugh at how cliché the message is. It's fun. Really.

      The sad thing is that spammers are most likely already using these rules to try and author messages that will sneak in "under the radar" so to speak. I wouldn't be suprised if I start getting messages in pig-latin one day.

      -AP

    3. Re:SpamAssassin! by GSV+NegotiableEthics · · Score: 2
      "My mailbox is clear! How can we thank you, Spam Assassin?"

      Seriously, I downloaded this and it looks like fun to use. I'll definitely give it a go. Thanks for posting this advice.

      Users of Debian unstable can apparently just apt-get install spamassassin. Great stuff, but I'm paranoid enough to want to keep running potato for now.

    4. Re:SpamAssassin! by Kris_J · · Score: 2
      I wouldn't be suprised if I start getting messages in pig-latin one day.
      SPAM: Hit! (2.12 points) BODY: Contains ig-latin pay.
    5. Re:SpamAssassin! by krogoth · · Score: 2

      I want a spamassassing "Worst Spam" contest - yesterday I had one message with 35.5 points (the only changes I made were to reduce the scores of a few rules).

      --

      They that quote Benjamin Franklin on liberty and safety deserve neither.
    6. Re:SpamAssassin! by castanaveras · · Score: 1
      Add the unstable source line to your /etc/apt/sources.list. Then do

      apt-get source spamassassin

      and you'll download the source. cd into the source directory, and then do

      dpkg-buildpackage -rsudo

      and it'll build a deb file for you in the directory containing the source directory.

      Enjoy.

  46. info on spammers by Anonymous Coward · · Score: 0

    is there a site with some info spammers like phone numbers, email address, and such. i would very much like to start or participate in a campaign to bombard spamemrs with phone calls, emails, letters, etc--anything that would totally saturate their time with clearing out the mess it would create. i would be willing, even eager, to place a hundred calls a day (if it involved a toll free number.) i'm spiteful enough to waste my time so hopefully spammers won't waste the time of others.

  47. Web Applications that Require Confirmation by bedouin · · Score: 1

    I setup an account on my mail server just called "spam;" whenever a site like Real.com asks me for an E-Mail address, I give them that. In fact, I don't even remember the password for the account, and I usually have to su to it from root to get the confirmation. Out of sight out of mind.

    1. Re:Web Applications that Require Confirmation by J'raxis · · Score: 2, Interesting

      A better trick: You should create multiple aliases that all point to that account, and use one alias for each transaction. Then you can track down who is doing the spamming.

      spam-real@you.com
      spam-ebay@you.com
      spam-amazo n@you.com
      spam-nytimes@you.com
      &c.

      If, for example, spam-amazon@you.com starts getting spammed two days after you created it, and you only gave this address when you signed up for Amazon, guess who sold or was sloppy with your address?

    2. Re:Web Applications that Require Confirmation by Anonymous Coward · · Score: 0

      That can backfire. Let's say one of them sells it, so you LART them and axe the account. Well, in some cases, these turds WILL keep hammering the account.

      Your syslogs will fill up with messages from sendmail as it tries to bounce them.

      Wait, it gets worse. If you run any secondary mail exchangers, you'll start getting more crap in your mailbox. Here's why.

      1. Spammer runs the MX process backwards to hit the secondaries (which are usually less protected in terms of blocking)

      2. Spammer sends mail to your dead account and uses a phony reply-address to one of your secondary MXs

      3. Your MX hits your main box, which rejects it - "550 user unknown"

      4. Your MX tries to return the mail to the sender, which doesn't exist, so the bounce bounces.

      5. The bounces goes to the sysadmin - that's you, so you get the spam anyway!

      What does this have to do with your post? Well, if you set up *different hosts* for your tagged addresses, you could just slam them into the bitbucket.

      *.tracker.example.com IN MX 5 mybox.example.com.

      Then say ebay sells you out (you@ebay.tracker.example.com). Bitbucket their mail.

      ebay.tracker.example.com IN MX 5 127.0.0.1

      Or whatever. Be creative. Set the MX back to their hosts. It'll make more shit for their sysadmins to clean up, and less for you.

    3. Re:Web Applications that Require Confirmation by Tony+Hoyle · · Score: 2

      No need for multiple accounts, just use '+' instead...

      spam+real@you.com
      spam+ebay@you.com
      etc...

      All get delivered to spam@you.com, but you can check the 'from' to find out who doesn't get your business any more.

  48. Cratered or overloaded dropboxes by ShaunC · · Score: 3, Insightful

    I've occasionally replied to spam posing as a potential customer, usually when I want to know who's really behind a particular spam. I don't hear back from humans very often, either. I doubt it's that the spammer (or his client) doesn't want our "business." In most cases I think it can probably be explained by one of the following,

    a) Spammer sent spam, checked for replies for awhile, then abandoned that dropbox for a fresh one. By the time I replied to his spam, he was no longer checking on that box.

    b) Spammer sent spam, and because everything under the sun was in tune, someone with a clue was reading abuse@ and nuked his dropbox.

    c) Spammer sent spam, got mailbombed with thousands of junk letters and didn't bother to clean the dropbox out. Both Hotmail and Yahoo - from my experience, anyway - will spool new messages for you even when you exceed your storage quota. Those messages won't show in your inbox until you delete some of the existing drek, but they don't bounce either; we could be sending order inquiries to a "full" dropbox that's never cleared.

    Of course, we can always dream about

    d) Spammer sent spam, was visited by a few guys with baseball bats, and was rendered physically unable to reply to our solicitations!

    Shaun

    --
    Thanks to the War on Drugs, it's easier to buy meth than it is to buy cold medicine!
  49. Not Quite So Easy. by BadlandZ · · Score: 3, Interesting
    I'm starting to print out the most scummy spams, Porn etc (Esp pictures) and I'm going to mail them to my Congressmen and Senators.

    How's that going to help if the porn sites are in China? Passing a law won't change it, your Congressman and Senator would have to be willing to support some kind of "punishment" in the form of economic sanctions or something on the country as a whole.... If that... It's not going to happen, not by just passing a law.

    If it were to be stopped by law, it would have to be an INTERNATIONAL law (funny how electrons in cables don't know to carry a passport and stop to check in with the Customs Officer when they cross a border).

    And, EVERY country would have to support the law. Or else the spaming operations would just move to a country that allows it. Good luck getting every country in the world to agree to an international policy just to keep spam out of your inbox.

    Sorry to rant, but it gets on my nerves when ANYONE thinks the USA has some right to make any Internet regulation at all.... because, they are trying to control something that extends way beyond the countrys borders.

    1. Re:Not Quite So Easy. by GSloop · · Score: 1


      How's that going to help if the porn sites are in China? Passing a law won't change it,


      No... I want to attack the MONEY trail. I don't propse attacking the spammer - but the beneficiary of the spam. They're the ones with money, that passes through your country. If you accept credit-cards from banks here in the US, you have to have a way to get that money home. I believe that you'll probably have to have a bank here. If you maintain a presence here for any length of time, I'll be able to get to your bank account.

      And what the heck, if we can all support [yeah right] WIPO, how about some added provisions for SPAM!?

      I understand the grief about the US putting their rules on the rest of the world - I agree mostly. But I'm just trying to attack the profits from spam, and only involving the money trail while here in the US.

      Cheers!

    2. Re:Not Quite So Easy. by marauder404 · · Score: 1

      It's still possible to control something when it happens within borders, though. Look at the EU trying to regulate spam and cookies. Germany has not allowed cookies for some time now. Collection of personal information from children under the age of 13 has been illegal in the USA. Trying to pass legislation to make things work a certain way on the Internet has happened for a while now and this is not new. People can pick on the USA for a lot of things, but this argument is just weak.

  50. Here are some resources by ShaunC · · Score: 3, Informative

    Check out Rokso. This site maintains a database of well known spammers, as well as spam samples, MO's, partners in spam and, yes, personal info for many of the spammers.

    Try going to SPEWS and searching on the IP addresses of any SMTP relays used in the mail. If you find a hit, view the evidence file. It will usually contain information about the sender of the spam, their ISP, and related domains.

    Subscribe to news.admin.net-abuse.email via your news provider of choice, or search the archives at groups.google.com. If you type in some particulars about the spam - for example the domain being advertised, or maybe the email address listed on the whois for that domain - Google will usually bring up some pertinent matches from NANAE. When it's a new spam run, or a new spammer, remember that Google's archive is usually at least 12 hours behind.

    If you don't find anything, or even if you do find something and you're in a sharing mood, post the spam you get to news.admin.net-abuse.sightings and if you've done any research into the spammer, include it at the top of your post.

    Shaun

    --
    Thanks to the War on Drugs, it's easier to buy meth than it is to buy cold medicine!
  51. Careful - violate USPS requlations? by Ldir · · Score: 2
    You should be careful before sending pages of porn to your congress-critters. I don't know the details, but I know there are laws in the U.S. re. snail-mailing porn. Your spammers would probably really enjoy having you in court, possibly even in jail, while they continue to spam porn to the world.

    Just a thought.

    Does anyone know the requlations regarding sending pornographic materials via the US Postal Service?

    1. Re:Careful - violate USPS requlations? by GSloop · · Score: 3, Interesting

      Does anyone know the requlations regarding sending pornographic materials via the US Postal Service?

      Yes, I'd like to know...

      But, I think it would be very NEWSWORTHY for me to get "prosecuted" for sending porn in the mail to my representatives, when government refuses to do anything against the spammer and the beneficiary of the spam for sending it to me in th first place.

      Plus, I think they would have a difficult time making it stick, as it would be the most protected speech. Speech to a representative for political discourse... (Or am I full of it?)

      I would really hate the time spent fighting it, and the expense, but I could really raise the roof if I was able to get it in the press.

      This is rather a cool idea. I might just "push the envelope" to see what a stink I can raise!

      Any suggestions?

      Cheers!

  52. Re:Fight Spam by LordKronos · · Score: 1

    If you read about the purpose of that email address on the FTC's site you will see that while the FTC is aware of the burden/inconvenience of spam on the user and ISP, their primary focus is on identifying trends in illegal activities (ie: get rich quick schemes and other types of fraud).

    While bulk UCE burdens Internet service providers and frustrates their customers, the FTC's main concern with UCE is its widespread use to disseminate false and misleading claims about products and services offered for sale on the Internet. The Commission believes the proliferation of deceptive bulk UCE on the Internet poses a threat to consumer confidence in online commerce and thus views the problem of deception as a significant issue in the debate over UCE.

  53. Even I am educable by Carmody · · Score: 1

    Because if they think the spam is getting through, the spammer ends up wasting a whole lot of time sending spams which don't get delivered. If they realize they've got a honeypot, they move to another relay and start sending spams which do get delivered. Clearly it's better to have a spammer sending mail to nowhere than sending it to everywhere, but no spammer's going to intentionally send mail to nowhere. That's where the trickery comes in.

    Okay, this is the step 2 that I was missing. I assumed that the spammers would just hit every open relay that they could. The above is saying (if I understand correctly) that they will find an open relay, and use it as long as possible, and then when the spam is sent they will say, "A job well done. Now let us go out and find puppies to slay." And thus the honeypot prevents the spam from being sent, and thus they get no responses, and say, "My, sending spam is useless."

    ...which answers my question. Thanks.

    --
    God is real unless declared integer
    1. Re:Even I am educable by minas-beede · · Score: 1

      I don't think you can say with certainty what the spammers will do but they do seem to keep returning to my honeypot (about 2 years old.) Probably some do not now use it but one was still using it as of 2:51 p.m. CST today (the merchant credit card spammer). Right now he isn't using it: there's no way I can know why not.

      I think some spammers have lists of open relays that they have discovered. Before using a relay in a spam run they retest it to see it if it is open. If it tests open they use it. Probably they add to this list periodically either by scanning for open relays (using test messages) or by stealing information from anti-spam open relay blocking services (I can think of at least one other technique they could use.)

      I did have the joy once of watching a heavy spam run hit the honeypot. After about 1 1/2 days relay tests started coming: apparently the spammer knew there was some problem and was checking again. I automatically rcognize many relay tests and automatically deliver them so these sailed right through. Aproximately one day later the spam finally stopped.

      The key to successful honeypot operation is this: deliver realy tests, deliver nothing eles. If spammers get smart and start including their own addresses in the addresses spammed then the spam to their address becomes a realy test and should be delivered. There may be some difficulty in finding their test addresses. I have checked spam runs in the past for duplicate addresses: so far none have been found (I assume the spammer migh reuse the same test address.)

      With few honeypots (as is the case now) the spammers have little reason to even notice them: their effect is in the noise. Get a bunch and the spammers will try to deal with them. Then it will get harder. I predict the anti-spammers will win. Anti spammers outnumber spammers: that's a big advantage. Notice that with honeypots the burden is on the spammer: he has to figure out which "open" relays aren't open. The goal of the honeypot operator is to look exactly like a dumb sysop running an open relay (with the exception that no spam gets delivered.) I've even blackholed IPs just so the spammer can try a different dialup and get in again. The spammer thinks I'M the lame one.

  54. It would be fun... by 2Bits · · Score: 2

    if we can set up a trap and let the email-harvesting bots come in, and the trap sends back a virus to blow the machine up, or something less dramatic like deleting the contents of the hard drive.

    Is this legal? Is this feasible? I'm no expert is email system and scripting.

    1. Re:It would be fun... by cir77787 · · Score: 1

      Feasible, probably.('specially if they're running IIS, you could deliver it Code Red style) Of course, it's only feasible if you want to spend a bunch of time in the slammer. I believe it's illegal to "injure" any computer that you don't own.

  55. I set one up by CaptainSuperBoy · · Score: 2

    Follow my sig into the spam death chamber....

  56. This doesn't have to be your problem. by TheMCP · · Score: 2

    Look, you don't have to make this decision. Install a solution, default it to "off" for all customers, put up a web-form for them to turn it on FOR THEIR INDIVIDUAL ACCOUNT if desired, and send all customers instructions including a full and accurate description of the consequences.

    If they don't want to live with the possibility of not getting their invitation to the family reunion, well, fine, they can live with the spam. If they're willing to risk losing that invitation in order to kill the corresponding 50 spams that they would receive with it, great, they can turn on the solition for themselves and then they have no right to complain if some legitimate email gets lost because, well, YOU WARNED THEM.

  57. You'd be surprised what thye get up to... by grundie · · Score: 2, Interesting

    While I was doing my CS degree I spent my placement year at a small data mining software company. Once we got a request from marketing company based in Estonia asking if we could clean some 'addresses', as their cutomers had a tendancy to deliberately mis-spell their addresses. We found their attempts to hide the company background and extent of their business odd especially the ordinary ISP email address (not their own domain), but never thought any more about it. We asked them for a sample data set of these 'addresses' so we knew what we were dealing with, initially they did not want to hand them over after a while we said if you don't show us the data we are unable to tender for the work. What arrived was a text files containing email addresses along the lines of:
    someone@REMOVETHISdomain.com
    me@SPAMOFFhost. com
    NOSPAMme@isp.net etc.

    Suffice to say we did not tender for the work. What worried me was the fact that they were willing to pay good money (arounf 5,000 sterling) to extract maybe 250,000 email addresses, this goes to show there must be a good incentive to do all this spamming.

  58. Yep, make them pay by bleeeeck · · Score: 2, Informative
    and any earnings they do make won't come close to paying their bandwidth or phone bills.

    You can usually make the top 10 spammers on this list pay between $1 and $10 by clicking their link.

    1. Re:Yep, make them pay by Anonymous Coward · · Score: 0

      Dude, that is fiendish.

      Thank you so much for showing how to do this - I just hit every spammer on the page

      :-)

  59. On AT&T cell phone too... by 2Bits · · Score: 2

    The cell phone that my company provided us has the service from AT&T (that would not be my first choice if I could choose). And I received all kinds of spam pages on the phone every week (it's not as crazy as email spam, but still...)

    Some of them are from AT&T itself (I really can't understand why they spam their own already-service-subscribing customers!). Otheres are from who-knows-whom. Some with messages like "Call this number to make more money", or "Call this number for a free home loan consulting", or some idiotic messages like that.

  60. Danger, Will Robinson, Danger! by Lumber+Cartel+Czar · · Score: 1

    sendmail -bd will always try and deliver, even though no -q flag is set. This setup is extremely dangerous and will play right into the hands of the spammers.

  61. Re:spider traps, Elcomsoft and SPAM by Alioth · · Score: 3, Funny
    Hmmm. Some of you may be interested to know that our favorite "cause celebre" company, Elcomsoft, sells spamming software.

    Their spam-software site is here. Scroll down to the bottom to see the (c) Elcomsoft.

    Of course, the Slashdot editors rejected this story :-)

  62. Force email to come from known sources?! by Bloodwine · · Score: 1

    Unfortunately with any sort of government regulation, we will sacrifice even more freedoms for security.

    However, a simple solution is to legislate that all e-mail must originate from a valid account on a valid domain. Granted this means that all mail server software will have to be updated to handle these checks, but it's a "safer" solution than having the government legislate the e-mails themselves.

    Email software that does not have these checks will be blacklisted from those with the checks. Of course the procedure to be taken off the black list is easy, just update your server and contact the proper authorities and have your server automatically checked and tested to see if it's a compliant mail server.

    This will take away the advantage that spammers have now of not easily being tracked down.

    The only real downside is that people like myself who have mail servers running on broadband/dialup will no longer be able to use them to send out mail (not unless we had a static IP or somesuch).

    Just a thought. I'd prefer that over giving the government an excuse to scan all emails.

    1. Re:Force email to come from known sources?! by Anonymous Coward · · Score: 0

      That freedom states you have the right to say what you want so long as it does not trod on me! Now its MY bandwidth I AM PAYYYYYYING for it. Why in the hell should I PAY to download crap I have NO interest in. That freedom is the freedom to say what you want. It is not the freedom to make me listen to whatever drivel you come up with... This is the same goverment that mandates what gallons per mile my car should get and then proceeds to use more fule in 1 second than I use in a year to make a shuttle go 1 foot... These dudes that are sending the email are skirting the edge of the law already (just read some of those junk e-mails you get...). What makes you think they would give a rats ass about some law...

  63. about legislation by clarkie.mg · · Score: 2

    As many posters wrote, many UCBE emails come from servers outside US and EU, so I don't see how a legislation could help for those cases.

    That doesn't mean nothing can be done, but no solution will make spam disappear instantly.

    --
    Men are born ignorant, not stupid; they are made stupid by education. Bertrand Russel
  64. Re:spider traps, Elcomsoft and SPAM by nathanm · · Score: 2

    That's been common knowledge on /. almost since Dmitry got arrested. Most of the comments were along the lines of: yeah, spammers suck, but getting arrested for talking about Adobe's poor encryption is criminal.

  65. Spam filtering -- dictionary based effort? by swb · · Score: 3, Interesting

    I'm far from a sophisticated programmer, but I can bang out the odd script in Perl and I use procmail.

    I've been actually collecting Spam for an idea that I have -- Spam can be identified by the subject matter based upon the vocabulary. This weekend I hacked out a script that goes through a spam mbox and builds an index of words and two-word phrases.

    I ran it against my main inbox and it generated an entirely different vocabulary than the one generated by my spam mailbox. This leads me to believe that a new mail message could be judged by subject alone to see if contained a lot of spam vocabulary, and if it did its words could get added to the dictionary.

    The virtue of this is that its self-learning -- the more you get, the better it gets at finding them since the spam vocabularly gets even better defined.

    Of course, I haven't worked out the scheme for matching new mail against the dictionary yet (either in a logical sense or an implementation sense), so it may prove much harder than it seems -- but the fact that Spam is spottable in the subject by me just reading it vs normal mail shows me that the vocabulary is significant.

  66. Checksums are fine and dandy until.. by chuckgrosvenor · · Score: 1

    the spammer gets wise to the checksums. Then, all it has to do, is generate a checksum on his spam, monitor the checksum repository, and when the checksum appears, change the spam going out.

    Or better yet, create the spam, run the checksum algorithm (it is open source after all). Then run the spam through an algorithm which changes x amount of words to various synonyms or pads the message so that each successive spam sent generates a unique checksum. Probably wouldn't add that much overhead to the spam bot when doing a mailing. Boy, that would flood the checksum database in no time.

    It's just like an arms war. As long as you try and build a better mouse trap, someone else is building a better mouse.

    1. Re:Checksums are fine and dandy until.. by Colin+Smith · · Score: 2

      Remember that the spam still has to be readable to the end users so they can't chuck in random garbage all over the place.

      The checksum routines can pick parts of a message to checksum, they don't have to do the whole thing, say the 5th and 25th lines of the message so the spammer will have to generate changes all over the whole file.

      The modified spam will end up in the checksum database just like the original spam. The end users will be just as protected.

      The checksum database is transient, the checksums age and are removed.

      What the spammer actually has to do is clean up his mailing lists and remove the poison addresses. Otherwise every time he hits one, the rest of his mail run is wasted, but this means hard work and checking harvested addresses individually. And they have to continue checking them as they harvest them.

      --
      Deleted
    2. Re:Checksums are fine and dandy until.. by Anonymous Coward · · Score: 0

      "Remember that the spam still has to be readable to the end users"

      wow. does that make a difference?

    3. Re:Checksums are fine and dandy until.. by chuckgrosvenor · · Score: 1

      I don't think the checksums are as infalable as you claim. Especially if the code is available to the public. And you don't need to add garbage to the email, you can easily run a filter which changes various adjectives to similar adjectives, etc. without changing the meaning of the message. It's not like most spam is well written to begin with.

      Either way, it's easy enough for the spammer to determine the checksum of the spam without even sending it. The spammer sends out 20,000 spams, changes the mail enough to generate a new checksum, sends out another 20,000. Even if it's 200,000 chances are good that there's not enough people looking at checksums to block every part of the spamming run. If everyone used it, sure that might work.

      What does the spammer care if the email bounces? You make it sound like they're going to get the bounced messages.. They aren't. Most of them use hacked mail servers and open relays anyways. Sure, it wastes some of their time, but I'm sure if they suddenly find 20,000 email addresses on one domain, they're going to treat it as suspect anyways, and not add it.

      Not to mention the effect it has if the domain names aren't safe to use (ie. the domain names used in the poison database refer to a real domain, which now gets hammered with a ton of undeliverable spam). Even if they aren't valid domains, the spammer will most likely have a bogus return address that does point to a valid domain, which in turn floods that domain with the useless bounce messages.

  67. UUNet spam by Pointer80 · · Score: 1

    I've noticed a lot of people complaining about spam originating from UUNet's network.
    I've observed this problem for a few weeks now as well, so I called their abuse group
    and asked them why their dialup pools were not in MAPS DUL (which I use). The
    representative told methat they were moving around their dialup pools and their
    entries in the DUL would be updated shortly.

    Cheers,

    pointer

    --
    [%- PROCESS life -%]
    1. Re:UUNet spam by SpaceLifeForm · · Score: 1

      Quite disingenuous.

      --
      You are being MICROattacked, from various angles, in a SOFT manner.
  68. war dialing by Anonymous Coward · · Score: 0

    why doesn't someone post a list of spammers 1-800 numbers for everyone to war dial. that may help.

  69. you know what this means... by borat · · Score: 1

    Before long they will require us all to register email addresses as @ssa.gov. i've already got mine registered at yahoo and msn but this would just be too much.

    1. Re:you know what this means... by VPN3000 · · Score: 1

      I have to agree whole-heartedly. The only answer to this will be government regulation of email addresses. Just like your street address is determined by the government. Mod me down for telling you something most folks don't want to hear. I am just stating which direction things are going.

    2. Re:you know what this means... by borat · · Score: 0

      I hate it when somebody intelegant posts something that is smart and peranoid at the same time that also points out something i didn't think of myself that goes beyond what i even thought of. that's what i get for reading slashdot while at work!!! i garuntee that as soon as the goverment can make it elegal to have guns that they will starting doing all this type of stuff.

    3. Re:you know what this means... by Ziviyr · · Score: 1

      It seems to me a moderated email network can be built without destroying the old one. It just typically won't take input from the old one.

      --

      Someone set us up the bomb, so shine we are!
  70. It might have been but... by Colin+Smith · · Score: 2

    Who says you have to checksum the entire body of the message?

    You can pick bits of the messages to checksum, say the 5th to the 10th from last line. Exactly the bits the spammer wants you to read.

    --
    Deleted
  71. Re:spider traps, Elcomsoft and SPAM by cyberformer · · Score: 3, Insightful
    Dmitry didn't write the spam software. He simply worked for the company part-time, doing something entirely unrelated.

    It isn't really fair to blame interns who happen to work for [insert name of evil corporation] for the company's possibly unethical behaviour. I doubt that many people here agree with everything their employer's does. (I know I disagree with my employer's decision not to promote me and give me a big fat pay rise...)

  72. Slashdot killed his 486 by Un1v4c · · Score: 1

    "We were /.'ted. This tiny machine, i486DX4/100, handled load well. There are way too many hits for this page from all over the world -- machine isn't ready for this load but I'm surprized how well this simple machine can perform! Ok. But this means that this my honeypot isn't hidden anymore... And I was unaware of /. post, I only noticied greatly increased hit ratio."

    I thought /. informed users that they were about to be hit...?
    God bless the poor little guy and its ISA nic.

    --

    I gave myself to Jesus, but now he never calls
  73. ISP Trying to make money from SPAM filters by fred911 · · Score: 1

    I live in an area with 2 local pops. Booth are local ISP's. There's no cable, ISDN or DSL for the home user. Due to the lack of competition we pay more and receive less.

    Here's their latest program:

    http://www.acsworld.net/images/avas.htm

    They're charging for filtering spam. I can't beleive they have the nerve. Has anyone else seen an ISP trying this crap?

    --
    09 F9 11 02 9D 74 E3 5B - D8 41 56 C5 63 56 88 C0 45 5F E1 04 22 CA 29 C4 93 3F 95 05 2B 79 2A B2
    1. Re:ISP Trying to make money from SPAM filters by shadie · · Score: 1

      Hi !

      Well, i know of a few isp's who also have this service, and let the users pay for them...

      From their site: "The price for the extra mailbox space, web e-mail, web calendar, anti-virus scanning and anti-spam scanning will be an additional $1 per account per 30 day billing cycle"

      OK.. you say it's crap... But do remind that the isp (probably a small one as you stated) Also has to pay for it's (enterprise) Anti-Virus licences, dat update files, extra hard drive space and extra processor load...

      And this goes especially expensive on the anti-virus service part.

      I work at an isp where we have these services, exept for the anti-virus scan.

      But we do the spam scanning for free, as a service to our customers, a thing every isp should do!!

      Regards,

      Bas

      --
      -- Hi! I'm a signature virus. Copy me into your sig file and help me spread
    2. Re:ISP Trying to make money from SPAM filters by SpaceLifeForm · · Score: 1
      Well for $1.00 more per month, and an extra 4MB of mailbox space, it's not too much of a rip off. Though, you think the ISP would do it for free anyway since it would save them bandwidth costs as well. But having to change your e-mail addy to put this in place is curious. But watch out down the road if they want to change the pricing to be on a per spam basis.

      Then things can really get out of control. For instance, do you get to see the spam? If not, how do you know it really existed in the first place? If you get to see it, then how? Do they save it to a file somewhere? Or do they e-mail it to you anyway? (Defeating the purpose) If they say that they save it to a file, and that you can review it (to prove it was blocked), then you have the next problem: The ISP creating the spam themselves, sending it to you to be 'blocked' and then charging you for it!

      --
      You are being MICROattacked, from various angles, in a SOFT manner.
    3. Re:ISP Trying to make money from SPAM filters by Anonymous Coward · · Score: 0

      I haven't seen an ISP doing this, but it sounds exactly like what a phone company started doing a couple of years ago: Privacy+. For a small ($6.95) monthly fee, you can block all incoming calls from people (a.k.a. telemarketers) who don't identify themselves.

      It galled me that they would charge the victims of telemarketers to put an end to junk calls, when we should be suing the perpetrators instead.

      But you have to look at thing from the ISP's perspective too. It takes time and effort to implement good spam filtering, and the worse the spam gets, the more time and effort it's going to take to fight it. One way or another, these costs are going to get passed down to the ISP's customers, whether it's a standard part of the monthly subscription or an optional add-on.

      I like they idea that another poster put forward earlier in the discussion: have the ISPs (at least the major ones and the backbone relays) start charging a per-message fee to the sender of the email. The 'sender' in this case being the owner of the client that opens an SMTP connection. If the owner of the client can't be identified or doesn't have an account with the ISP, the connection is denied. That way, for example, you can't send me email directly from your dial-up connection, but instead you'll have to pass it to your ISP, who will charge it to your account; they will forward it to my ISP, who will charge them collectively for all the mail they forward; and I can pick it up from my ISP.

      If it started costing ISPs (and in some cases, users who didn't even realize they had a mail server running) extra money to forward email, even at just a fraction of a cent per message, it's a safe bet that a lot of those open relays would get cleaned up or shut down in a hurry.

  74. How to put an end to spam on the internet by sfearo · · Score: 1

    I recently published an article that outlines a way to put an end to spam on the internet. Chek it if interested...

    1. Re:How to put an end to spam on the internet by Anonymous Coward · · Score: 0

      I think you're wrong on a few counts here. One,
      I get plenty of spam with no web address, but
      just numbers to call, so associating all of these
      with a web address doesn't necessarily help...

      Two, if said spammer has an 'unlimited' traffic
      hosting account, their ISP foots the bill, and
      you end up doing damage to an innocent (but
      perhaps badly run) ISP.

      Three, your bit about a spammer sending out spams
      saying 'visit microsoft.com'. Misses the point a
      little. If they work out how the system works,
      anyone can forge an 'I got a spam' request...

  75. Distributed Checksum Clearinghouse? by TitusC · · Score: 1

    Wouldn't trying to attribute a checksum to a spam message be difficult? It would only work for messages that are 100% identical. So all a spammer would have to do is include something unique in each email (like 5 random characters at the end of the body?) which I think they're doing now for some spam I've been getting...

  76. How exactly are checksums supposed to work? by evilpaul13 · · Score: 1

    I don't see how someone who writes a script that adds a spam victim's name to an email's subject or body is going to be stopped by comparing a checksum.

    And seeing as ~90% of the spam I get always has some nonsensical letters on the end of the subject, I can't imagine it doing any good. Slightly different content equals a completely different checksum.

  77. Does your email address determine spam volume? by wayne · · Score: 1
    Lately, I've been wonder if the amount of spam you get is related to your email address.

    These lists of "20 million clean email addresses" have to be placed in some order, and I would bet that most spammers don't get through the entire list for every spam. So, if your name appears near the top, you should get a lot more spam than if your name is near the bottom. A lot of spammers seem to sort by either the whole email address, or by the host name.

    So, would aaron@aalig.org going to get a lot more email than zork@zyzzyva.com?

    --
    SPF support for most open source mail servers can be found at libspf2.
  78. Spam Assassin - without a doubt the BEST by helloRockview · · Score: 3, Informative
    A group of colleagues and I have had an email server of our own for almost 7 years now and have always had the same email addresses. Between years of USENET post and webpages with our email addresses on the, our SPAM intake got out of control. In a sampling taken in October of last year, we were getting about 350 pieces of SPAM per day between only *4* people with account on the box.

    We had previously tried a number of anti-spam solutions, including combinations of RBL, ORBS, locally-maintained blacklists and lots of Sendmail hacks.

    We had very little luck until November, when we implemented Spam Assassin on all of our mailboxes. After turning on Spam Assassin, the SPAM seemed to just go away. In the first day alone, we caught over 300 pieces of SPAM with ZERO false-positives with less than 10 pieces of junk making it through to the end user's mailbox. The program is, simply put, amazing.

    It's multi-faceted approach works very well. It uses a combination of simple logical string checking, in addition to things like distributed databases like RBL and Razor.

    The program can also place SPAM's in a dedicated mailbox file so you can see what got rejected. Each piece of rejected mail contains a report that includes the reasons that contributed to the rejection. Each reason has a weighted value that contributes to the final "good" or "bad" disposition. All of this is highly customizeable, but it does work very well out of the box without any tinkering.

    I highly recommend this program. Take the time to sit down and install it on your mail server.

  79. how about DoS to the spammer sponsors? by Anonymous Coward · · Score: 0

    Or any sort of attack on the spam sponsors' e-mail, web, phone, or other legit business contact info? The "weakness" of spam is that it must deliver legitimate, and usually immutable, business information in order to fulfill its marketing needs. With honeypots and data-mining you can even automate the attack process, thereby using the spammers tools back on their sponsors. Socially conscience distributive computing at its best.

  80. I do similar but it can be even more effective. by Colin+Smith · · Score: 2

    Typically the aliases point to my account, but as soon as they abuse the address and start spamming, and most do, I repoint the alias to my Razor trollbox.

    Spam's gone from my box and anyone else using Razor is also protected.

    --
    Deleted
  81. So GIVE Them Feedback by Anonymous Coward · · Score: 0

    OK, so detect those feedback URLs and use a variation of WebPoison. Make up a bunch of email addresses and use them to retrieve those URLs.

    "Gee, I sent out a million emails and got forty million responses..."

  82. I don't care as long as I don't get the mails by Colin+Smith · · Score: 2

    Seriously, I don't particularly care about the bandwidth as long as the mails don't get to my mailbox.

    --
    Deleted
    1. Re:I don't care as long as I don't get the mails by NiftyNews · · Score: 2

      Yeah, but guess who's router is in the middle of all that transmission?

      The one you get your Email and HTTP off of, slowing down your performance slightly as well.

  83. Um, nope by Colin+Smith · · Score: 2

    You're assuming that they checksum the entire message. No need to do that.

    --
    Deleted
    1. Re:Um, nope by TitusC · · Score: 1

      How would you pick a section of the message to checksum that couldn't be changed?

      I would think that headers, body, etc... would all be relatively easy to serialize so that a byte or string of bytes would be sequential for a batch of messages. Voila, checksum is no good.

      I would think that the only thing you could do is to compare messages for "likeness" to other known spam. Say 95% or higher of a match would be flagged as spam? But this would take a lot more analysis per message.

  84. Here's one of the major culprits by Anonymous Coward · · Score: 0

    "www.ombramarketing.com" has been a MAJOR source of spam e-mail. I was getting about 20 messages daily (that originated from completely unique addresses, so I couldn't effectively filter them), that I eventually tied back to them.

    Please feel free to forward them ALL your spam at: contactombra@ombramarketing.com.
    It got me off their list, and gave me a little personal satisfaction as well.
    Put something like "Business Inquiry" in the subject line to get them to read it (just like the tactics they use). Let's increase THEIR cost of doing business.

    Maybe someone can put together a list of major culprits, and we can /. them into re-thinking their corporate strategies. As long as they can spam away at the cost of their time only, nothing will change. If so, I can contribute a few more major culprits to the list (though the one above was the worst for me).

    Sorry to be an "anonymous coward". I can't remember my password and wanted to send this off quickly.

    BTW, my ISP (The Well) charges me for storage used monthly (which includes my .inbox). I'm not changing ISP's, as its not their fault that one spammer picked up my account from somewhere and sold it to every damn spammer around. Obviously I HATE spammers as much as anyone can imagine. I'd like to personally kick the crap out of every one of them, for my direct expenses incurred.

    Vic

  85. telemarketing tricks by Rev.LoveJoy · · Score: 2
    Don't waste your time on the phone and don't allow your anger to get the better of you. Do something quick and constructive as outlined in the Telephone Consumer Protection Act.

    The page you want to read is Junkbusters Telemarketing Headlines.

    A quick how-to to reduce the amount of telemarketing calls you receive. Yes, I have followed these steps. Yes, over time (say, 90 days) they work.

    Cheers,
    -- RLJ

  86. Sendmail for Dummies by Anonymous Coward · · Score: 0

    I think we need a document to configure sendmail "for dummies"... They do have Sendmail for dummies, it's called Postfix. I use it and like it.

  87. Locks and Rocks by fm6 · · Score: 2
    A rock will let you enter a locked car, but you still lock your car.
    Depends on where you park it. Where I live, thieves are nervous about making noise. But some people who live in rough neighborhoods think more in terms of replacing broken windows, and leave their cars conspicuously unlocked.
    A filter doesn't need to be 100% effective to be useful...
    I don't know about you, but I find non-100% spam filters worse than useless. It's not just that they let some spam through -- I can live with that. But I also need to see all the email that I don't consider spam. These include various mass mailings that I opted into, or that are from product support people or others that I need to hear from.

    Yeah, I can tweak the filtering rules -- if my provider will let me. That's still gonna block important email, like when I don't know the exact return address in advance.

    1. Re:Locks and Rocks by AnotherBlackHat · · Score: 2
      I don't know about you, but I find non-100% spam filters worse than useless. It's not just that they let some spam through -- I can live with that. But I also need to see all the email that I don't consider spam.


      I too consider false positives (claiming something is spam that isn't) much worse than false negatives (letting spam through).
      I assume almost everyone does.

      Checksumming, when done right, has an extremely low false positive rate (near 0) which makes it useful in my opinion even if the false negative rate is 90%.

      -- This is not a .sig
    2. Re:Locks and Rocks by fm6 · · Score: 2
      Checksumming, when done right, has an extremely low false positive rate (near 0) which makes it useful in my opinion even if the false negative rate is 90%.
      Well, a service provider might consider a filter worthwhile if it cuts the spam traffic by 10%. An individual user would want a lot more.

      "Close to zero" is pretty vague. How close? We're talking log scale here. I get maybe 10,000 emails a year. Missing more than one of these because of a spam filter false positive would be unacceptable.

      Even that one makes me nervous. Murphy's law dictates that that's the one I'll regret missing. That's what makes me wary of spam filtering. I'd much prefer to see an approach based on improved sender identification.

    3. Re:Locks and Rocks by cduffy · · Score: 2

      Whatever that one is you'd miss would near-certainly be non-unique (ie. a mailing list message that somehow was misclassified as spam). The only other cause is a hash collision, and for a suitably long hash those are tremendously unlikely. For a 128-bit perfect hash, one could have (say) 16 million spams in the database and the chance of a false collision would be one in one in about 2.0*10^32 (for 2**24 spams in the database, the chance of a collision would be 1 in 20282409603651670423947251286016). That's pretty friggin' big.

  88. I like it!! by iphayd · · Score: 1

    Apple and Microsoft should turn on a SMTP honeypot by default on EVERY machine.

    It would be the digital equivalent to the irradiation of Tsetse Flies in Africa. They could access everywhere, but none of the sites would actually relay the mail.

    1. Re:I like it!! by Anonymous Coward · · Score: 0

      (Brad Spencer, lazy, replying)

      I didn't know about the tsetse flies. I thought it was like the same thing done to screw-worm flies in Florida.

      A Perl honeypot has been posted in news.admin.net-abuse.email.

      http://groups.google.com/groups?hl=en&threadm=3C 51 2E93.AAE59663%40tls.msk.ru&rnum=2&prev=/groups%3Fh l%3Den%26q%3Dhoneypot%2Bquestion%26btnG%3DGoogle%2 BSearch%26meta%3Dgroup%253Dnews.admin.net-abuse.*

      There may be bugs but it works for the author.

      P.S. I like how you think. Non-spammers have spammers greatly outnumbered. If there were a huge number of honeypots there would be no way for the spammers to find abusable open relays.

    2. Re:I like it!! by iphayd · · Score: 1

      There was a /. story about the Tsetse flies a week ago.

      Your URL was munged... E-mail the address to me please.

    3. Re:I like it!! by minas-beede · · Score: 1

      It's a Google Groups search for "Honeypot Question" in news.admin.net-abuse.email, then the 22nd article. here's the link again:

  89. RBL at the router level by WyldOne · · Score: 1

    The real problem on why spam is here and why it stays is simple. Money. The ISP's take the money of the spammer just like your money. Only with a spammer they usually have higher bandwidth to spam ya all. That means more money to the ISP. By the time ou get the spam its too late. Lots of sites have paid money to get it to you.

    Now in all fairness most ISP's try to keep up with the flood of ce-mails/calls about spam. However; they are under a deludge to keep up.

    The only real way to block this vermin from our net is to have routers block it at the source. if routers implemented RBl you would see those sites, that insist on harassing the rest of us, slowly getting choked out.

    What the internet needs is a ruler to smack the hands of those delinquent spammers et al.

    --

    make Linux, not Microsoft. sin(beast) = -0.809016994374947424102293417182819
  90. telemarketers was:Re:Since the dot.bomb happend by fanatic · · Score: 2

    My father's trick:

    You say: "Yes that sounds interesting ... Ooops, someone's at the door, hold on..." and then you put the phone down on the table and go back to what you were doing. 5-10 minutes later, go back and hang up the phone.

    --
    "that's not encryption - it's a new perl script that I'm working on..." - from some Matrix parody
  91. Re:Delays with the sendmail-bd: not a problem by Anonymous Coward · · Score: 0

    (Posted by Brad Spencer, more lazy than cowardly)

    Once you see a few relay tests you wil be able to devise automated ways to recognize them. My actual honeypot is a VMS system and is a mail server. Not only do I routinely recognize most relay tests I also routinely separate spam from legitimate email. I take advantage of some of the features of the email software used (PMDF) to do this. I don't recommend mixing a server with a honeypot but it can be done.

    I don't normally get volumes like that of the Moscow honeypot. For instance, in all of today just 162 spam messages have been trapped, for probably 48 recipients each.) I've had long dry spells with no spam at all. somehow they always seem to come back.

  92. Failed how-to link by minas-beede · · Score: 1

    While the how-to link fails the earlier version of the same information can be found at http://fightrelayspam.homestead.com/files/antispam 06122001.htm

    1. Re:Failed how-to link by Anonymous Coward · · Score: 0

      That one is broken too...

  93. Not So Much Danger, Will Robinson. by minas-beede · · Score: 1

    Doesn't this adequately handle the problem? (in /etc/sendmail.cf) # default delivery mode O DeliveryMode=background

  94. Routing by Anonymous Coward · · Score: 0

    Would it really be that difficult for routers to block IPs from some source, on request of destination address? Blocking traffic near it's origin should save some bandwidth.

    Drake

  95. Spider traps good with Teergrubes IF coordinated by billstewart · · Score: 2
    Teergrube is a category of systems designed to "accept" mail from spammers, v e r y s l o w l y , and some of the implementations are designed to hold 10 connections from spammers open simultaneously (you could do a lot more.) Some of them can be run on machines with working SMTP servers, others are a substitute for a SMTP server that you run on some spare machine. If you know who's sending you mail, you can do a variety of things, ranging from notifying your real machine not to accept email from the spammer's IP address, simply holding the connection open (if enough people do that, the spammer's stuck waiting for timeouts instead of sending spam), submitting their address to block lists, or robo-generating complaints to the spammer's ISP, to doing mean nasty ugly things that probably violate your ISP's AUP. Some of the programs (see Raphael's posting encode the IP address of the harvester in the bogus addresses, which is nice for tracking down the real culprits as opposed to just blocking some open relay in Korea.


    Spider traps are good at handing out bogus email addresses. If some of those addresses belong to teergrube machines, anybody who harvests them and then uses them to send spam to the "users" gets stuck in the tar pit for a while. If you're only doing that for your own machines, that's nice, and slows down the amount of spam you get from a given spammer, and maybe lets you track them down, but it's a pretty unfocused attack. The way to make these things really effective is to coordinate a bunch of honeypots with a bunch of spider traps, so a spammer gets totally mired down in a few hundred honeypots at once instead of just one or two. Is anybody running a project like this?


    Running a network of honeypots properly isn't trivial - it helps to keep the list of cooperating honeypots semi-private, because otherwise spamware vendors will start avoiding them, and you need to make sure that every machine on your honeypot list *is* really a honeypot, and not some poor sucker's machine that's suddenly DDOS's by tons of spam because 500 Sugarplums are handing out his address to spammers. If you're going to automate this sort of thing, you should probably require at least confirmation-mail from postmaster@targetdomain.org or possibly a digital signature. One convenient method for coordinating it could be an IRC channel or similar IM server, though you could just use email. An entertaining technique to use would be to have the bogus addresses all belong to domains that you control the MX records for, so you can use DNS to load-balance the spam among machines that have spare cycles for teergrubing (e.g. spammer asks for bogus1.bogusdomain.com, bogus2.widgets.org, bogus3.slashdot.org, etc.) Too bad Napster's dead - most machines running Napster were clients that didn't run their own Port 25 SMTP services, so adding teergrube features to Napster clients wouldn't have interfered with real email, wouldn't have added much bandwidth because it doesn't actually accept messages very fast, and would have made the Napster folks anti-spamming heros. Any other Peer-to-Peer services such as ICQ/Jabber/etc or for that matter IRC clients want to jump in?

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  96. Legal, Feasible, Safe things to do to spammers by billstewart · · Score: 2
    There are lots of mean nasty ugly things you could do to incoming spammers you catch with address bait, but shouldn't, for a variety of reasons that are ethical as well as self-protective. The most critical one is that somebody who knows you run a honeypot on your machine can fake email from you to a victim, causing them or their machine to send email to one of your boobytrapped addresses, tricking you into attacking them, which is bad for both of you. You really don't want to do that.... especially once spammers find out you're running an attack machine, because some of them will try to get revenge - especially if lots of people are running them.

    But there are still entertaining things you can do that are within the bounds of propriety, legality, and sometimes even good taste.

    • You can trace the IP addresses of the spammers, and traceroute to find their ISPs. You can autogenerate complaints, though it's probably worth waiting until you have a couple of messages to be sure it's not just a misdirected email message (or you can hand-inspect them to be sure they're really spam.)
    • You can block all email from their IP addresses to your real users - especially convenient if you're running your spam-trapping on the same machine as your real email, or at least on a cooperating machine. (Be careful, and you may want to whitelist some machines, such as big email providers, and return good error messages so that any mail from real people can be resent using some other method or simply at a different time.)
    • You can run Teergrube which doesn't do anything destructive to the spammer, but responds v.... e..... r.... y.... s.... l.... o..... w..... l.... y.... , tying up resources that could otherwise be used to annoy other people.
    • You can run open relay checks on their machines - even though the RBLs of the world have cut down on real providers allowing open relays, there are lots of misconfigured open relay machines that spammers abuse. You can send them to the RBL people so they get cut off, but you can also quickly cut them off from your real email servers.
    • If the machine does have an open relay, and you've got a few thousand close friends running teergrube, you could use the relay to drop each of them a note. Do be careful not to cause infinite loops when you do this, though... Exponential growth is easier to cause than to recover from, and you don't want to shut down all the teergrubes you know.
    • (Also, be careful not to engage in defensive action for every message from a given source - you only need to traceroute and relay-check a given address once....)
    • Spam from China gets the additional letter to the spammer and also the ISP about "Dear Postmaster@btamail.net.cn, I'm having trouble reaching your subscriber AmyWilson@btamail.net.cn. Please let her know that the arms shipment will arrive next Thursday. Long live Falun Gong!" :-)
    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  97. Router block by ricardo2c · · Score: 1

    What-if situation:
    1)Spammer tries do relay
    2)Host detects spammer
    3)Host starts sending messages to all IPs in traceroute, asking to block that from:spammer+to:myself+port:25 combination
    4)Spammer blocked

    Is this THAT difficult to implement? A firewalling-on-demand? Maybe I'm missing the security issue here...
    (if I'm just wasting a patent possibility, let me know)
    If this is possible, wouldn't it save lot's of bandwidth? Any thoughts?

    --
    --Drake 2c
  98. False Positives vs. political/legislative solution by billstewart · · Score: 2
    Suppose you get email saying

    From: clueless-open-relay@btamail.net.cn
    Subject: Make Money Fast

    Send your $31337 to Not-networkguru@Not-sloop.net
    and I'll pay you 50% interest by Tuesday if you follow my 31337 PlanZ.
    followed by the payment address for Not-networkguru@Not-sloop.net. Your proposed legislative solution, while well-meaning, makes it easy to cause lots of problems for someone by forging spam from them - a few hundred thousand emails from that cybercafe near their house through an open mail relay in Korea leading to a few thousand people each going to their nearest small claims court to collect their $200 nearly-automatic bounty, and most of them costing money to contest in court, especially in courts not near the framed-non-spammer's home. Big companies have an easier time defending themselves against this than individuals, but many anti-spam activists are good targets. And defending yourself means subpoenaing that open relay in Korea, and the ISPs supporting that relay - it just isn't practical.

    Meanwhile, arranging payment is simply not hard. The most convenient payment mechanisms are credit cards and paypal, and sometimes you can get those providers to block payments to the spammer, but it's usually difficult to block *everything* - at best you can block the payments that *you* made to them. So they probably collect at least some money through their storefront check cashing / money laundering store in Taiwan, and *you* can't trace them easily.

    The legislative problems that are easier to solve are the anti-hacking laws, which make it somewhat harder to track down spammers and much harder to stop them. While obviously you don't want some cracker to break into your machine, send themselves backdated spam claiming to be from you, and use that as their get-out-of-jail-free card, there may still be some middle ground that makes self-defense actions legal.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  99. How much information do Overture's customers get? by billstewart · · Score: 2
    On the surface, that looks like fun - Overture's customers bid for how much they'll pay per click-through, all of them get listed on Overture's own search engine, and the top three bidders get listed on the commercial search engines. Overture's site says they do carefully tuned techniques to prevent multiple clickthroughs by the same person (they've figured out that attack already), but that doesn't prevent single clickthroughs from a quarter million slashdot users, and that'd be a fun and community-minded thing to do.

    My question, though, is how much information their customers get from my click-through. I assume that the long ugly URLs they generate encode the search terms, and maybe my IP address, and that their customers' web pages will use their favorite combinations of cookies, web bugs, and other images to find out more. But can they get my email address? If I'm checking out most sites that advertise there, I'm not too worried, but obviously clicking through to a spammer's web page has some inherent dangers. Should I be checking them out using the anonymizer, or is it ok to use my work network connection, which goes through a load-balancer-selected proxy server which probably looks a bit less like me?

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  100. It's somewhat amusing when spammers leaves holes by caferace · · Score: 2
    highspeedmailer.com HAS to be one of the worst cuplrits out there. Amusingly enough, they leave web-based spam stats on their mail gateways open to the public.

    mailer1
    mailer2
    ....etc. I stopped at looking at mailer10. Nice of them to show off their spamming efforts, I suppose. It'd be even nicer if their upstream provider would pay some damn attention to complaints.

  101. Troll - Outlook doesn't do that by Anonymous Coward · · Score: 0

    Look at the Subject lines, don't run it in preview mode.

  102. Professional vs. Newbie spammers. by billstewart · · Score: 2
    Some spammers are professionals - they've figured out how to get enough responses to continue making money. Sometimes that's Ponzi schemes, sometimes it's porn spam, but often it's selling Spamware Kits to newbie spammers who think that they too can Make Money Fast. Newbie spammers are like the dumber end of script kiddies - they're going to run whatever formulas their spamware kits give them and then be disappointed that they didn't Make Money Fast, unless they actually happened to do so, but they're not doing any scientific measurement about what's going on. The important thing for them is to make their scam fail and hope they drop out, disappointed that their several-hundred-dollar investment flopped. Ideally, it's nice to also scare them off and have their ISP charge them a hefty Throwing-Spammers-Out fee and inflated lawyers' costs so they go away and never come back again and tell all their remaining friends how bummed they were, but it doesn't matter much.

    The harder problems are professional spammers, and spamware kit makers. Professionals do some level of measurement, and busting their numbers is important. If they think they've used up their supply of 42 million email addresses and 14000 open relays, great. If you're doing a fake open relay, you want them to think it's succeeding, so they keep using it instead of stopping, though that may not be very effective if they're doing good measurement (e.g. sending a mixture of test addresses along with spam victims.) But they're especially the ones you want to kill off, hunt down, and feed to wolves.

    And then there are the spamware vendors. You want them to *think* their warez work, so they can be completely hosed without knowing it, but if you can get the spammers who buy their product to sue them for selling defective spamware, that'd be fun too :-)


    Can you set up your honeypot to detect spamware versions, and post to Usenet alt.make.money.fast and freebie web pages about how terribly disappointed you are that Spambozo 3.2 didn't work for you and was eaten alive by anti-spammers and caused your PC to halt and catch fire, your girlfriend to leave you, and your dog to run away from home? (Surely you can find some way to promote that on a search engine? :-) Some of the products include self-promotion in their email headers, but by now probably most of them have figured out that it's an easy target for filters.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
    1. Re:Professional vs. Newbie spammers. by minas-beede · · Score: 1

      You asked: "Can you set up your honeypot to detect spamware versions, and post to Usenet alt.make.money.fast and freebie web pages about how terribly disappointed you are that Spambozo 3.2 didn't work for you and was eaten alive by anti-spammers and caused your PC to halt and catch fire, your from home? (Surely you can find some way to promote include self-promotion in their email headers, but by now probably most of them have figured out that it's an easy target for filters."

      Probably not. I think I can get about the same effect by contacting the spammers customer (the guy who hired the spammer to send his message) and telling him that the spammer used relay spam and that I trapped a large number (unspecified) of the spams. The customer paid for undelivered messages.

      That should lead to an interesting conversation between the spammer and the person who paid. Ultimately it may lead to greater care by the spammer (like putting captive addresses in the list he spams) but the spammer's job has been made more complex. I believe that the anti-spam community will be smart enough to defeat the spammers even if they do start sending spam to themselves (once you know their test addresses just deliver to them whenever they appear.)

  103. Re:Fight Spam by Anonymous Coward · · Score: 0

    If you send it to someone like your congressman, YOU are spamming. If you do it often enough, I'm sure they will have a word or two with your ISP.

    And your point is? If it were illegal, there would be a law against it. So SPAMing is a perfectly legitmate to send to lawmakers. If it wasn't it would be illegal, and I would not have to deal with it.

  104. Pobox.com marks suspected Spam in Subject: by billstewart · · Score: 2
    I use pobox.com as a mail forwarding service, so mail to myname@pobox.com gets forwarded to my current ISP. One of their spam handling services is to mark suspected spam with a rating
    Subject: [ spam 7.43/10.00 -- pobox.com ] original subject
    if it exceeds whatever threshhold you set. They've gotten better - a large amount of my obvious spam gets marked 10.00/10.00, and I've seen so few false positives with that rating that I'm now discarding the 10's automatically. Lower ratings are sometimes wrong, especially for mail that someone's forwarded to a real mailing list I'm on, especially if the mailing list messages have a how-to-unsubscribe footer, but probably 95% of the stuff that's tagged as some kind of spam is spam, and the 10s are all spam.

    Also, as an ISP, you usually know addresses at your site that aren't real users (but might be from spambait you've left around), and can safely discard any email messages matching those messages and those IP addresses.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  105. Doesn't need legislation by billstewart · · Score: 2

    You can implement it in software - set up mail filters so mail from bogus domains gets bounced. if you don't want to do it yourself (either to avoid the configuration and maintenance, or to get the spam tossed on your server instead of after downloading), find an ISP or email filtering/forwarding service that will. Pobox.com does a good job of spam-filtering, and a number of ISPs have various aggressive options, and then there are the spamcops and brightmails of the world that run services.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  106. Important missing information by darkonc · · Score: 2
    The article pointed to forgot to mention that one thing you need to do is make sure to set the Queue Load Average to 0.
    # load average at which we just queue messages
    O QueueLA=0
    on in the .cf file, or '-OQueueLA=0' on the command line. If you don't do this, sendmail will (usually) not queue your email and you WILL be an active open relay.
    This can also be set in an mc file as:
    define(`confQUEUE_LA', `0')dnl
    (For RedHat users -- remember to delete the leading dnl if you start with the redhat.mc file).

    One .mc configuration snipit that might be usefull would be:


    define(`confTO_QUEUEWARN', `4000h')dnl
    define(`confTO_QUEUERETURN', `5000d')dnl
    define(`confQUEUE_LA', `0')dnl
    define(`SMART_HOST', `nohost.nosuch.domain')dnl
    define(`QUEUE_DIR',`/var/spool/devnull')dnl
    define(`confDAEMON_OPTIONS',`addr=external.inter fa ce.ip.addr');

    This'll mean that you won't be generating (useless) non-delivery messages for email (spam) less than 10 years old, and any attempt to forward queued spam with an ETRN will fail. It also puts this outoging mail in a segregated queue directory.
    for the last define line, 'external.interface.ip' should be replaced with the IP address of the interface where you'll be running the honeypot.

    If you put this into a new mc file (say honeypot.mc), and use it to build honeypot.cf, then you can run a spare sendmail that only accepts network connections... (and trashes them)

    /usr/honeypot/sendmail -bd -C/etc/honeypot.cf -ODaemonPortPotions=Addr=$external_IP_address

    This does, however, run into one reall nasty bug in the sendmail config... The sendmail.pid filename is hardwired into sendmail... (that's why I use the path /usr/honeypot/sendmail). You have to recompile (or patch) the sendmail binary so that it doesn't use /var/run/sendmail.pid).

    According to the sendmail book, this is done with
    ENVDEF = -D_PATH_SENDMAILPID=\"/var/spool/honeymail.pid\" in the makefile.

    (guh!)
    (( You can, of course, always do a hot patch to the binary ))

    --
    Sometimes boldness is in fashion. Sometimes only the brave will be bold.
    1. Re:Important missing information by darkonc · · Score: 2

      OK: Hre's a patch that should change sendmail.pid to honeypot.pid.. put the output in a file in your path and make it executable....

      # By Stephen Samuel (samuel at bcgreen dot con )
      # Reads from standin, writes to standout
      # (will need to change permissions on the output)
      # changes string $original to $replace
      # sendmail.pid -> honeypot.pid
      # Note: strings need to be the same length.
      # (null padding should work)

      $original="/var/run/sendmail.pid";
      $replace ="/var/run/honeypot.pid";

      die "strings are not the same length\n" if ( length($original) != ($replen = length ($replace)) );

      (binmode STDIN )|| die "binmode ARGV failed";
      (binmode STDOUT) || die "binmode STDOUT failed";

      while( ( $len=read(STDIN,$segment,1024)) >0) {
      $line .= $segment;

      $line =~ s/$original/$replace/g;

      # keep enough of the line to handle a string broken over input blocks.
      $output=substr($line, 0, 1-$replen );
      substr($line, 0, 1-$replen ) = '';

      print $output;

      }
      print $line;

      --
      Sometimes boldness is in fashion. Sometimes only the brave will be bold.
  107. Re:False Positives vs. political/legislative solut by GSloop · · Score: 2

    How about a "test" for actually receiving funds in said account or method for any spam?

    If you havn't received any spam funds, it shouldn't be too hard to prove, and thus would exempt you from the judgement.

    There are some difficulties, but I do think, that in most cases, the link from spam to advertising to actual revenue should be fairly easy to prove or disprove.

    Lets try this on for size...

    Take your example from above. I get sued. I provide documentation showing the court (not the plaintiff) that revenue in my account is from other transactions unrelated to spam. (This keeps my privacy intact, as the hostile plaintiff doesn't get this material) The plaintiff then has to go another step to prove I'm the spammer. They would be left to subpoena the Korean relay.

    Could this work? How about some refinement... It does presume some level of guilt until proven innocent, but this is civil not criminal, so that could work at least in a constitutional sense.

    Someone with more knowledge of banking laws could tell you more, but I believe that most companies operating here in the US - i.e. doing business probably have a bank account here to bring funds into, then the funds are swept to the home country account... No?

    Cheers!

  108. Re:Spider traps good with Teergrubes IF coordinate by Isofarro · · Score: 1

    Some of the programs encode the IP address of the harvester in the bogus addresses, which is nice for tracking down the real culprits as opposed to just blocking some open relay in Korea.

    I do like this idea. From this it would be possible to build up a list of IP addresses of known email harvesters - which could then potentially be blocked, or shut-down.

    Is running an email harvester on an ISP dial-up connection a breach of terms and conditions, or legit?

  109. Easy solution by sydbarrett74 · · Score: 1

    Beyond closing open relays (and not running ludicrously vulnerable daemons like sendmain to begin with), here is my solution: allow people to have, say, 100 recipients for any given email and charge a penny or so for each recipient above the 100. If you have a legitimate reason to email thousands of people at a time (as some very popular mailing-list administrators do), then there should be a way for you to get some type of certification with your provider. Otherwise, make these spammers pay a penny for each recipient over a hundred. At a dollar for every hundred recipients, I guarantee you the money will add up and many spammers will modify their tactics.

    --
    'He who has to break a thing to find out what it is, has left the path of wisdom.' -- Gandalf to Saruman
  110. Re: Are harvesters ISP AUP violations? by billstewart · · Score: 1

    Email Address Harvesters used to develop spam lists are almost always violations of acceptable use policies at good ISPs. And web spiders that ignore robots.txt prohibitions are also violations of many ISPs' AUPs. You probably could run a web spider on a dialup connection, but it'd be pretty slow - they have to suck down a lot of data to find what they're looking for, unless they can abuse popular search engines to look for addresses (e.g. use Google to look for @, if it'll do that, or dredge the whois registries to find all the names in .com and then use Google to look for name1.com, name2.com, etc. The web is really pretty big, and even the text parts are almost certainly growing at faster than 56kbps.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  111. Gotta catch the guy first - that's the hard part. by billstewart · · Score: 1
    So the spammer, who lives somewhere in the world, abuses a Korean open relay to send you spam, which uses a Taiwanese web page to pay a Visa account at a Thai bank which is owned by a Panamanian corporation, which is really controlled by some loser in Florida. If you can track down the string of transactions and find the real owner, maybe you can invoke whatever hypothetical law Florida might pass getting you $200 plus court costs. But to prove this, you not only have to find enough evidence to track down the owner, you've got to get high enough quality evidence to convince the court in Florida that you're correct. That probably means that you'll need to have the court in Florida subpoena at least the Taiwanese web server, Thai bank, and Panamanian corporation, all of which aren't in some Florida small claims court's jurisdiction so they'll laugh at you. You'll need a real court instead, and they'll also argue lack of jurisdiction over the holders of the evidence, and you've got the difficulty of running this from your home in California.

    It's probably more effective to use a credit card that's good at refunding complaining customers' money - if the merchant gets hit with a large number of complaints and demands for money back (either "I bought this plan to Make Money Fast and it's just tools for illegal spamming, I want a refund" or "Oops, I mistyped things into his ugly web page again, please refund my $0.99 and I'll pay him the $99.00 for the product later") multiplied by a few thousand could increase the spammer's costs and maybe get you a better trace on where he lives - but non-US banks are much less likely to give you a refund on credit card transactions for things like this.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks