<?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>Pedro Proença &#187; Others</title>
	<atom:link href="http://pedroproenca.info/category/projects/others-projects/feed" rel="self" type="application/rss+xml" />
	<link>http://pedroproenca.info</link>
	<description>delphi, php, mysql, css, html</description>
	<lastBuildDate>Tue, 15 Dec 2009 21:01:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Router Cracker Application</title>
		<link>http://pedroproenca.info/router-cracker-application</link>
		<comments>http://pedroproenca.info/router-cracker-application#comments</comments>
		<pubDate>Tue, 17 Nov 2009 01:24:02 +0000</pubDate>
		<dc:creator>Pedro</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[crack]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[megaupload]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[rapidshare]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[speedtouch]]></category>
		<category><![CDATA[SSID]]></category>
		<category><![CDATA[thomson]]></category>
		<category><![CDATA[WAP]]></category>

		<guid isPermaLink="false">http://pedroproenca.info/?p=13</guid>
		<description><![CDATA[Recently I&#8217;ve read a internet article on &#8220;How To Crack Thomson/Speedtouch Password&#8221;, I got pretty surprise for the simplicity and how easy you could retrieve the router default password + SSID, using the serial number. Of course if you want to steal your neighbor&#8217;s internet it won&#8217;t be as much simple has you think, it [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve read a internet article on &#8220;How To Crack Thomson/Speedtouch Password&#8221;, I got pretty surprise for the simplicity and how easy you could retrieve the router default password + SSID, using the serial number. Of course if you want to steal your neighbor&#8217;s internet it won&#8217;t be as much simple has you think, it requires that you know your neighbor router serial number OR that you find a online website which already generated a hand full of serials, from all years (07-09) and this way you can get the default password using the SSID (usually appears next to the wireless network name).</p>
<p>After reading carefully the explanation about cracking the router I decided to quickly code a application capable of retrieving the router Default Password and SSID, unfortunately it will work only if you know the routers serial number. Maybe in a future version you will be able to get the data using only the SSID. Subscribe to this post if you want to get updates.</p>
<p>Below I leave you with the details:</p>
<p><img title="Mais..." src="http://vsgl.net/report/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<h3>My Application + Download</h3>
<p>The application I developed is fairly simple:</p>
<p><img class="alignnone size-full wp-image-4" title="Thomson Cracking Application" src="http://pedroproenca.info/wp-content/uploads/2009/11/thomson-cracking.jpg" alt="Thomson Cracking Application" width="512" height="321" /></p>
<p>Once you&#8217;ve inserted the serial in the first box, you will be able to get both password and SSID.<br />
I included also a feature which let&#8217;s you Add/Save/Load a list with all of your serials.</p>
<h3>Download APP</h3>
<p><strong>Size: </strong>335.99kb<strong><br />
MD5:</strong> e208a1f851b8acf01f7f3ff4fe6436b0<strong><br />
Link: </strong><a href="http://pedroproenca.info/wp-content/uploads/2009/11/CrackThom.zip">Thomson Cracking Application</a></p>
<h3>Serial Number Explanation</h3>
<p>Using the Thomson/Speedtouch serial number (example: CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #000000;">AH</span><span style="color: #ff6600;">1AB</span> (A1) ), we are able to discover, not only the default password of the router but also the SSID</p>
<p>CP<span style="color: #993300;"> YY</span><span style="color: #666699;"> WW</span><span style="color: #000000;"> PP </span><span style="color: #ff6600;">XXX</span> (CC)</p>
<p>Each item has it&#8217;s own significance:</p>
<p><span style="color: #993300;">YY</span> <span style="color: #000000;">- </span>Year of Production<br />
<span style="color: #666699;">WW</span><span style="color: #000000;"> – Production Week<br />
</span>PP – Product Code<br />
<span style="color: #ff6600;">XXX</span> <span style="color: #000000;">- Unkown<br />
</span>CC – Configuration Code</p>
<p>The XXX value, is unknown and must always be composed by capital letters and numbers.</p>
<h3>Cracking Step-by-step</h3>
<p>Let&#8217;s use the serial number &#8220;CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #000000;">AH</span><span style="color: #ff6600;">1AB</span>&#8221; as an example:</p>
<ul>
<li>Remove the PP (AH) and it will result in CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #ff6600;">1AB</span></li>
<li>Convert the <span style="color: #ff6600;">1AB </span>to hexadecimal (below is a delphi example)</li>
</ul>
<pre class="brush:delphi">code := '1AB';
for I := 1 to strlen(PChar(code)) do
begin
c := ord(code[i]);
hex := hex + IntToHex(c,1);
end;</pre>
<ul>
<li>The c0nverstion will result in <span style="color: #ff6600;">314142</span>, add this to the part we left behind CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #ff6600;">314142 </span></li>
<li>Now you need to create the SHA1 hash code of the last result (CP<span style="color: #993300;">08</span><span style="color: #666699;">17</span><span style="color: #ff6600;">314142</span>), which will be <span style="color: red;"><strong>bc8c18aec9</strong><span style="color: #000000;">e740c37be79e7f2058c50fd9</span><strong>22e4bb</strong></span>
<ul>
<li><span style="color: red;"><strong>bc8c18aec9 </strong></span>-Is the default router password (WEP/WPA)</li>
<li><span style="color: red;"><strong>22e4bb </strong></span>-Is the SSID of the router</li>
</ul>
</li>
</ul>
<p>These few steps are all that&#8217;s necessary to crack a Thomson/Speedtouch router.</p>
<p><strong>Source: </strong><a title="Algoritmo Chaves Wireless" href="http://fodi.me/internet/algoritmo-chaves-wireless-thomson-meo/" target="_blank">http://fodi.me/internet/algoritmo-chaves-wireless-thomson-meo/</a> (Portuguese)</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d13').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d13" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://pedroproenca.info/router-cracker-application&amp;submitHeadline=Router+Cracker+Application&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://pedroproenca.info/router-cracker-application" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://pedroproenca.info/router-cracker-application&amp;bm_description=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://pedroproenca.info/router-cracker-application&amp;T=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://pedroproenca.info/router-cracker-application&amp;title=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://pedroproenca.info/router-cracker-application" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://pedroproenca.info/router-cracker-application" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Router+Cracker+Application+@+http://pedroproenca.info/router-cracker-application" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://pedroproenca.info/router-cracker-application&amp;t=Router+Cracker+Application" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://pedroproenca.info/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d13').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d13').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://pedroproenca.info/router-cracker-application/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
