With honeypot, i mean more or less this practice:

#Register form
<style>
    .hideme{
        display:none;
        visibility: hidden;
    }
</style>
<form action="register.php">
    Your email: <input type="text" name="u-email" />
    Choose a password: <input type="text" name="passwd" />
    <div class="hideme">
        Please, leave this field blank: <input type="text" name="email" />  #the comment is for text-browser users
    </div>
    <input type="submit" value="Register" autocomplete=off />
</form>

//register.php
<?php
if($_POST['email'] != ''){
    die("You spammer!");
}
//otherwise, do the form validation and go on.
?>

more info here.

Obviously the real fields are named with random hashes, and the honeypot field can have different names (email, user, website, homepage, etc..) that a spambot usually fillup.

I love this tecnique becose doesnt not cause the user to be annoied by capthca

Well, does anyone of you have some experience with this tecnique? How much is it efficent?

link|improve this question

Be careful of your field names when doing something like this. There are multiple automated form-fillers out there and something meant to bait a spam bot might also bait a form filler. You try the form as given on me and you're going to call me a spammer--I will have no idea my system filled in the hidden "email" field. – Loren Pechtel Sep 1 '10 at 22:15
Youre right, i forget the AUTOCOMPLETE=OFF attribute in the honey field; however it is not supported by all the browser – Strae Sep 2 '10 at 7:34
Related : stackoverflow.com/questions/1577918/… Lists a lot of bot/validation techniques like CAPTCHA, honey pot, askimet, etc etc. If your having trouble with spambots, definitely worth a read. – rlb.usa Sep 29 '10 at 19:51
feedback

1 Answer

up vote 0 down vote accepted

It works relatively well, however, if the bot creator caters to your page they will see that (or even have a routine setup to check) and will most likely modify their bot accordingly.

My preference is to use reCaptcha. But the above will stop some bots.

link|improve this answer
i use honeypot for not annoing users with capthca.. – Strae Sep 1 '10 at 22:02
A lot of bots still get past reCaptcha on my site :\ – Andy E Sep 1 '10 at 22:05
You could also look into implementing akismet.com on your site. But this is generally for comment spam. And remember, that the reCaptcha and the Honey Pot will not thwart human spammers. – Brad F Jacobs Sep 1 '10 at 22:12
akismet is good, but if possible, i'll love a way that dont rely on thirdy-part services – Strae Sep 2 '10 at 10:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.