The Little Guy Posted March 12, 2009 Share Posted March 12, 2009 I made a ASCII CAPTCHA, and I was wondering, do you think that it is more secure than a normal jpg/gif/png CAPTCHA? http://phpsnips.com/asciiCAPTCHA.php Quote Link to comment https://forums.phpfreaks.com/topic/149059-ascii-captcha/ Share on other sites More sharing options...
corbin Posted March 12, 2009 Share Posted March 12, 2009 350KB..... gzip could knock that way down, but still.... I wouldn't want to use that much bandwidth personally lol. And no, it's not any more secure. If someone were really determined, he could just convert your ASCII CAPTCHA to an image and pass it through a CAPTCHA reader. Quote Link to comment https://forums.phpfreaks.com/topic/149059-ascii-captcha/#findComment-782712 Share on other sites More sharing options...
The Little Guy Posted March 12, 2009 Author Share Posted March 12, 2009 but then he would have to build a code to take a screen shot, resize it to get just the image isn't that hard to do? Quote Link to comment https://forums.phpfreaks.com/topic/149059-ascii-captcha/#findComment-782715 Share on other sites More sharing options...
corbin Posted March 12, 2009 Share Posted March 12, 2009 Why couldn't someone just parse the HTML and use something like the GD library to generate a CAPTCHA? Or, if someone were really determined, he could try to make something that would parse the HTML to text. Going from ASCII -> image -> text would be slower than image -> text obviously, but if there was a decent accuracy rate, even something like 2%, that wouldn't matter much. Quote Link to comment https://forums.phpfreaks.com/topic/149059-ascii-captcha/#findComment-782728 Share on other sites More sharing options...
Mchl Posted March 12, 2009 Share Posted March 12, 2009 The idea is cool though! Very original. You could decrease the size by using dynamic CSS. So instead of style="color:rgb(255,255,255);" you would have class="c1;" You use at most 5 colours in your captcha, so you can just create a class for each one. It would reduce the overall size by some 30%. Quote Link to comment https://forums.phpfreaks.com/topic/149059-ascii-captcha/#findComment-782775 Share on other sites More sharing options...
GingerRobot Posted March 12, 2009 Share Posted March 12, 2009 I could be wrong but it would seem logical to me that text would be far easier to analyse and extract information from than an image would be. Perhaps it would be more secure insofar as the majority of tools that currently exist that might break captchas are targetted at images but i would imagine creating a tool to break a text-based captcha would be easier than an image based one. Quote Link to comment https://forums.phpfreaks.com/topic/149059-ascii-captcha/#findComment-782813 Share on other sites More sharing options...
Mchl Posted March 12, 2009 Share Posted March 12, 2009 It wouldn't be much different for sure. The OCR algorithm would stay the same. It would be just a matter of transforming HTML into something it can eat. Quote Link to comment https://forums.phpfreaks.com/topic/149059-ascii-captcha/#findComment-782817 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.