Damn Spam Bots! Too Smart!

Posted November 20, 2006 at 8:18 AM

Tags: ColdFusion

Over the weekend I had 4 spam comments posted to the site. Granted 3 of them were from the same bot, but still, this irks me. Last week I implemented a new de-spamming protocol and it seems that it is not tough enough. I am going to leave it in place for a bit longer to see how it goes. I apologize for any spam emails that people get (via comment posts). If this continues, I will update the ColdFusion / HTML code.

Post Comment  |  Ask Ben  |  Permalink  |  Print Page



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Nov 20, 2006 at 9:26 AM // reply »
1 Comments

Once I had problem with breaking my captcha by spammers, but it was solved with asking to enter result of math operation instead of dummy copying of image characters.


Nov 20, 2006 at 10:00 AM // reply »
111 Comments

Are you SURE it was a bot? Only thing to bear in mind is that some spammers pay people to submit comments as well. Just a thought. Wouldn't want you going crazy trying to create a CAPTCHA that would fool human spammers!


Nov 20, 2006 at 10:04 AM // reply »
3 Comments

Are you using CFAkismet? If not you should, we've been using it at my work blog and it's been awesome. (blog.d-p.com)... let me know if you need more info on it, but you should be able to find it at riaforge, or via a google search ;)


Nov 20, 2006 at 10:15 AM // reply »
2 Comments

what Peter said.. I get a few spam comments each week that are entered by humans.
I use a system that looks in the comment for URLs and compares it with a blacklist that I've built. If a human tries to submit a comment that contains a blacklisted URL (or word actually..) then the comment is rejected. That cuts down some on the human entered spam.


Nov 21, 2006 at 7:33 AM // reply »
6,516 Comments

@Peter,

Oh man! I didn't know that some spamming out there was human. How freakin' underhanded is that?!? I guess this begs the question: Who irritates me more, telemarketers that call at dinner time, or human spammers? Hmmmm, yeah, I ask the tough questions.


Nov 21, 2006 at 7:34 AM // reply »
6,516 Comments

@Jonese,

That CFAkismet service looks very cool. I am surprised that I have not seen more about it. I see that it is not quite a 1.0 release but it is a really awesome idea. I will look more into it.


Nov 21, 2006 at 7:35 AM // reply »
6,516 Comments

@Mike,

So far I have not gotten any more spam than the few this weekend. If it pops up again though, I might have to start checking the content of the comment. This is something I'm not crazy about as it's never 100% accurate and I don't want to err on the bad side (and I don't want to build in a manual approval system).

We shall see.


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »