OrElse
OrElse

Reputation: 9959

A different captcha approach

Reformatted into a question....


Is drag and drop a good catcha method? I.e. would it be a good way of allowing only humans to submit a form?


Original text:

You can start voting down but i am a newbie and here is my captcha version!

The captcha will be based on drag and drop...

a human being could implement drag and drop. A bot?

Just a thought!

Upvotes: 1

Views: 1091

Answers (5)

Is drag and drop a good catcha method? I.e. would it be a good way of allowing only humans to submit a form?

This is nice idea in correct direction. One should prevent passing captcha to 3d party human solvers sweatshops (which do not directly interact with web-boards being cracked)

But the mentioned

is 100% passable by bots in 5 guessing, while bots have 15-20 before being locked.
The spambot devs I asked about it just called it "a masqueraded trap".

I am making survey of spam and anti-spam techniques and would recommend to look into KeyCAPTCHA plugin. See my another answer on it for more details.

Upvotes: 0

Philippe Leybaert
Philippe Leybaert

Reputation: 171774

Any javascript-based CAPTCHA will do (no need to do fancy stuff like drag and drop). The only problem is accessibility and support for browsers without decent javascript (hello IE Mobile?)

Upvotes: 0

John Parker
John Parker

Reputation: 54445

Another issue to address is how a drag and drop system would work if the user has JavaScript disabled. (You'd need to fallback to something and that something would also need to be hard to fake.)

Then again, HTML5 might resolve this issue as long as you don't need mainstream browser support any time this century.

Upvotes: 0

AdaTheDev
AdaTheDev

Reputation: 147224

Per my comment, it's already been done, one example here :)

Upvotes: 2

Sampson
Sampson

Reputation: 268344

Drag and drop what? The thing here is not the behavior. A computer can drag and drop programmatically. The issue here is things computers cannot do, or do well. For instance, recent ideas have suggested orienting images right-side up. Like a dog upside down needing to be flipped vertically, or a stop sign needing to be oriented 45 degrees clock-wise. More complicated images would be children hanging upside down on monkey-bars, etc.

Drag-and-drop won't cut it alone. What will you be dragging, and where will you be dropping it ;)

Upvotes: 2

Related Questions