<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: CAPTCHA in Flex &#8211; Running Example</title>
	<atom:link href="http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/</link>
	<description>flex developers web corner</description>
	<lastBuildDate>Tue, 07 Sep 2010 14:20:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andrei Ionescu</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1951</link>
		<dc:creator>Andrei Ionescu</dc:creator>
		<pubDate>Sat, 28 Aug 2010 15:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1951</guid>
		<description>Hello Nick!
First of all...

&lt;blockquote&gt;These articles are only to show how you could implement this graphically.&lt;/blockquote&gt;

Second... please read James Watkins comment a bit above and my answer to it if you didn&#039;t already read it. Third... I understand that you are an exceptional programmer and I agree that it is not totally secure and/or spam free but I would be grateful to you if you could come with ideas to make it better considering your expertise. Thanks for comment.</description>
		<content:encoded><![CDATA[<p>Hello Nick!<br />
First of all&#8230;</p>
<blockquote><p>These articles are only to show how you could implement this graphically.</p></blockquote>
<p>Second&#8230; please read James Watkins comment a bit above and my answer to it if you didn&#8217;t already read it. Third&#8230; I understand that you are an exceptional programmer and I agree that it is not totally secure and/or spam free but I would be grateful to you if you could come with ideas to make it better considering your expertise. Thanks for comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1950</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Sat, 28 Aug 2010 00:34:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1950</guid>
		<description>Andrei, I can setup an HTTP + HTTPS proxy that sits between the Flash app running in my browser and your server, which receives the request from the app.  I can watch exactly what is transmitted over the wire from Flash to your server.  I can then write a bot in Perl, completely bypassing Flash to submit information to your server as much as I want.

Your notion of Flash being more secure is true for the trivial script kiddies... but is of absolutely no protection for someone who really wants to take advantage of your service.</description>
		<content:encoded><![CDATA[<p>Andrei, I can setup an HTTP + HTTPS proxy that sits between the Flash app running in my browser and your server, which receives the request from the app.  I can watch exactly what is transmitted over the wire from Flash to your server.  I can then write a bot in Perl, completely bypassing Flash to submit information to your server as much as I want.</p>
<p>Your notion of Flash being more secure is true for the trivial script kiddies&#8230; but is of absolutely no protection for someone who really wants to take advantage of your service.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Ionescu</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1780</link>
		<dc:creator>Andrei Ionescu</dc:creator>
		<pubDate>Mon, 18 Jan 2010 09:05:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1780</guid>
		<description>Hello James. I agree with what you said. And more... Making automate submit &quot;engines&quot; on flash animation is quite hard and expensive to create. From this point of view flash it is by itself a bit more &quot;secure&quot; related to spam. It is harder to auto-submit a form made with using Flash than made using HTML. And if we add HTTPS things get even better. The article is not about securing your application but about how to make the form in a way that the spammers get reluctant to try spam through that form. Thanks for pointing this out.</description>
		<content:encoded><![CDATA[<p>Hello James. I agree with what you said. And more&#8230; Making automate submit &#8220;engines&#8221; on flash animation is quite hard and expensive to create. From this point of view flash it is by itself a bit more &#8220;secure&#8221; related to spam. It is harder to auto-submit a form made with using Flash than made using HTML. And if we add HTTPS things get even better. The article is not about securing your application but about how to make the form in a way that the spammers get reluctant to try spam through that form. Thanks for pointing this out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Watkins</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1779</link>
		<dc:creator>James Watkins</dc:creator>
		<pubDate>Mon, 18 Jan 2010 06:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1779</guid>
		<description>You keep using the word &quot;security&quot; in the replies you&#039;ve made. But I&#039;m not sure if you&#039;re using it in the right context. Let&#039;s make something perfectly clear here: A captcha provides no security for the end user. HTTPS is a protocol that protects against eavesdropping and man-in-the-middle attacks. Captchas are for companies that want to reduce spam. These are two completely different things.

People who create or use bots that literally fill out forms and submit them are amateurs. Real power lies in hijacking the actual http requests, which is not a difficult thing to do. This is what PHP Guy meant about &quot;hiding behind obscurity.&quot; HTTP Requests are not hidden from tech savvy users. Not in the same way that a Bank vault&#039;s software is hidden. On the contrary, HTTP Requests are easily accessed by simple plugins available for major web browsers. Any HTML developer is going to have a copy of that software for debugging purposes.

I know that you&#039;re just illustrating how a captcha could be generated in flex. But the fact is simple: There is no protection against spam with a locally-generated turing test. Sure, it&#039;s a deterrent: a hacker might see the captcha and THINK that it&#039;s server-generated, but if they ever found out that it wasn&#039;t, then you&#039;d be in trouble.

Don&#039;t you remember what happened to Twitter?
http://www.mediaite.com/online/twitter-password-breach-next-time-use-the-name-of-your-first-pet/
The moment you think nobody will find out, someone does and it&#039;s all downhill from there.</description>
		<content:encoded><![CDATA[<p>You keep using the word &#8220;security&#8221; in the replies you&#8217;ve made. But I&#8217;m not sure if you&#8217;re using it in the right context. Let&#8217;s make something perfectly clear here: A captcha provides no security for the end user. HTTPS is a protocol that protects against eavesdropping and man-in-the-middle attacks. Captchas are for companies that want to reduce spam. These are two completely different things.</p>
<p>People who create or use bots that literally fill out forms and submit them are amateurs. Real power lies in hijacking the actual http requests, which is not a difficult thing to do. This is what PHP Guy meant about &#8220;hiding behind obscurity.&#8221; HTTP Requests are not hidden from tech savvy users. Not in the same way that a Bank vault&#8217;s software is hidden. On the contrary, HTTP Requests are easily accessed by simple plugins available for major web browsers. Any HTML developer is going to have a copy of that software for debugging purposes.</p>
<p>I know that you&#8217;re just illustrating how a captcha could be generated in flex. But the fact is simple: There is no protection against spam with a locally-generated turing test. Sure, it&#8217;s a deterrent: a hacker might see the captcha and THINK that it&#8217;s server-generated, but if they ever found out that it wasn&#8217;t, then you&#8217;d be in trouble.</p>
<p>Don&#8217;t you remember what happened to Twitter?<br />
<a href="http://www.mediaite.com/online/twitter-password-breach-next-time-use-the-name-of-your-first-pet/" rel="nofollow">http://www.mediaite.com/online/twitter-password-breach-next-time-use-the-name-of-your-first-pet/</a><br />
The moment you think nobody will find out, someone does and it&#8217;s all downhill from there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: handoyo</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1648</link>
		<dc:creator>handoyo</dc:creator>
		<pubDate>Mon, 06 Jul 2009 08:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1648</guid>
		<description>Thanks a lot for the code you&#039;ve provide..Keep up the nice work...</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the code you&#8217;ve provide..Keep up the nice work&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Ionescu</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1625</link>
		<dc:creator>Andrei Ionescu</dc:creator>
		<pubDate>Sun, 07 Jun 2009 23:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1625</guid>
		<description>Hello PHP Guy, and thanks for comment. There is nothing about obscurity. It is about not knowing the insides of the application which should not be let known. In security field the first premise for a good security is not to let important internal things obvious to bad intended persons. Banks do that, companies keep secrets and there are other examples. 

As you can read in a comment above...

&lt;blockquote&gt;These articles are only to show how you could implement this graphically.&lt;/blockquote&gt;

So if you are concerned about securing your flex application with a CAPTCHA you could use this graphical approach and build your own server side. But for a good security you should use https protocol, and I&#039;m sure you already know that, and I&#039;m sure you know other ways to secure your application.</description>
		<content:encoded><![CDATA[<p>Hello PHP Guy, and thanks for comment. There is nothing about obscurity. It is about not knowing the insides of the application which should not be let known. In security field the first premise for a good security is not to let important internal things obvious to bad intended persons. Banks do that, companies keep secrets and there are other examples. </p>
<p>As you can read in a comment above&#8230;</p>
<blockquote><p>These articles are only to show how you could implement this graphically.</p></blockquote>
<p>So if you are concerned about securing your flex application with a CAPTCHA you could use this graphical approach and build your own server side. But for a good security you should use https protocol, and I&#8217;m sure you already know that, and I&#8217;m sure you know other ways to secure your application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHP Guy</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1624</link>
		<dc:creator>PHP Guy</dc:creator>
		<pubDate>Sun, 07 Jun 2009 18:04:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1624</guid>
		<description>&quot;In case of Flex/Flash to be able to submit to a web service (web service that is not easily visible) you need either to use a script that graphically recognizes inputs in flash player either to know, from inside, the web service and how to use it (which can be secured easily).&quot;

This is just relying on security through obscurity which is a horrible idea.</description>
		<content:encoded><![CDATA[<p>&#8220;In case of Flex/Flash to be able to submit to a web service (web service that is not easily visible) you need either to use a script that graphically recognizes inputs in flash player either to know, from inside, the web service and how to use it (which can be secured easily).&#8221;</p>
<p>This is just relying on security through obscurity which is a horrible idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bharani Mani</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1612</link>
		<dc:creator>Bharani Mani</dc:creator>
		<pubDate>Fri, 15 May 2009 08:56:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1612</guid>
		<description>Hello,
    you can actually generate server side captcha. Just take the code in the function that generates captcha text and put it in php file. Save the generated captcha from php file in a database. The flex can get the captcha text through httpservice. By this way you can do captcha validation server side.

Thanks,
Bharani</description>
		<content:encoded><![CDATA[<p>Hello,<br />
    you can actually generate server side captcha. Just take the code in the function that generates captcha text and put it in php file. Save the generated captcha from php file in a database. The flex can get the captcha text through httpservice. By this way you can do captcha validation server side.</p>
<p>Thanks,<br />
Bharani</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Ionescu</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1606</link>
		<dc:creator>Andrei Ionescu</dc:creator>
		<pubDate>Sun, 03 May 2009 14:59:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1606</guid>
		<description>Jason, I agree with what you said. This class is only for the client-side, only visual part. But a true CAPTCHA is integrated with the server-side which is not the point of these articles.

You can take this generator and use it to secure what you need by linking it with your submission process. 

Regarding the Fiddler issue... you can use Fiddler or any other spying tool on any kind of connection to catch data. You need to encrypt the Captcha code with a sort of algorithm so even somebody uses Fiddler and gets data it will not be able to decrypt it.

I would extend the Captcha class to call a service and get the captcha code from the server and the display it not generating it on the client.

Other approach is to use https connection on you project so you won&#039;t need CAPTCHA. But some people even so the connection is secured need to see that CAPTCHA to feel safe even though they are already safe without it. And by the way flash is better that html because there are not many robots to make automatic submissions.

&lt;b&gt;These articles are only to show how you could implement this graphically.&lt;/b&gt;

Hope this clears out the mist.</description>
		<content:encoded><![CDATA[<p>Jason, I agree with what you said. This class is only for the client-side, only visual part. But a true CAPTCHA is integrated with the server-side which is not the point of these articles.</p>
<p>You can take this generator and use it to secure what you need by linking it with your submission process. </p>
<p>Regarding the Fiddler issue&#8230; you can use Fiddler or any other spying tool on any kind of connection to catch data. You need to encrypt the Captcha code with a sort of algorithm so even somebody uses Fiddler and gets data it will not be able to decrypt it.</p>
<p>I would extend the Captcha class to call a service and get the captcha code from the server and the display it not generating it on the client.</p>
<p>Other approach is to use https connection on you project so you won&#8217;t need CAPTCHA. But some people even so the connection is secured need to see that CAPTCHA to feel safe even though they are already safe without it. And by the way flash is better that html because there are not many robots to make automatic submissions.</p>
<p><b>These articles are only to show how you could implement this graphically.</b></p>
<p>Hope this clears out the mist.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Benson</title>
		<link>http://www.flexer.info/2007/11/01/captcha-in-flex-running-example/comment-page-1/#comment-1605</link>
		<dc:creator>Jason Benson</dc:creator>
		<pubDate>Sun, 03 May 2009 05:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/01/running-example/#comment-1605</guid>
		<description>Couldn&#039;t the spammer easily use fiddler to find the service that Flex is submitting to.  Without *some* level of server side validation you could be pretty open.

(I like it script but I&#039;m not sure if it solves the issue.  If you&#039;re submitting to a webservice then won&#039;t that service be discoverable by a determined spammer [and these days aren&#039;t they all determined]?)</description>
		<content:encoded><![CDATA[<p>Couldn&#8217;t the spammer easily use fiddler to find the service that Flex is submitting to.  Without *some* level of server side validation you could be pretty open.</p>
<p>(I like it script but I&#8217;m not sure if it solves the issue.  If you&#8217;re submitting to a webservice then won&#8217;t that service be discoverable by a determined spammer [and these days aren't they all determined]?)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
