Alternate Captcha?

liunx

Guest
I could post this on specialist scripting sites and get really complex answers but I'm a simple man and want simple answers. That and sometimes people on the outside have better ideas.<br /><br />Anyway I am looking at improving the CAPTCHA method used by Lazarus Guestbook. I am trying to find something different from the usual 'Enter the characters from the image' stuff. I do have some ideas of my own but I can also see ways to defeat them so I am posting this request here to see what other people can dream up. Remember the idea must be simple for the end user to do and must not use client side stuff like Javascript.<br /><br />Just to get the ball rolling here is one idea I had and dismissed:<br /><br />I display a solid block of colour and have the guest select the matching colour from a choice of eight using either a select box or radio buttons.<!--content-->
Don't have another idea for your captcha. <br /><br />But you were right not to try using color since some folks are color blind and would not see the difference between red/green, and would not be able to use your captcha method.<br /><br />[FYI: this site allows you to enter a webpage address and it will render the page the way color blind people see it h**p://www.vischeck.com/vischeck/ Very interesting.]<!--content-->
Yes at present I have come up with, and dismissed, around about ten different methods. The only simple way I can perceive is a simple text based instruction into what to type into the box/select. I have seen one script (can't remember which) that used simple sums as it's captcha but since it can be read by a bot it would be easier to break than an image captcha. <br /><br />So we can safely say text based is the best way to go so next we need to devise some sort of logical problem or wording that would be easier for a human but difficult for a computer. We also must avoid things that require preprogrammed responses as then we end up with a limited number of answers.<br /><br />1. Black is to white as night is to ?<br />Problem there is we would require a list of preset opposites.<br /><br />Only reasonable idea I have had was to use either sums or a list of numbers but change the wording of the sentence. Again we would end up with a limited number of preset sentences though.<!--content-->
How about pictures of different animals / objects - and a selection of what you can see ? As an extension to your colours .... if the board owner could choose the images / responses they would all be different (you just have to hide the name of the image file of course and not make them pic1 for options 1 <img src="http://www.totalchoicehosting.com/forums/style_emoticons/default/wink.gif" style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif" /> <br /><br /><br />How many legs can you see in this photo .... that sort of thing<!--content-->
Thought about that but again it only works for people with good eyesight and a graphical browser. Before adding CAPTCHA to Lazarus it had a simple question/answer system to stop spam (apparently this method is called SAPTCHA). After doing some reading about various methods (audio mainly) I have come up with an idea. <br /><br />My Idea<br /><br />The admin can specify a list of words to be used as the 'answers' to the test and one will be selected at random per session. The admin can also specify a list of single line instructions that will also be selected at random. Each instruction line will have [ANSWER] put at the point to display the answer (possibly with [REWSNA] to display the answer reversed). This way you should end up with a list of instructions/answers unique to each site. Whilst programs can be written to read images I have yet to see one that can understand language properly. <br /><br />Example instructions:<br />Enter [ANSWER] into the text box.<br />What is [REWSNA] written backwards ?<br />Please type [ANSWER] in the box to prove you are not a bot.<br />This is a test to which the answer is [ANSWER]. Enter it below.<br /><br />This method should be accessible to all.<!--content-->
OR have you considered:<br /><br />enter only the five UPPERCASE LETTERS into the box: A59t81L6Bau7rDY <br />The answer would be: ALBDY<br /><br />The code would change from page to page but would retain 5 letters each time.<br />The placement of CAPS could change so it would not be the same placement (1st, 7th, etc) each time.<!--content-->
I thought about that along with rendomly generated answers but to find the requierd string would just require some regex since it doesn't fit most word structures. Your idea has the flaw that once the string is found they just parse the uppercase letters.<!--content-->
Not sure if this would help but what the heck <img src="http://www.totalchoicehosting.com/forums/style_emoticons/default/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /><br /><br />sNews has a CAPTCHA that uses a (as an example) 1+1= (then the user would have to enter the correct number)<br /><a href="http://www.solucija.com/home/snews/" target="_blank">http://www.solucija.com/home/snews/</a><br /><br />Maybe you could check out the code and see how it's done.<!--content-->
As I said before simple sums like that are to easy for a spammer to parse.<!--content-->
<!--quoteo--><div class='quotetop'>QUOTE</div><div class='quotemain'><!--quotec-->Your idea has the flaw that once the string is found they just parse the uppercase letters.<!--QuoteEnd--></div><!--QuoteEEnd--><br />True, if it stayed the same. But what if i you alternate between only UPPER, lowercase, odd numbers, even numbers, etc. Randomize it so each time the page loads you get a different version. The number letter combo would have 5 each: upper, lower, odd, even. The visitor would have to determine WHICH 5 to input based on the randomized instruction.<!--content-->
 
Top