Are there ways except CAPTCHAs for web apps like pastie.org or p.ramaze.net? CAPTCHAs take too long for a small paste for my taste.
Are there ways except CAPTCHAs for web apps like pastie.org or p.ramaze.net ? CAPTCHAs
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could try Honeypot CAPTCHAs. Essentially, you hide some form fields using CSS. Your users will never fill out the fields because they won’t see them, but spam bots who don’t support CSS will fill them out. On the server side you just ignore comments/pastes/etc. that have that field filled out.
In addition to honeypots, you can use timestamps and one-time-tokens to stop replay attacks. Here’s a discussion of combining the two techniques.