<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bonsai - Information Security Blog</title>
	<atom:link href="http://www.bonsai-sec.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bonsai-sec.com/blog</link>
	<description>Information security news from the small tree</description>
	<lastBuildDate>Tue, 12 Jul 2011 00:39:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Capture the Captcha &#8211; And the winner is&#8230;</title>
		<link>http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-and-the-winner-is/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-and-the-winner-is/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 00:01:09 +0000</pubDate>
		<dc:creator>nahuel</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[breaking captchas]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[capture the captcha]]></category>
		<category><![CDATA[ctc]]></category>
		<category><![CDATA[flash captcha]]></category>
		<category><![CDATA[hacker game]]></category>
		<category><![CDATA[imagemagic]]></category>
		<category><![CDATA[killing captchas]]></category>
		<category><![CDATA[mathhashcode]]></category>
		<category><![CDATA[ocr]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=676</guid>
		<description><![CDATA[Bonsai is very proud to announce the winner of our Capture the Captcha game: Julio Vidal, aka @madeye12 !
He wrote some lines for our Blog regarding his experience during the hole game:
Hi, my name is Julio Vidal aka madeye12. I&#8217;ve been following the Security Scene since a few years ago learning as much as I [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Bonsai</strong> is very proud to announce the winner of our Capture the Captcha game: Julio Vidal, aka <strong>@madeye12</strong> !</p>
<p>He wrote some lines for our Blog regarding his experience during the hole game:</p>
<blockquote><p>Hi, my name is<strong> Julio Vidal</strong> aka <strong>madeye12</strong>. I&#8217;ve been following the Security Scene since a few years ago learning as much as I could, hope to keep playing this kind of games to learn more and to make some friends while I&#8217;m on it. Well but this post isn&#8217;t about me, it&#8217;s about the way I broke the <strong>captchas</strong>.</p>
<p>I noticed the <strong>Capture The Captcha</strong> 2 days after it started, on 17/05/2011, so the first thing I did was to see the Team Scores page to see what was going on and as a gift I saw which captchas were broken by which teams that gives me an idea about wich ones were the easiers so I decide to go for #5.</p>
<p><span style="text-decoration: underline;"><strong>Captcha # 5</strong></span></p>
<p>It wasn&#8217;t hard to solve this captcha, unless u don&#8217;t have idea how to make an http request. <strong>The captcha was the addition of 2 numbers</strong>, the operation was written as in the <strong>source code within the web page</strong> so not very hard to solve. We just need a few steps to solve the captcha:</p>
<ul>
<li>Do a GET request to /five/ resource.</li>
<li>Use a regexp, /\d+ \+ \d+/, to find the operation string in the source code.</li>
<li>Split the string found with the regexp so we can get the numbers.</li>
<li>Make a POST with the result of the Add.</li>
</ul>
<p>Finally we just need to take a beer while the captchas are broken till we get to 5000.</p>
<p>Easy&#8230;this kind of captchas should be punished with jail but hell&#8230;If u still see windows 3.11 on schools u can expect everything.</p>
<p><span style="text-decoration: underline;"><strong>Captcha # 7</strong></span></p>
<p>This was a good one but it was like a <strong>crypto challenge with a simple substitution cipher on it</strong>, in the beginning you can think that it could be a hard captcha but after you refresh it a few times you can see on parameters the value of the flash object some numbers like 31,32,8,12,21 and that this numbers are always the same for the same letter so we can deduce that numbers represent letters we just need to get the right cipher so lets work ;)</p>
<p>Once you have the cipher everything resumes to following</p>
<ul>
<li>Do a GET request to /seven/ resource.</li>
<li>Use a regexp to find the params value in the source code.</li>
<li>Get the correct character for each number.</li>
<li>Make a POST with the right captcha value.</li>
</ul>
<p><strong><span style="text-decoration: underline;">Captcha # 3</span></strong></p>
<p>Damm&#8230;things start to get interesting, finally we don&#8217;t have the captcha value in the source code now it&#8217;s on an image as most of captchas with some noise on it not a lot but well better some than nothing like #2. So &#8230; how to solve this captcha???. Before this change I played once with image captchas and find that <strong>imagemagick</strong> is one of the best tools to work with images but didn&#8217;t knew how to use it well so the first thing I did was to <strong>convert the png file to bmp and tried to remove all the non black pixels</strong> but I always ended with a weird image, dunno why maybe I was too tired that day to keep typing scripts so I decide to RTFM of Imagemagick and find a great command to get rid of all the noise in the image but couldn&#8217;t do it on my linux box so this one I have to solve it in windows &#8230; why?? don&#8217;t ask me I was too tired and bored to figure out why :P. So to the point how do we solve the captchas</p>
<ul>
<li>When we have this kind of captchas the first thing to do is to find the image url so we can directly request the         image to save it on our box and play with it.</li>
<li>Once in our box we call our magical command `convert captcha.png -fill white +opaque &#8220;#0099cc&#8221; captcha.pnm`. how does this command work? easy&#8230;from the man page:</li>
</ul>
<p>+convert -convert between  image formats as well as resize an image,blur, crop, despeckle, dither, draw on,             flip, join, re-sample, and much more.<br />
-fill color          color to use when filling a graphic primitive<br />
-opaque color        change this color to the fill color<br />
So &#8230; wait!! we use +opaque instead of -opaque what does the &#8216;+&#8217; do???? the same but instead of filling the color it fills all the colors on the image except the one you specify and in this case the value of the captcha is with         the color value of #0099cc.</p>
<li>Ok, now we have an image with only the captcha value and luckly it doesn&#8217;t have distortion on it and letters with strange angles so we use an OCR tool to get the content of the value of the captcha, `gocr.exe captcha.pnm`</li>
<li><strong>And the captcha is broken</strong> we just keep sending POST til we broke the 5000.</li>
<p><span style="text-decoration: underline;"><strong>Captcha # 2</strong></span></p>
<p>This captcha was easier than #3 cuz in this captcha we don&#8217;t have noise on the image and it&#8217;s about solving an easy math operation so again&#8230;</p>
<ul>
<li>Find the image url and get the captcha image.</li>
<li>Use gocr to get the content of the image</li>
<li>Here we have four operands so we just need to figure out wich one it is (+,-,* or /) to split the string from the captcha and get the right answer to finally send it back to the server.</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Captcha # 8</strong></span></p>
<p>This one looks like hard to break for a newbie but it&#8217;s pretty easy if u always have a <strong>proxy</strong> on your connection or <strong>firebug ON</strong>, go get it if u don&#8217;t have it, in your firefox to see what&#8217;s going on every time you visit a web page, so with that in mind I visited the /eight/ captcha and looked at firebug to see what was going on on the net &#8230; and &#8230; tada!!!! I found this url &#8216;/eight/captcha/captcha.php&#8217; &#8230; let see what does it have &#8230;mmm&#8230;just a digit&#8230;really is this captcha that easy??&#8230; lets solve one by hand and see what does it send to the server &#8230; the same number!!! so we&#8217;re done with <strong>this captcha we just need to keep requesting /eight/captcha/captcha.php and send the content to the server with our team name and password</strong> to solve the captcha.</p>
<p><strong><span style="text-decoration: underline;">Captcha # 4</span></strong></p>
<p>Looks like things start to get harder from here. With this captcha I really suffered and just cuz I tought that it was simple like a conbination of #2 with #3. A subtraction with some noise on it and I really tried to solve it that way, removing noise trying to read the numbers but the numbers were to small so I decide to resize it but I din&#8217;t have luck :S the captcha looked to me like a hard captcha. Sometimes when we&#8217;re hacking stuff we often go by the wrong path thinking that the problem looked like one in the past and try to solve it that way instead of looking at other variables and another way to hack it. After some time I gave up and started again this captcha from 0 &#8230; and tada!!! just realized that <strong>the captcha url sends a cookie with every request </strong>that you make to the captcha url. <strong>mathhashcode</strong> is the cookie name and it&#8217;s obvious that something has to do with the result of the operation from here you can go by 2 ways, of course one is easier than the other but u can try both.</p>
<p>1.-One rule of a good captcha is not to accept the same captcha info after u submit it once,if u do this without changing the captcha value every time the user send it then the captcha could be bruteforced til the computer finds a right value, but we don&#8217;t need to use brute force in this case. we just need to solve it once and keep sending the same info &#8217;til the server stops accepting the answer as Human answer and then we repeat, solve another one and send the same info as many times as the server accepts it &#8217;til u broke the captcha.</p>
<p>2.-The first time I saw the <strong>mathhashcode</strong> it looked to me like an <strong>md5</strong> so I went to an online hash crack service and got the string 72237 &#8230; mmm the right answer was 7 &#8230; got another mathhashcode and got 112237 &#8230; and the answer was 11 &#8230; so it looke like it was easy to crack the hash going from 0 to 20, since the biggest substraction that I saw was 16, append 2237 and get the hash value. After some time I realize that the second digit of 2237 changed to 1 but I decide to went by option 1 since it was easy and I think it&#8217;s always better to go for the easiest solution.</p>
<p>So here we are, we have successfully broken 6 captchas but the 4 captchas left looks like the hardest, at least for me &#8230; I found source code of all of them and staterd to look at them trying to find my way &#8230; but they all looked hard for me.</p>
<p>#1 looked easy since it only showed 10 words but couldn&#8217;t think in a way to solve it.<br />
#6 damm just could think something to describe this captcha hard hard hard hard hard.<br />
#9 looked to me imposible I tried playing with the variables but nothing, even when it could be broken preaty easy (thanks go for sinfocol for telling me how to break it after the CtC ends).<br />
#10 I almost cried, lol, it looked prety hard but since #10 and #6 were unbroken and #6 was in flash I choosed #10.</p>
<p><strong><span style="text-decoration: underline;">Captcha #10</span></strong></p>
<p>This was fun, hard with out looking at source code but once u see the source code and going slow u can find the flaw that let u crack this captcha. After sometime realizing that I was not able to crack the image by it self I realized that it has a get parameter on the captcah url &#8220;__ec_i&#8221; and it looked to me like it has something to do with the captcha value, like mathhashcode from #4. So I decide to look for the captcha to see if it was open source or the source code was on internet or if I was lucky find a way to crack it :P &#8230; but how did I google it??? :S ??? remember the _ec_i parameter lets google it to see what do we find and after looking at some links I find the web page of the project. It was interesting to read that it didn&#8217;t use cookies or sessions to store the value of the captcha so I decide to find how does the captcha works. After getting my hands on the source code I found the file that generated the captcha and then my journey begins I found this line:</p>
<p>#&#8211; makes string of random letters (for embedding into image)</p>
<p>mmm and found</p>
<p>$this-&gt;solution;</p>
<p>So I just think that solution could have what I need so<strong> I mounted it on my local web server to see if I was right doing an echo of $this-&gt;solution; and yes it has our solution</strong> &#8230; damm if only I could find my way to the solution &#8230; I also found that the captcha info was stored on a tmp file and the name of the file was the __ec_i value, the _ec_i is &#8220;ec.&#8221; . time() . &#8220;.&#8221; . md5( $_SERVER["SERVER_NAME"] . CAPTCHA_SALT . rand(0,1&lt;&lt;30) );&#8221; keep that in mind.</p>
<p>I feel like I was lucky and started to think that maybe there was a /ten/tmp/ folder where the files could be read and I could be done &#8230; well no luck for me &#8230; maybe a trasversal directory attack so we can reach /tmp to find the files!!!!&#8230; no luck again&#8230; looks like the only way is to figure out the value of solution variable &#8230; how can I do this if that value is random, can we predict rand values??? maybe a php bug or a bad srand ;) and I found</p>
<p>srand(microtime() + time()/2 &#8211; 21017);</p>
<p>Looked like it wasn&#8217;t my day &#8230; wait didn&#8217;t __ec_i have time() on it&#8217;s name?!?!?! we&#8217;re back to the game again. Ok so most of the time we could recreate the value of the seed since we have time() on the name and the _ec_i value is generated after srand it must be the same value, if only we could find the exact value of microtime(). At this point I started to read a lot of documents about how to find that value but nothing that helps me. I decide to RTFM of microtime() and srand() srand accepts int values and microtime start with a floating value!!! Yes!! (int)(microtime() + time()/2 &#8211; 21017)=(time()/2 &#8211; 21017) and as a gift I found that u can submit a captcha value twice. so now we just modify our local captcha script to accept a parameter to substitute time() value so we can generate the same captcha than CTC server.</p>
<p>srand($_GET['seed']/2 &#8211; 21017);</p>
<p>and echo $this-&gt;solution;</p>
<p>and we&#8217;re done with this captcha we just need to make request to the /ten/ captcha read the _ec_i value from the source code (regexp /ec\.[0-9]+\.[0-9a-z]+/)<strong> get the time value spliting the _ec_i value and send it to our own server to get the answer and if the CTC server answer us with HUMAN! we send it again so we can solve this captcha faster.</strong></p>
<p>I must say that from here I cheated to get myself to the first place, I broke the 3 captchas with the same technique just finding the right values for each one.</p>
<p><span style="text-decoration: underline;"><strong>Captcha #1</strong></span></p>
<p>From the 3 captchas left this one looked the easiest since it has a small directory, this captcha remembers me to gmail captcha &#8230; and I think I read once that google captcha was broken so started to look for solutions but didn&#8217;t found anything. I looked for the source code and found cool-captcha, the first thing I did was to look for an srand &#8230; no luck this time. how does it generate the words??? it generate a rand number between 1 and the length of the Directory file, it comes with 2 files es.php and en.php. This files have the words showing in the image, in this case it was using a small portion of es.php, the first 10 words but how to find the rand value?!?!??!!?.</p>
<p>While reading some articles from Stefan Esser, rusian forums and raz0r.name blog I found an interesting article talking about <strong>how to predict php rand values</strong> but that wasn&#8217;t the only thing I found, the most important thing was</p>
<p>&#8220;In fact, errors in the implementation is not as important as the fact that HTTP connections established as Keep-alive, are serviced by the same process on a remote Web server. This means that the position of the random number generator will be the same &#8230; However, this is true only for those Web servers where PHP is used as a module of Apache (mod_php) &#8211; in the case of CGI or fastcgi random number generator will always be restarted.&#8221;</p>
<p>Why is this so important????&#8230;remember #10 where we know the seed and we know the source code of both (#10 and #1) so we know how many rands do we have to do to get the right word. so we mount the 2 captchas on our own server and echo the word of #1 instead of writing it to the image and we&#8217;re done.</p>
<p>*Now we just need to Get /ten/ captcha with keep-alive header, read the __ec_i value and get /one/captcha.php<br />
*We make the same but sending the seed value to our script with the keep-alive header too and get the captcha value.<br />
*Most of the time it will give you the right answer so now you just need to relax and see how does it get broken.</p>
<p>Note: <strong>Since this captcha has a small directory of images</strong> it can be broken by a <strong>probabilistic method</strong> according to the people I&#8217;ve been talking.</p>
<p><strong><span style="text-decoration: underline;">Captcha #9</span></strong></p>
<p>This captcha is the same than #1 but with the whole es.php directory and looks like some words aren&#8217;t in the same position than default or the cheat wasn&#8217;t working well since but basically I did the same than #1. This captcha can be broken in other way, thanks sinfocol for letting me know how. I tried playing with POST variables to fool the captcha but nothing works. I tried changing power param to off but didn&#8217;t work, tried to reuse a captcha value but none &#8230; and why???? <strong>well if u submit power=off and captcha empty it counts it like solved so this was an easy one don&#8217;t you think. Note for my self next time try to send empty values on parameters, lol</strong>.</p>
<p><strong><span style="text-decoration: underline;">Captcha #6</span></strong></p>
<p>Finally we&#8217;re with the hardest captcha, at least for me. It wasn&#8217;t hard to find the source code for this captcha since u can click the captcha and it&#8217;ll take u to the home page of the project. With this one I tried different things. The first thing I tried was to look at the string generated by six/captcha.php I was looking for something that gives me the answer in the response but nothing. After looking at source code I saw that I wasn&#8217;t possible and after reversing the icaptcha.swf file realize that it draw a lot of lines to draw the numbers. Wow&#8230;I played with the param values on the swf file but nothing good came. I don&#8217;t know a way for convert swf files to image files so we can split the numbers and try to read them with OCR software :S, once reversed the swf file I noticed the post to validate.php and went to my local copy to see what does that file do but nothing good came. After a few days and getting a lot of work to do <strong>I decide to cheat again after all hacking is about taking advantage of everything</strong> to do what you want, so #6 fault was to don&#8217;t call srand.</p>
<p>This script some times failed and dunno why so the only thing I did to get better results was to compare both results, the one from CTC server and the local copy, I think that it failed and get me different v values cuz the Dopping value, if u look at source code you can see that according to Doping value u can have more or less calls to rand(). So resume is:</p>
<ul>
<li>Modify icaptcha.php to print &#8220;.$code&#8221; after &#8220;v=12313123&#8230;&#8221; value.</li>
<li>Call /ten/ and /six/icaptcha.php with keep-alive header and read _ec_i value.</li>
<li>Send seed value to our /ten/ captcha and call /icaptcha.php</li>
<li>Split the answer from local script, compare length with the server one and if they have the same length submit the $code generated by our local script.</li>
</ul>
<p>I hope to keep playing this kind of games and make more friends to have interesting talks and of course drink some tequilas and eat some tacos. If you broke the captchas in diferent ways I would like to read them, you can always spam me on @madeye12.</p>
<p>Keep hacking and thanks to <strong>@bonsai_sec</strong> for setting the CTC.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-and-the-winner-is/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Android Application Penetration Testing</title>
		<link>http://www.bonsai-sec.com/blog/index.php/android-application-penetration-testing/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/android-application-penetration-testing/#comments</comments>
		<pubDate>Wed, 18 May 2011 13:26:34 +0000</pubDate>
		<dc:creator>lucas.apa</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[pentest]]></category>
		<category><![CDATA[pentesting android]]></category>
		<category><![CDATA[vulnerability]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=660</guid>
		<description><![CDATA[Bonsai Information Security is providing a new service.
 This service aims to: raise the security level of applications developed in this platform, detecting potential vulnerabilities that could generate risk to the company. Our methodology includes the analysis of file permissions, system processes, databases, system calls, HTTP Requests, Webservices used and logic operations specific to the [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Bonsai Information Security is providing a new service.</div>
<p><a href="http://www.bonsai-sec.com/blog/wp-content/uploads/android.png"> <img class="alignright size-full wp-image-664" style="float: right; border: 0px initial initial;" title="Android Logo" src="http://www.bonsai-sec.com/blog/wp-content/uploads/android.png" alt="" width="220" height="220" /></a>This service aims to: raise the security level of applications developed in this platform, detecting potential vulnerabilities that could generate risk to the company. Our methodology includes the analysis of file permissions, system processes, databases, system calls, HTTP Requests, Webservices used and logic operations specific to the application. Thus, it would detect possible security breaches that would be reported with strategic recommendations that seek to mitigate them.</p>
<div>For more information:</div>
<div id="_mcePaste"><a href="http://www.bonsai-sec.com/en/services/android-penetration-testing.php" target="_blank">http://www.bonsai-sec.com/en/services/android-penetration-testing.php</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/android-application-penetration-testing/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Capture the Captcha &#8211; It&#8217;s now Online !</title>
		<link>http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-its-now-online/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-its-now-online/#comments</comments>
		<pubDate>Fri, 13 May 2011 20:25:20 +0000</pubDate>
		<dc:creator>lucas.apa</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[capture the captcha]]></category>
		<category><![CDATA[ctc]]></category>
		<category><![CDATA[wargame]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=643</guid>
		<description><![CDATA[Bonsai Information Security presents: Capture the Captcha &#8211; The Game !
A Captcha is a type of challenge-response test used in computing to ensure that the response is not generated by a computer. It is a contrived acronym for “Completely Automated Public Turing test to tell Computers and Humans Apart.”
The process usually involves one computer asking [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bonsai-sec.com/blog/wp-content/uploads/ctc_flag.jpg"><img class="alignright" title="Capture The Captcha - The Flag" src="http://www.bonsai-sec.com/blog/wp-content/uploads/ctc_flag.jpg" alt="" width="300" height="168" /></a>Bonsai Information Security presents: Capture the Captcha &#8211; The Game !</p>
<p>A<strong> Captcha</strong> is a type of <strong>challenge-response test</strong> used in computing to ensure that the response is not generated by a computer. It is a contrived acronym for “<strong>Completely Automated Public Turing test to tell Computers and Humans Apart.</strong>”</p>
<p>The process usually involves one computer asking a user to complete a simple test (Captcha)<br />
which the computer is able to generate and grade. Because other computers are unable to solve the Captcha, <strong>any user entering a correct solution is presumed to be Human</strong>.</p>
<p>There are a lot of Captcha implementations out there, written in JSP, PHP, ASP, .NET which are very poorly implemented and introduce serious bugs in Web applications they are supposed to protect. We designed this CTC contest to serve as <strong>an educational exercise</strong> to give participants experience in securing Web Applications from automated attacks, as well as conducting and reacting to the sort of Captchas found in the wild.</p>
<p><a href="http://www.bonsai-sec.com/blog/wp-content/uploads/captchahuman2.png"><img class="alignright size-full wp-image-648" title="Human" src="http://www.bonsai-sec.com/blog/wp-content/uploads/captchahuman2.png" alt="" width="274" height="293" /></a></p>
<p>Teams are scored on their success in <strong>breaking the security</strong> behind 10 different captcha implementations, using automation and hacking techniques with the objective of bypassing the human verification process. The winner of the game will be the user/team who bypasses the <strong>h</strong><strong>ighest amount of captchas in less time</strong> in order to receive the major prize: a <strong>50USD Amazon Gift Card</strong>.</p>
<p>The CTC game starts at 2011-05-13 21:00:00 GMT 0 and ends at 2011-07-15 21:00:00 GMT 0 or if any participant breaks ALL captchas.</p>
<p>Happy Captcha Killing !</p>
<p><a href="http://ctc.bonsai-sec.com/">http://ctc.bonsai-sec.com/</a></p>
<p><strong>Follow</strong> <strong><a href="http://www.twitter.com/bonsai_sec/" target="_blank">@bonsai_sec</a></strong> on Twitter for Tips, Tricks &amp; More</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-its-now-online/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Web Application Security Training Buenos Aires &#8211; Julio 2011</title>
		<link>http://www.bonsai-sec.com/blog/index.php/web-application-security-training-buenos-aires-junio-2011/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/web-application-security-training-buenos-aires-junio-2011/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 15:06:10 +0000</pubDate>
		<dc:creator>nahuel</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[curso]]></category>
		<category><![CDATA[OWASP]]></category>
		<category><![CDATA[security training]]></category>
		<category><![CDATA[seguridad]]></category>
		<category><![CDATA[web hacking]]></category>
		<category><![CDATA[web security]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=638</guid>
		<description><![CDATA[Una vez más, está abierta la inscripción para el curso de Seguridad en Aplicaciones Web dictado por Bonsai. En esta oportunidad, se realizará durante los días 13 y 14 de Julio de 2011.
Para conocer más sobre el mismo, los invitamos a ingresar en el siguiente enlace:
http://www.bonsai-sec.com/es/education/web-security-buenos-aires.php
Si tiene alguna duda sobre el mismo, contáctenos.
Los esperamos!
]]></description>
			<content:encoded><![CDATA[<p>Una vez más, está abierta la inscripción para el curso de <strong>Seguridad en Aplicaciones Web</strong> dictado por Bonsai. En esta oportunidad, se realizará durante los días<strong> 13 y 14 de Julio de 2011</strong>.</p>
<p>Para conocer más sobre el mismo, los invitamos a ingresar en el siguiente enlace:</p>
<p><a href="http://www.bonsai-sec.com/es/education/web-security-buenos-aires.php" target="_blank">http://www.bonsai-sec.com/es/education/web-security-buenos-aires.php</a></p>
<p>Si tiene alguna duda sobre el mismo, <a href="../../es/contact/" target="_blank">contáctenos</a>.</p>
<p>Los esperamos!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/web-application-security-training-buenos-aires-junio-2011/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Anécdotas de un Password Cracker&#8230;</title>
		<link>http://www.bonsai-sec.com/blog/index.php/anecdotas-de-un-password-cracker/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/anecdotas-de-un-password-cracker/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 13:04:20 +0000</pubDate>
		<dc:creator>nahuel</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[ati stream]]></category>
		<category><![CDATA[crack]]></category>
		<category><![CDATA[cracking]]></category>
		<category><![CDATA[cuda]]></category>
		<category><![CDATA[hash]]></category>
		<category><![CDATA[john the ripper]]></category>
		<category><![CDATA[lm]]></category>
		<category><![CDATA[ntlm]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[pentest]]></category>
		<category><![CDATA[wordlist]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=615</guid>
		<description><![CDATA[Una de las tareas más divertidas a la hora de un Internal Pentest es la de intentar obtener el texto claro de todas las contraseñas de los usuarios de un Active Directory.
En la mayoría de los casos, tras realizar una serie exitosa de pasos adecuados, se logra el mayor privilegio en un entorno corporativo Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>Una de las tareas más divertidas a la hora de un <strong>Internal Pentest</strong> es la de intentar obtener el <em>texto claro</em> de todas las contraseñas de los usuarios de un Active Directory.</p>
<p>En la mayoría de los casos, tras realizar una serie exitosa de pasos adecuados, se logra el mayor privilegio en un entorno corporativo Microsoft Windows, el de Administrador de Dominio. Una vez allí, en lo más alto de la montaña, se corren herramientas para obtener todos los nombres de usuario acompañados por sus respectivas passwords pasadas por algún proceso de Hashing, <strong>LM, NT o ambas</strong>.<br />
<img class="alignright" title="JTR" src="http://www.openwall.com/john/jack.jpg" alt="" width="94" height="169" /></p>
<p>Más adelante, las herramientas de cracking de hashes como <strong><em>John the Ripper</em></strong>, <strong><em>oclHashcat+</em></strong> (si se tiene la suerte de tener alguna poderosa placa de red con soporte CUDA o ATI Stream) entre otras, se preparan para la gran fiesta y el banquete de <strong>hashes listas a ser rotas</strong>.</p>
<p>A partir de nuestra experiencia realizando Pentests, escalando privilegios, descargando esta información valiosa (previa autorización) y sometiendo las claves a procesos de cracking por varias horas, <strong>mejoramos la velocidad</strong> de obtención de las passwords en texto claro de todo el dominio de la compañía o institución objetivo. Un<strong> profile de claves más utilizadas</strong> y <strong>patrones comunes entre usuarios</strong> le permitirán al cliente mejorar sus esquemas y políticas de credenciales de acceso a sus recursos informáticos.</p>
<p>A continuación compartiremos algunos resultados que pueden ser de utilidad a la hora de armar un <strong><em>Wordlist especialmente diseñado</em></strong> para cada nueva sesión de cracking:</p>
<blockquote><p><strong>Nombre de la Empresa o Institución</strong><br />
<strong>[Empresa_o_Institución][Año]</strong> &#8211; <span style="text-decoration: underline;">Ejemplos</span>: Empresa2011, Empresa11, etc.<br />
<strong>Credencial Típica de Primer Login</strong> &#8211; <span style="text-decoration: underline;">Ejemplos</span>: soynuevo, reset123, changeme123<br />
<strong>Combinaciones numéricas del 0 al 9 </strong>- <span style="text-decoration: underline;">Ejemplos</span>: 01234567, 12345678, 0987654321<br />
<strong>Nombres Propios</strong><br />
<strong>[Nombre_Propio][0-9][0-9]</strong> &#8211; <span style="text-decoration: underline;">Ejemplos</span>: Lucas99, Nahuel66, Andres00</p></blockquote>
<p>Demostramos que con una <strong>Wordlist</strong> de este tipo, se pueden romper en aproximadamente <strong>5 minutos</strong>, <strong>un tercio</strong> de las claves de los usuarios de un dominio típico de <strong>1000</strong> usuarios.</p>
<p>En muchos casos, <strong>políticas de contraseñas más rigurosas</strong> deberían ser aplicadas para intentar evitar el uso de credenciales de acceso débiles, sin tener la necesidad del apoyo de un grupo MUY grande de personas en el <em>Helpdesk o Logical Access</em> para resetear diariamente claves de usuarios olvidadizos.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/anecdotas-de-un-password-cracker/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>OWASP TOP 10 Based Training Course</title>
		<link>http://www.bonsai-sec.com/blog/index.php/owasp-top-10-based-training-course/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/owasp-top-10-based-training-course/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 20:06:01 +0000</pubDate>
		<dc:creator>nahuel</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[curso]]></category>
		<category><![CDATA[OWASP]]></category>
		<category><![CDATA[owasp top ten]]></category>
		<category><![CDATA[seguridad]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=612</guid>
		<description><![CDATA[El próximo 15 de Abril de 2011 estaremos dictando este nuevo curso presencial de un día completo.
Para conocer más sobre el mismo, los invitamos a ingresar en el siguiente enlace:
http://www.bonsai-sec.com/es/education/owasp-top10.php
Los esperamos!
]]></description>
			<content:encoded><![CDATA[<p>El próximo <strong>15 de Abril de 2011</strong> estaremos dictando este nuevo curso presencial de <strong>un día completo</strong>.</p>
<p>Para conocer más sobre el mismo, los invitamos a ingresar en el siguiente enlace:</p>
<p><a href="http://www.bonsai-sec.com/es/education/owasp-top10.php" target="_blank">http://www.bonsai-sec.com/es/education/owasp-top10.php</a></p>
<p>Los esperamos!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/owasp-top-10-based-training-course/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lanzamos el Calendario 2011</title>
		<link>http://www.bonsai-sec.com/blog/index.php/lanzamos-el-calendario-2011/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/lanzamos-el-calendario-2011/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 23:56:21 +0000</pubDate>
		<dc:creator>valeria</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[CSRF]]></category>
		<category><![CDATA[cursos]]></category>
		<category><![CDATA[Local File Inclusion]]></category>
		<category><![CDATA[open redirect]]></category>
		<category><![CDATA[OS Commanding]]></category>
		<category><![CDATA[OWASP]]></category>
		<category><![CDATA[owasp top 10]]></category>
		<category><![CDATA[Remote File Inclusion]]></category>
		<category><![CDATA[sql injection]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[web application]]></category>
		<category><![CDATA[xss]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=567</guid>
		<description><![CDATA[Porque creemos que capacitar a los profesionales de una organización va más allá de acrecentar sus conocimientos técnicos; la capacitación mejora la imagen de su organización frente a sus clientes, motiva a los empleados y acelera el proceso de toma de decisiones. Las empresas u organizaciones con empleados altamente calificados tendrán excelentes resultados financieros en el corto y mediano plazo.
Es [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Porque creemos que capacitar a los profesionales de una organización va más allá de acrecentar sus conocimientos técnicos; la capacitación mejora la imagen de su organización frente a sus clientes, motiva a los empleados y acelera el proceso de toma de decisiones. Las empresas u organizaciones con empleados altamente calificados tendrán excelentes resultados financieros en el corto y mediano plazo.</p>
<p style="text-align: justify;">Es por eso que arrancamos el año a puro training! Durante el 2011 seguimos dictando trainings abiertos y sumamos a nuestros cursos tradicionales un <strong>nuevo training basado en OWASP Top 10</strong>.</p>
<h2>Abril</h2>
<p><strong>15 de Abril de 2011 :: Training basado en OWASP Top 10 :: Lanzamiento!</strong></p>
<p>El training basado en el <strong>OWASP Top 10</strong> está focalizado en las <strong>vulnerabilidades Web</strong> clasificadas por OWASP como de alto riesgo. Durante este curso de <strong>un día</strong> se explicará <strong>teóricamente</strong> cada vulnerabilidad con <strong>prácticas hands-on</strong>, <strong>demostraciones</strong> y las <strong>contramedidas</strong> necesarias para mitigar dichas vulnerabilidades</p>
<p>Pensado especialmente para desarrolladores, programadores, QA, Analistas de Seguridad Informática, etc.</p>
<p><strong>$ 1.100 ARS + IVA por persona</strong> <span style="color: #ff0000;">*</span><span style="color: #ff0000;"><strong>15% off * </strong></span>si te anotas antes del 21 de marzo.</p>
<address>Más información en <a href="http://www.bonsai-sec.com/es/education/owasp-top10.php">http://www.bonsai-sec.com/es/education/owasp-top10.php</a></address>
<h2>Junio</h2>
<p><strong>:: Web Application Security Training</strong></p>
<p>El training de <strong>Web Application Security</strong> de Bonsai se focaliza en el descubrimiento y explotación, manual y automático, de vulnerabilidades en aplicaciones Web. Durante este curso de<strong> dos días</strong>, se presentarán una serie de temas teóricos seguidos de <strong>prácticas hands-on</strong> realizadas por los asistentes. En cada práctica encontrarás <strong>vulnerabilidades para explotar</strong>, cada una con un nivel diferente de complejidad, las que desafiarán tu comprensión del tema.</p>
<p>Nuestra experiencia en capacitación nos ha ayudado a crear el mejor training de<strong> Web Application Security</strong>, el cual está orientado a la comprensión del <strong>código fuente</strong>: para cada tema se presenta un segmento de código vulnerable e independientemente del lenguaje, los asistentes aprenderán sobre vulnerabilidades en<strong> Java</strong>, <strong>PHP</strong>, <strong>ASP.NET</strong>,<strong> ASP</strong>, <strong>Ruby</strong> y <strong>Python</strong>.</p>
<p>Durante la primer hora, se repasarán conceptos básicos de <strong>HTTP</strong> y técnicas genéricas de descubrimiento de vulnerabilidades, para luego incrementar gradualmente el nivel de dificultad hasta llegar a comprender y ejecutar los ataques de mayor complejidad.</p>
<p>El training está diseñado para administradores, consultores, oficiales y responsables de Seguridad Informática; desarrolladores de aplicaciones Web, expertos en Quality Assurance, Administradores de Aplicaciones Web, etc.</p>
<address>Más información en <a href="http://www.bonsai-sec.com/es/education/web-application-security-training.php">http://www.bonsai-sec.com/es/education/web-application-security-training.php</a></address>
<h2>Próximas Fechas</h2>
<p>Y todavía hay más! Vamos a estar dictando cursos en los meses de <strong>Julio</strong>, <strong>Septiembre</strong> y <strong>Noviembre</strong>. En cuanto tengamos las fechas exactas de los mismos, las publicaremos en nuestro Google Calendar, y se irán actualizando por este medio también.</p>
<p><em>Consulte descuentos a grupos y cursos modalidad in-company</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/lanzamos-el-calendario-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vulnerando Sistemas con Herramientas Open Source</title>
		<link>http://www.bonsai-sec.com/blog/index.php/vulnerando-sistemas-con-herramientas-open-source/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/vulnerando-sistemas-con-herramientas-open-source/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 19:29:11 +0000</pubDate>
		<dc:creator>andres.riancho</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[w3af]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[interesante]]></category>
		<category><![CDATA[junin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software libre]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=563</guid>
		<description><![CDATA[El año pasado tuve el agrado de estar en las &#8220;VI Jornadas de Software Libre&#8221; en Junín, provincia de Buenos Aires. Para esta conferencia preparé una charla interesante y divertida sobre como &#8220;Vulnerar Sistemas con Herramientas Open Source&#8220;. Gracias a los organizadores de la conferencia, tenemos el video disponible aquí mismo, enjoy!

]]></description>
			<content:encoded><![CDATA[<p>El año pasado tuve el agrado de estar en las &#8220;VI Jornadas de Software Libre&#8221; en Junín, provincia de Buenos Aires. Para esta conferencia preparé una charla interesante y divertida sobre como &#8220;<strong>Vulnerar Sistemas con Herramientas Open Source</strong>&#8220;. Gracias a los organizadores de la conferencia, tenemos el video disponible aquí mismo, enjoy!</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="414" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://blip.tv/play/AYKQ%2B3oC" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="414" src="http://blip.tv/play/AYKQ%2B3oC" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/vulnerando-sistemas-con-herramientas-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bonsai presente en BugCON 2010</title>
		<link>http://www.bonsai-sec.com/blog/index.php/resumen-de-bugcon-2010/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/resumen-de-bugcon-2010/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 18:16:35 +0000</pubDate>
		<dc:creator>nahuel</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[bugcon]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[conferencias]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=521</guid>
		<description><![CDATA[Nahuel Grisolía nos cuenta sus impresiones de la BugCON, edición 2010.
Durante tres días las charlas y mini-trainings fueron protagonistas de BugCON, conferencia dedicada a la Seguridad Informática en el Instituto Politécnico Nacional en DF, Mexico.

Agradecemos a los participantes del training de Seguridad en Aplicaciones Web por su buena predisposición y atención.
También realizamos el juego Capture the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bonsai-sec.com/blog/wp-content/uploads/bandera.jpg"><img class="alignleft size-medium wp-image-522" style="border: 1.5px solid black;" title="BugCON Flag" src="http://www.bonsai-sec.com/blog/wp-content/uploads/bandera-300x175.jpg" alt="BugCON Flag" width="300" height="175" /></a><strong>Nahuel Grisolía</strong> nos cuenta sus impresiones de la <strong><a href="http://www.bugcon.org" target="_blank">BugCON</a></strong>, <strong>edición 2010.</strong></p>
<p>Durante tres días las charlas y mini-trainings fueron protagonistas de BugCON, conferencia<strong> </strong>dedicada a la Seguridad Informática en el Instituto Politécnico Nacional en <strong>DF, Mexico.</strong><br />
</br><br />
</br>Agradecemos a los participantes del <strong>training de Seguridad en Aplicaciones Web </strong>por su buena predisposición y atención.</p>
<p><a href="http://www.bonsai-sec.com/blog/wp-content/uploads/ctc.jpg"><img class="alignright size-medium wp-image-523" style="border: 1.5px solid black;" title="CTC Winner" src="http://www.bonsai-sec.com/blog/wp-content/uploads/ctc-300x122.jpg" alt="CTC Winner" width="300" height="122" /></a>También realizamos el juego <a href="http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-the-game/" target="_blank">Capture the Captcha</a>, dónde hubo dos ganadores que unieron fuerzas para poder llevarse los premios: Alfajores, Libros, Slides de nuestro Training, Merchandising, etc. Gracias a todos por participar!</p>
<p>Además de dictar el training, pude asistir a algunas de las charlas, quiero destacar: la de Will Metcalf, QA Manager del proyecto <strong>Suricata IDS;</strong> Matías Vara presentando un Kernel llamado <strong>Toro</strong> totalmente diseñado from scratch; Chema Alonso presentando a <strong>FOCA </strong>y<strong> </strong>presentaciones sobre <strong>Técnicas Forenses</strong> y de <strong>Overclocking</strong> entre muchísimas otras más.</p>
<p>Por último, mencionar la dedicación y el esfuerzo que han puesto los organizadores del evento, sus colaboradores y sponsors. Agradecerles especialmente por toda la atención y cuidados brindados, haciéndome sentir como en mi propia casa.</p>
<p>Gracias BugCON 2010 y por un <strong>BugCON 2011</strong> con mucha más fuerza!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/resumen-de-bugcon-2010/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Capture the Captcha &#8211; The Game</title>
		<link>http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-the-game/</link>
		<comments>http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-the-game/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 10:14:42 +0000</pubDate>
		<dc:creator>nahuel</dc:creator>
				<category><![CDATA[bonsai]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[capture the captcha]]></category>
		<category><![CDATA[capture the flag]]></category>
		<category><![CDATA[ctc]]></category>
		<category><![CDATA[ctf]]></category>
		<category><![CDATA[hacker game]]></category>

		<guid isPermaLink="false">http://www.bonsai-sec.com/blog/?p=487</guid>
		<description><![CDATA[A Captcha is a type of challenge-response test used in computing to  ensure that the response is not generated by a computer. It is a  contrived acronym for &#8220;Completely Automated Public Turing test to tell  Computers and Humans Apart.&#8221;
The process usually involves one computer asking a user to complete a  simple [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.bonsai-sec.com/blog/wp-content/uploads/ctc_flag.jpg"><img class="size-medium wp-image-489 alignleft" src="http://www.bonsai-sec.com/blog/wp-content/uploads/ctc_flag-300x168.jpg" alt="Capture the Captcha Flag" width="300" height="168" /></a>A <strong>Captcha</strong> is a type of <strong>challenge-response test</strong> used in computing to  ensure that the response is not generated by a computer. It is a  contrived acronym for &#8220;<em><strong>Completely Automated Public Turing test to tell  Computers and Humans Apart</strong></em>.&#8221;</p></blockquote>
<p>The process usually involves one computer asking a user to complete a  simple test (Captcha) which the computer is able to generate and grade.  Because other computers are unable to solve the Captcha, <strong>any user  entering a correct solution is presumed to be Human</strong>.There are a lot of <strong>Captcha</strong> implementations out there, written in JSP,  PHP, ASP, .NET which are <strong>very poorly implemented and introduce serious  bugs in Web applications</strong> they are supposed to protect.</p>
<p>We developed 10 different Captcha implementations, each with its own  weakness, for participants to break using automation and hacking  techniques with the objective of bypassing the human verification  process.</p>
<p style="padding-left: 60px; text-align: center;"><a href="http://www.bonsai-sec.com/blog/wp-content/uploads/captcha_bot.png"><img class="size-full wp-image-504      alignleft" style="border: 1.5px solid black;" title="captcha_bot" src="http://www.bonsai-sec.com/blog/wp-content/uploads/captcha_bot.png" alt="Captcha Bot" width="154" height="175" /></a><a href="http://www.bonsai-sec.com/blog/wp-content/uploads/captcha_human.png"><img class="size-full wp-image-505 aligncenter" style="border: 1.5px solid black;" title="captcha_human" src="http://www.bonsai-sec.com/blog/wp-content/uploads/captcha_human.png" alt="Captcha Human" width="154" height="175" /></a></p>
<p>Teams (or a single participant) are scored on their success in breaking the security behind every presented Captcha on the game.</p>
<p>This CTC contest is designed to serve as an educational exercise to give  participants experience in<strong> securing Web Applications from automated  attacks</strong>, as well as conducting and reacting to the sort of Captchas  found in the wild.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bonsai-sec.com/blog/index.php/capture-the-captcha-the-game/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

