<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>The Heyes CAPTCHA</title>
        <description>Ok, think I better tell. This is the new Heyes Captcha I talked about. Wanna test it? Download @ http://www.thespanner.co.uk/2007/04/13/accessible-captchas/

Like I said, I do have high hopes for this one.

If you gonna test it, please let me know the results/findings if you like.

EDIT:Here is a online testversion for people who have no webhosting to test it.

http://www.jungsonnstudios.com/blog/heyes/heyes_captcha_test.php</description>
        <link>http://sla.ckers.org/forum/read.php?7,10330,10330#msg-10330</link>
        <lastBuildDate>Thu, 23 May 2013 18:10:13 -0500</lastBuildDate>
        <generator>Phorum 5.2.15a</generator>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,12069#msg-12069</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,12069#msg-12069</link>
            <description><![CDATA[pure wisdom, history teaches best. thanks, it's a nice insight!]]></description>
            <dc:creator>Anonymous User</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Fri, 01 Jun 2007 02:26:44 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,12067#msg-12067</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,12067#msg-12067</link>
            <description><![CDATA[this reminds me of knuth's story about when he thought he could create a good random number generator by making a ridiculously complicated algorithm.  after very little analysis though, he found that it had very short cycles and even a fixed point if i recall correctly.  the point being is that often times you can't just throw in some additional complexity to make something more secure.  a much better approach is to come up with a cleaner design.   now i'm not saying a good javascript based captcha is impossible, i'm just saying you're not going to end up with one by adding additional complexity to an already known weak one.]]></description>
            <dc:creator>thornmaker</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Thu, 31 May 2007 17:21:23 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11955#msg-11955</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11955#msg-11955</link>
            <description><![CDATA[You can make it harder but as long as you're sticking to JS it can always be solved programatically.]]></description>
            <dc:creator>WhiteAcid</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sun, 27 May 2007 05:52:36 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11954#msg-11954</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11954#msg-11954</link>
            <description><![CDATA[Heh cool attack! So simple to bypass :)<br />
<br />
What about if a random seed was used on the sequence though? So the length varies and the seed is removed on the server before the check. I could also randomise the function calls and also the method of assigning the sequence.<br />
<br />
If I applied those techniques, could another method be created to easily bypass? I'm guessing that is would be more difficult to bypass on the server side.]]></description>
            <dc:creator>Gareth Heyes</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sun, 27 May 2007 04:47:19 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11949#msg-11949</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11949#msg-11949</link>
            <description><![CDATA[My programming skills, specifically embedding a JavaScript engine into a program aren't what they need to be to create a standalone app, instead I've made this bookmarklet which would solve the captcha:<br />
<pre class="bbcode">HeyesCaptcha.prototype.complete = function() {seqK  = '';for (i=0; i&lt;this.sequence.length; i++){x = this.sequence<i>;seqK += x.substr(44,1);seqK += x.substr(81,1)}document.getElementById('sequence').value = seqK;this.count = 4;this.seconds = '';this.updateKey()};heyescaptcha.complete()</i></pre>]]></description>
            <dc:creator>WhiteAcid</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sat, 26 May 2007 22:29:20 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11947#msg-11947</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11947#msg-11947</link>
            <description><![CDATA[It was a technical challenge I set myself to see if I could create some code that couldn't easily be parsed without pressing a key and executing the javascript. I know what you are saying but if the parser doesn't know what to execute and it is complex enough to prevent regular expressions then maybe it's possible to prevent automation in this way.<br />
<br />
Could you provide me an example on how to bypass this technique?]]></description>
            <dc:creator>Gareth Heyes</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sat, 26 May 2007 19:32:42 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11946#msg-11946</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11946#msg-11946</link>
            <description><![CDATA[You could always embed an existing JavaScript engine into your solver and use that. Anything your browser can do another program can do.]]></description>
            <dc:creator>WhiteAcid</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sat, 26 May 2007 19:20:20 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11945#msg-11945</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11945#msg-11945</link>
            <description><![CDATA[Hi WhiteAcid the javascript creation is simple at the moment but it does change everytime you visit the page. The class I wrote could be expanded upon to include more complex code creation, in order to successfully pass the test you would have to get the javascript and have some sort of engine to parse it, although now it would be possible to write a simple one that could convert the javascript into php and therefore create the correct hash, I think with enough random code generation it would be very difficult to bypass without executing the javascript.<br />
<br />
I'm going to release the code under GPL so I guess I will find out if it has been a waste of time or not :)]]></description>
            <dc:creator>Gareth Heyes</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sat, 26 May 2007 19:12:22 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11944#msg-11944</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11944#msg-11944</link>
            <description><![CDATA[Heh, I saw this on php-planet before readin git here. Anyway... It's still entirely JavaScript based and can be automated. All you have to do is read a few variables, parse them a bit and md5 them. Totally doable.]]></description>
            <dc:creator>WhiteAcid</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sat, 26 May 2007 18:57:00 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11943#msg-11943</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11943#msg-11943</link>
            <description><![CDATA[Continuing my quest for a non-image based captcha, I've released a new version of the HeyesCaptcha. Using research gathered from the last time, I think I've made this one far more secure against automation.<br />
<br />
Can anyone automate it?<br />
http://www.thespanner.co.uk/2007/05/26/heyes-captcha/]]></description>
            <dc:creator>Gareth Heyes</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sat, 26 May 2007 15:41:00 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11807#msg-11807</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11807#msg-11807</link>
            <description><![CDATA[I actually don't think I ever said, &quot;The CAPTCHA fails to protect, because the experts can crack it.&quot;  What I said is that it does keep out kiddies, but they are rarely worth thinking about in most critical applications.  It does slow down robots, but it doesn't stop attackers.  So you have to weigh the value of what you are trying to protect.  Please don't read into this too much, read it for what it says.  I do think CAPTCHAs provide value - just not what most people use them for.]]></description>
            <dc:creator>rsnake</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Mon, 21 May 2007 19:00:42 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11668#msg-11668</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11668#msg-11668</link>
            <description><![CDATA[Well I don't know, some &quot;lock kiddies&quot; or just people who walk in the streets are also no experts on locks. Still, they are designed to keep the good people good. They are no protection agains the people who really want to break in.<br />
<br />
Normal people may take 3 days to open the same lock, an expert lockpicker does in under 2 minutes. So can I compare it? yeah I think I actually can. <br />
<br />
So no lock is safe, should we stop use it then? <br />
<br />
Cause like you said: The CAPTCHA fails to protect, because the experts can crack it. To me, that is a pretty useless statement in analogy with the lock. Because what it implies is what I said earlier: If that is the case, why have security at all.<br />
<br />
Yesterday I saw an interesting news story in my country about a real world heist, know how they did it? they drove to a bank, and of coarse, the bank is protected. So they waited behind the bank. 2 bank employees where filling the ATM with money in the room where the bank robbers where waiting behind the back door. The robbers spilled gasoline on the door, so that the bank employees smelled the gasoline and opened the secured door to look where the smell was coming from, quickly the bank robbers did go in and took all the money.<br />
<br />
A weak link, despite tons of steel doors and thick walls, and other security stuff. Smart idea, It kept out good citizens, but the bad guys won. They always win. <br />
<br />
But it doesn't mean we should throw away barriers and perimeters. Is it?]]></description>
            <dc:creator>Anonymous User</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Thu, 17 May 2007 07:28:33 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11643#msg-11643</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11643#msg-11643</link>
            <description><![CDATA[I'm not sure that's a good analogy.  Locks keep out 99.99% of people who shouldn't have access, while CAPTCHAs keep out no one except (theoretically) robots (and blind people).  Further, for me to break into 1000 doors, even if I'm good, by your math would take me 2 minutes x 1000 doors, assuming there is no travel time between them.  CAPTCHAs, on the other hand, take far less time than that because of scale.  You could do 1000 in 2 seconds if it were a weak CAPTCHA or if you had enough porn proxies set up, regardless of geographic location.<br />
<br />
What you are getting at is the economy of the issue which is a different problem and one worth discussing, although I'm still not sure how this conversation ended up in this thread.  It probably deserves a new thread since this has nothing to do with Heyes in particular.  If it's worth a lot (like the contents of a house to be analogous to a dork lock) to break a CAPTCHA, no, CAPTCHAs fall down much faster than 2 minutes per.  If it's worth next to nothing (instead of the contents of a house, all they get is a text link on some page) yes, a CAPTCHA has done it's job since it is not worth it to break the CAPTCHA.<br />
<br />
And be careful, I never said they were useless.  I actually said they do keep out the kiddies, but unfortunately, the kiddies are barely worth thinking about in most of the applications I work on.  So while CAPTCHAs provide some incremental value, they are anything but &quot;secure&quot;.  Should you use them?  Depends completely on what you are trying to solve.  In most cases the answer is no, in my experience.  However, certain things like brute force actually do help, since the name of the game is increasing the level of inconvenience for the robotic activity (similar to time delays in login screens after failed attempts).<br />
<br />
I simply don't think you should think of CAPTCHAs as a security device, I think you should only think of them as a tool to slow down robotic activity, and that's it.  I do think there is a lot of good security in the world, but CAPTCHAs do not fall into that category.  Sorry if this isn't what you wanted to hear, but I've seen every CAPTCHA deployed in a large scale environment broken in real life (not just the lab).  I'm not talking about my theories here.  It just really is a pretty weak tool.  While locks are also very susceptible to being broken, the physical annoyance and likelihood of getting caught are the few things that allow it to prevail.  Don't forget that the anonymity of the Internet is one of the main causes for it being such a great place for attackers.  Attackers don't have that luxury in real life for the most part.]]></description>
            <dc:creator>rsnake</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Wed, 16 May 2007 11:17:28 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11490#msg-11490</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11490#msg-11490</link>
            <description><![CDATA[So we can agree upon one thing then: It's useless to use a captcha.<br />
<br />
Well, while where at it: Why have security at all.<br />
cause every protection can be broken isn't it? I know some lock pickers who can open up every door under 2 minutes. Do they say that locks are useless now? No I can't recall that they said something like that. To their viewpoint, every customer doorlock can be opened under 2 minutes: So it's broken.<br />
<br />
Is this feasible?<br />
<br />
No, and you know why: One of the most used security philosophy today is build upon one thing: Preventing attacks, by slowing them down. It's impossible to stop everything in the end. <br />
<br />
So are CAPTCHAs useless, are they broken? No, not for me. <br />
I think one can't say it's broken, or useless. it all depends on the context where it is used and implemented.]]></description>
            <dc:creator>Anonymous User</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sat, 12 May 2007 14:30:33 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11475#msg-11475</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11475#msg-11475</link>
            <description><![CDATA[Okay, but the next question you have to ask yourself is where is the tradeoff?  In biometrics it's similar to a crossover rating, but here we have to think about the cost benefit analysis from an attacker's perspective.  Did that CAPTCHA slow down the people you want enough to in any way solve your issue?  If you have to use offline analytics to pull down things for human review, CAPTCHAs haven't done their job.  They may have slowed the scale by which you have to review by human eyes, but they certainly haven't stopped it.  So the most important question here is have you stopped the bad guys from doing what they want to do?  Ultimately CAPTCHAs are ineffective at that unless it makes it economically infeasible.  Also, since most of them can be solved by computers anyway, it hasn't even solved the most basic requirement that it even be a human.  So in my opinion while they may not be 100% broken in all cases, they have limited security value but tons of obfuscation value.  So yes, good for keeping out a few kiddies, completely worthless for stopping the people who I worry most about.]]></description>
            <dc:creator>rsnake</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Fri, 11 May 2007 11:10:58 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11423#msg-11423</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11423#msg-11423</link>
            <description><![CDATA[Well theoretical security concepts are designed to stop them, but practical security concepts show that that is impossible. Nothing can be secured in the real world. So given this fact we can conclude this:<br />
<br />
a.security does not exist in the real world, only in theory.<br />
b.security does exists in the real world and can only slow down attacks, not stop them.<br />
<br />
I'll go for B. for the main reason why this is standing firm ground, I can compare it to a bulletproof vest. That is also designed to slow down bullets, but with a huge caliber one can shoot right through it. Same with bulletproof glass, metal etc. I just use it as an analogy to the concept of security. <br />
<br />
I'm not sure it hold enough water for the Captcha example, but in general if anything else, it's the best we can do.]]></description>
            <dc:creator>Anonymous User</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Thu, 10 May 2007 05:56:10 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11420#msg-11420</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11420#msg-11420</link>
            <description><![CDATA[Ronald Wrote:<br />
-------------------------------------------------------<br />
&gt; Right, but security in general is only meant to<br />
&gt; slow down hackers, attackers, spammers, etc.<br />
&gt; That's the whole deal with security, and in fact<br />
&gt; the only reason security exist to keep the good<br />
&gt; guys good, and to slow down possible bad guys. <br />
<br />
<br />
Actually, I really disagree with that. The goal of security is to <b>stop</b> attackers. We realise that we can't predict everything, so we accept that we'll lose at one point, but that doesn't mean our goal changes - if a system only slows an attacker, then it is not a security measure - it should be nothing more than a band-aid until something better can be implemented.<br />
<br />
The only time simply slowing an attacker down is acceptable is when such an attack (e.g. brute force) is unsolvable because the attack does not exploit technology, but rather exploits a user's inability to choose a good password, or similar. CAPTCHAs are used there, and are useful, especially considering that having humans solve that many CAPTCHAs is infeasible. Sure, CAPTCHAs are also used to prevent SPAM, but SPAM is not a security problem - it may be one which we try to address, but it is not a security problem, there is no attack, it is simply automated usage.]]></description>
            <dc:creator>kuza55</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Thu, 10 May 2007 02:16:15 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11412#msg-11412</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11412#msg-11412</link>
            <description><![CDATA[Right, but security in general is only meant to slow down hackers, attackers, spammers, etc. That's the whole deal with security, and in fact the only reason security exist to keep the good guys good, and to slow down possible bad guys. <br />
<br />
So when someone can slow down attacks, or make it more difficult to break it efficiently or make it more difficult to monetize it, I think it works.<br />
<br />
Still I have trouble to understand why human captcha solvers are being used. And for what reason. What they solve and let's say post after it can be removed in a few mouse clicks. If humans solve them, Captchas aren't broken either, because they are human, and thereby solve the captcha.<br />
<br />
Hence, Another method I used in some applications is what I called &quot;Post Spam Resolving&quot; where a script is daily actively searching all database records on Spam signiatures, and list them to be evaluated by humans to be removed.<br />
<br />
So I really cannot say that the bad guys win and captchas lose, it's a trade-off.]]></description>
            <dc:creator>Anonymous User</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Wed, 09 May 2007 20:56:35 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11337#msg-11337</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11337#msg-11337</link>
            <description><![CDATA[It definitely is cost effective to break CAPTCHAs depending on the site.  If you are just talking about a 200 person site with no pagerank, no, not worth it.  If you are talking about protecting an enterprise with it I would re-think the CAPTCHA you use.  Anything that can be reverse engineered will be.  Anything that can't will go through human CAPTCHA breaking factories.  As long as it is worth more than fractions of a penny to solve, it is worth it to solve.  It may take time for them to find the target, but at that point that's the only thing protecting the site - time.]]></description>
            <dc:creator>rsnake</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Tue, 08 May 2007 19:16:14 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,11025#msg-11025</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,11025#msg-11025</link>
            <description><![CDATA[@NickWilliams  Sure I understand it can be automated, everything can. I'm fully aware of that, thats just what I said. nothing tough about that in any way, but is it worth it to do? is it cost effective? if not, I still think CAPTCHA's aren't broken. <br />
<br />
Automation cen be seen in different contexts. It is really automated if someone only has to load sites into his bot through Google for instance and hit submit. Takes 5 minutes and thats cost effective. Now, building custom scripts which takes much longer isn't cost effective.<br />
<br />
Now, if one can mix up the code in a way it's hard to RegEx on, i can say it is _harder to automate_ and thereby I can say: it can be safe from automated submissions, because spammers don't have awful lot of time like we do to break something that is used on 20 websites. it's tricky what I said, and it surely was asking for explanation.]]></description>
            <dc:creator>Anonymous User</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Wed, 02 May 2007 08:54:11 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10989#msg-10989</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10989#msg-10989</link>
            <description><![CDATA[No, the bots don't send referrer headers :)<br />
I had a few human spammers however - that's where I got the search requests from. Bots seem to use similar search requests, at least when I changed robots.txt to exclude post forms and such bot activity dropped significantly. Even though I still have &quot;Powered by phpBB&quot; there. And I was sure that you didn't mean removing just the one string - just wanted to make this point clear.]]></description>
            <dc:creator>trev</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Tue, 01 May 2007 20:37:58 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10983#msg-10983</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10983#msg-10983</link>
            <description><![CDATA[trev Wrote:<br />
-------------------------------------------------------<br />
&gt; NickWilliams, removing &quot;Powered by Wordpress&quot; is<br />
&gt; unfortunately not enough. I have seen spammers<br />
&gt; coming from search requests like &quot;XHTML: You can<br />
&gt; use these tags: &lt;a href&quot; - the &quot;powered by&quot;<br />
&gt; strings are obviously not reliable enough and<br />
&gt; spammers switch to characteristic strings of the<br />
&gt; particular scripts.<br />
<br />
<br />
The real WTF is why anyone would write a bot to literally follow the SERP links directly rather than just navigating to the URL and dropping the referrer.  I wasn't  really saying remove just one footprint, I was just giving an example of an obvious one.]]></description>
            <dc:creator>NickWilliams</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Tue, 01 May 2007 18:28:22 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10982#msg-10982</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10982#msg-10982</link>
            <description><![CDATA[I agree. In fact, that's exactly what I am doing on my site - renaming form fields for each request. That allows me to run phpBB (which is a *huge* target) without captcha and even without mandatory registration. I have lots of bots hitting the site but they never manage to post anything. Of course it takes only half an hour for somebody to figure out the algorithm and to write code for the spam bot. But as long as this code is only useful for my site and my site doesn't become another MySpace nobody will do it - it isn't worth the effort.<br />
<br />
NickWilliams, removing &quot;Powered by Wordpress&quot; is unfortunately not enough. I have seen spammers coming from search requests like &quot;XHTML: You can use these tags: &lt;a href&quot; - the &quot;powered by&quot; strings are obviously not reliable enough and spammers switch to characteristic strings of the particular scripts.]]></description>
            <dc:creator>trev</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Tue, 01 May 2007 18:09:16 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10966#msg-10966</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10966#msg-10966</link>
            <description><![CDATA[I'm referring to software specifically written to spam a service, blog, mine data, etc, whether it be in a spider-like system or targeted towards a specific service/domain such as Blogger.<br />
<br />
If you want to update things every two days.. Why update the captcha?  Why have a captcha at all?  Why not just rename the form fields every two days?<br />
<br />
My point was, javascript is not a barricade against bots - at least not any more than doing things *different* than the group being targeted.  <br />
<br />
Sites can shield against software like Botmaster by simply renaming the form fields or removing the footprint that allows the site to be found in the first place (ie &quot;Powered by Wordpress&quot;).<br />
<br />
You might as well just write something like &quot;Type 123 in this box:&quot; and make it an image - plain text, no squiggliness or the likes.  Roaming bots won't know what to do, just as they won't know what to do when they come across some obscure captcha like Hayes'.  Once the site IS a target.. It's compromised in a matter of an hour...<br />
<br />
I'm still not quite sure you understand that this captcha can be *completely automated* from code (even if it required javascript) the same as the automation done by Botmaster, it's just a matter of implementing it.  Noone's going to implement it for a shitty score, just as they wouldn't implement &quot;if domain = roger's, then fill box with 123&quot;.  The moment the Hayes' captcha is widely used (or is used for guarding a large score), it will be absolutely useless; as it stands now, it's no more effective than the &quot;fill box with 123&quot; method.]]></description>
            <dc:creator>NickWilliams</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Tue, 01 May 2007 05:59:54 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10965#msg-10965</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10965#msg-10965</link>
            <description><![CDATA[That sounds very plausible, obviously I think you are referring to spam zombies here? I've seen a chain of them around a few times, that was something completely different I was referring to.<br />
<br />
I more or less meant bot software which spammers use themselfs on their deksktop ala Botmaster. Sure, anything can be smashed everyone knows that, but only a reasonable spammer only does it if he can earn something from it. Oh, and yes there are those guys who do it for fun, so it's not a one sided issue/comment and not intended that way.<br />
<br />
I was moving to the point in saying that it has to be custom build, and if I change methods every 2 days, is it broken then? I guess not.]]></description>
            <dc:creator>Anonymous User</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Tue, 01 May 2007 05:16:54 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10956#msg-10956</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10956#msg-10956</link>
            <description><![CDATA[It really is rather trivial.  The MSHTML/shdocvw.dll library allows direct implementation of Internet Explorer's rendering engine et all.  To break the Hayes Captcha it's a matter of dropping in the shdocvw.dll active-x control (high level/simple implementation) and navigating the page, and then simply navigating to the javascript Trev has provided.  You could also port the javascript over to your language of choice and interact with the dom from there.  You can also spend a bit more time and access things at a lower level and control the most mundane parameters without the page ever really rendering, or doing so invisibly.<br />
<br />
To read an email address that has been printed to the element via javascript it would be as simple as enumerating all the anchors on the page once it's loaded.<br />
<br />
Dim Anchors as IHTMLElementCollection<br />
Dim Anchor as HTMLAnchorElement<br />
'<br />
Set Anchors = Document.getElementsByTagName(&quot;A&quot;)<br />
'<br />
For Each Anchor In Anchors<br />
   '<br />
   If Instr(1,Anchor.href,&quot;mailto:&quot;) &gt; 0 Then MsgBox Anchor.href<br />
   '<br />
Next Anchor<br />
<br />
As for why you haven't seen it before... I don't know.  I'm sure you haven't seen a lot of things - perhaps your websites aren't targets for email harvesting, etc.  Search Engines of course don't support javascript because it's rather pointless, but that doesn't mean its impossible by any means.  In fact, it's simpler to do things this way (and more robust).]]></description>
            <dc:creator>NickWilliams</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Mon, 30 Apr 2007 15:37:43 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10944#msg-10944</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10944#msg-10944</link>
            <description><![CDATA[Wow cool.<br />
<br />
I know about SpiderMonkey, PHPJS, and other Javascript engines but I never saw a bot that could use it for automated SPAM. <br />
<br />
But, If this can be done, I wonder why I never saw such bot? I had tons of websites over the last 10 years. And no bot could execute Javascript. Can you show me some please?]]></description>
            <dc:creator>Anonymous User</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Mon, 30 Apr 2007 08:19:47 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10924#msg-10924</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10924#msg-10924</link>
            <description><![CDATA[jungsonn Wrote:<br />
-------------------------------------------------------<br />
&gt; As long as no one can launch an *automated* attack<br />
&gt; on CAPTCHA's with Javascript I really think they<br />
&gt; work, and aren't broken.<br />
<br />
<br />
What logic are you using to determine that no one can launch an automated attack?  Most automated spider systems I've worked on (Literally 85% out of dozens) are not simply winsock - they're using the MSTHML library (shdocvw) and doing things the same as Internet Explorer - javascript, vbscript, and css are inherently used as well as the ability to manipulate the document object model with your language of choice.]]></description>
            <dc:creator>NickWilliams</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sun, 29 Apr 2007 17:06:54 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10699#msg-10699</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10699#msg-10699</link>
            <description><![CDATA[Oh sure it is, and really was. It's a great discussion and tons of fun to wrap my mind around. Learned a good piece here. I was just ranting some stuff I had in my mind, trying to put things into context again and to see the actual risk. Which included the use of Javascript to attack it -which obviously works- but is tough to deploy it on a large *automated* scale. So that got me thinking.<br />
<br />
And indeed it a good use for small apps like registration forms etcetera. Any work in this field is good work and should continue. <br />
<br />
As long as no one can launch an *automated* attack on CAPTCHA's with Javascript I really think they work, and aren't broken.]]></description>
            <dc:creator>jungsonn</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Mon, 23 Apr 2007 16:46:00 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?7,10330,10610#msg-10610</guid>
            <title>Re: The Heyes CAPTCHA</title>
            <link>http://sla.ckers.org/forum/read.php?7,10330,10610#msg-10610</link>
            <description><![CDATA[@jungsonn - I completely agree with that sentiment, unfortunately this isn't a board about how nicely stuff works or usefulness, or how to make insecure apps.  So our criticism of the technology from a security perspective is actually on-topic given that this is the web application security forum.  Also, you yourself said you weren't aware of these issues, so clearly, it's worth talking through.<br />
<br />
@CrYpTiC_MauleR - you're exactly right.  As you probably already noticed I have no CAPTCHAs anywhere on this site or on ha.ckers.org.  I have worked on them a lot in the past (built and broke them) and found only mild usefulness in them in certain specific circumstances.  Most of the time they just confuse the issue and don't actually help the site in the way people seem to think they do.  Granted, most people don't have the basic foundation to protect themselves like I do, so I can see why people get stuck in that mindset.]]></description>
            <dc:creator>rsnake</dc:creator>
            <category>Robots/Spiders/CAPTCHAs, oh my</category>
            <pubDate>Sat, 21 Apr 2007 19:35:45 -0500</pubDate>
        </item>
    </channel>
</rss>
