<?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>gHacks technology news &#187; Hacking</title>
	<atom:link href="http://www.ghacks.net/category/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 11:26:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Take advantage of md5 checksums for download validity</title>
		<link>http://www.ghacks.net/2009/11/20/take-advantage-of-md5-cecksums-for-download-validity/</link>
		<comments>http://www.ghacks.net/2009/11/20/take-advantage-of-md5-cecksums-for-download-validity/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 22:53:31 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[check sum]]></category>
		<category><![CDATA[file downloads]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[secure downloads]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18689</guid>
		<description><![CDATA[I&#8217;m fairly confident that you have, at one time or another, run across an md5checksum file as you have perused the internet. Whether it was a download file or even an application upgrade, those md5 files are there for a reason. But just what is the reason?
When someone puts a file up on a server [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m fairly confident that you have, at one time or another, run across an md5checksum file as you have perused the internet. Whether it was a download file or even an application upgrade, those md5 files are there for a reason. But just what is the reason?</p>
<p>When someone puts a file up on a server for download, how does the host or the end-user know, for sure, the file they are about to download (or are serving up) is the valid file? What if someone hacked into the server and replaced the file with a bogus file that contained malicious code? It&#8217;s happened before and it will happen again. Fortunately there is a way to avoid downloading invalid files &#8211; checking the md5 hash. The only problem is that this method only works if the host and user knows how to use md5 tools. In this tutorial you will learn how to add an md5 checksum to a file and how to run a check on a file you have downloaded.</p>
<p><span id="more-18689"></span><strong>What is md5 and checksum?</strong></p>
<p>Before we continue with the actual steps, you might benefit from knowing exactly how the process of checksumming works. MD5 stands for Message Digest algorithm 5, which is a cryptographic 128 bit hash function and serves as a &#8220;fingerprint&#8221; for a digital file. A checksum is a fixed-size datum that is computed from a block of data. When it is crucial for a piece of data (such as a download) to be valid, the datum is compared to the original block the datum was computed from to check for a match. When an md5 checksum matches, the user/host can be certain the file is valid. When the md5 checksum does not match, a red flag should immediately go up and the original block of data should be discarded. If a file changes by so much as a byte, the checksum will fail.</p>
<p>For most users these tasks are handled from the command line. There are GUI tools available (such as GtkHASH) that can tackle the same tasks. But for the purposes of this tutorial we will stick with the command line tool.</p>
<p><strong>Creating an md5 sum</strong></p>
<p>For those who plan on hosting files for download, you will want to know how to create an md5 sum. This is very simple. Open up a terminal and change to the directory holding the file you want to work with. Say, for example, you want to create an md5 on the file <strong>/var/www/files/download.tgz</strong>. To do this you would change to the <strong>/var/www/files</strong> directory and issue the following command:</p>
<p><em>md5 download.tgz</em></p>
<p>The above command will output something like:</p>
<div>
<p><em>632668fb5bb3fe578033a42b4ba718f2  download.tgz</em></p>
<p>Now for those that are wanting to have an md5 checksum file available you can run that command and pipe the output to a file like so:</p>
<p>md5 download.tgz &gt; download.md5</p>
<p>Now you can upload the <strong>download.md5 </strong>file alongside the <strong>download.tgz </strong>file so the users can run a checksum.</p>
<p><strong>Running a checksum</strong></p>
<p>Now that you have both files, you want to run your checksum to make sure the .tgz file is the legitimate file. To do this you would issue the command:</p>
<p><em>md5sum  download.md5</em></p>
<p>The output of the above command should look familiar (if you created the md5sum):</p>
<p><em> 632668fb5bb3fe578033a42b4ba718f2  download.md5</em></p>
<p>Now run the md5sum command on the .tgz file like this:</p>
<p><em>md5sum download.tgz</em></p>
<p>The output should reveal the exact same string as shown above (the only difference being the file name will be different):</p>
<p><em>632668fb5bb3fe578033a42b4ba718f2  download.md5</em></p>
<p>If that string of characters isn&#8217;t the same, the checksum didn&#8217;t pass and you might be dealing with a corrupted file. In case of a corrupted file you will want to contact the host of the file or the developer. But if the strings match you know the checksum passed and the file should be safe to use.</p>
<p><strong>Final thoughts</strong></p>
<p>MD5 sums have been in use for quite some time. Whenever given the chance you should always take advantage of that system. Who knows, it might save you from installing a piece of malicious software some day.</p>
<div></div>
</div>

	Tags: <a href="http://www.ghacks.net/tag/check-sum/" title="check sum" rel="tag">check sum</a>, <a href="http://www.ghacks.net/tag/file-downloads/" title="file downloads" rel="tag">file downloads</a>, <a href="http://www.ghacks.net/tag/md5/" title="md5" rel="tag">md5</a>, <a href="http://www.ghacks.net/tag/secure-downloads/" title="secure downloads" rel="tag">secure downloads</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/12/24/verify-the-integrity-and-authenticity-of-files/" title="Verify the integrity and authenticity of files (December 24, 2007)">Verify the integrity and authenticity of files</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/01/12/verify-file-integrity-of-backups/" title="Verify File Integrity Of Backups (January 12, 2009)">Verify File Integrity Of Backups</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/theoretical-cryptography-part-i-md5/" title="Theoretical Cryptography Part I &#8211; MD5 (February 7, 2008)">Theoretical Cryptography Part I &#8211; MD5</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/07/13/how-to-download-files-from-the-internet-the-secure-way/" title="How To Download Files From The Internet The Secure Way (July 13, 2009)">How To Download Files From The Internet The Secure Way</a> (9)</li>
	<li><a href="http://www.ghacks.net/2006/04/09/clickcrypt-26/" title="ClickCrypt 2.6 (April 9, 2006)">ClickCrypt 2.6</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/20/take-advantage-of-md5-cecksums-for-download-validity/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>iPhone Update: iPhone Has Malicious Code, More Verizon iPhone Rumors And More</title>
		<link>http://www.ghacks.net/2009/11/14/iphone-update-iphone-has-malicious-code-more-verizon-iphone-rumors-and-more/</link>
		<comments>http://www.ghacks.net/2009/11/14/iphone-update-iphone-has-malicious-code-more-verizon-iphone-rumors-and-more/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 03:04:35 +0000</pubDate>
		<dc:creator>Shailpik</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[apple rumor]]></category>
		<category><![CDATA[jailbreak iphone]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[verizon wireless]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18485</guid>
		<description><![CDATA[As I continue with my line of iPhone updates, one thing is becoming pretty clear – Apple is going to have a massive year next year. They have always been good at generating vas amounts of publicity by not saying anything at all regarding their future plans and now we have rumors of a Verizon [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-13689" title="iphone3gs" src="http://www.ghacks.net/wp-content/uploads/2009/06/iphone3gs.jpg" alt="iphone3gs" width="128" height="149" />As I continue with my line of iPhone updates, one thing is becoming pretty clear – Apple is going to have a massive year next year. They have always been good at generating vas amounts of publicity by not saying anything at all regarding their future plans and now we have rumors of a Verizon iPhone flying in every direction. I will be doing a general Apple post right after this one and there we can look at the tablet scenario, which is showing no signs of cooling down.</p>
<p>As for the iPhone of the present, we now have the first truly malicious iPhone malware going around while Apple continues to grow in the smartphone business, posting more profits that the Finnish giant Nokia.</p>
<h3><span id="more-18485"></span>iPhone Malicious Code Now A Reality</h3>
<p><img class="aligncenter size-full wp-image-17954" title="scary-iphone" src="http://www.ghacks.net/wp-content/uploads/2009/10/scary-iphone.jpg" alt="scary-iphone" width="380" height="626" /></p>
<p>For those who paid no heed to the first ever iPhone worm, here’s a much scarier piece of a news. While the first worm never really did much other than change your wallpaper to rickroll you, there’s a new piece of code that has truly malicious intents for your iPhone.</p>
<p>It attacks the same way as the last one does but instead of making its presence known, it will silently steal all the personal data that it can find on the iPhone and inside the apps. Thankfully, just like the last worm, this malicious program can only infiltrate jailbroken iPhones that have open SSH sessions and have not changed their default root password. So to all those who are jailbreaking their iPhones, do take your time to understand exactly what you are doing and close this gaping security holes. [<a href="http://arstechnica.com/apple/news/2009/11/truly-malicious-iphone-malware-now-out-in-the-wild.ars">read</a>]</p>
<h3>New iPhone May Be Verizon Only</h3>
<p>After the rumors of the next generation iPhone going worldmode surfaced, we now have rumors about the iPhone being made solely for Verizon. This is the result of a confusion regarding reports from chip-maker Qualcomm who have been making new CDMA chips for their parters, including Verizon. [<a href="http://www.appleinsider.com/articles/09/11/12/conflicting_reports_within_qualcomm_suggest_verizon_only_iphone.html">read</a>]</p>
<h3>Famous iPhone Dev Quits, First Of The Many To Follow?</h3>
<p>After enduring Apple’s shenanigans with the app store approval process, the famed developer Joe Hewitt (creator of the Facebook app)  has officially declared that he is quitting iPhone development. And he makes no bones about being vocal about why he quit, clearly stating that his decision “has had everything to do with Apple’s Policies”.</p>
<p>With so many other developers also complaining about Apple’s policies, Joe’s move may be taken as an example and followed. And if that does happen, Apple will be losing the most important part of what makes the iPhone tick &#8212; great apps from great developers. [<a href="http://www.techcrunch.com/2009/11/11/joe-hewitt-developer-of-facebooks-massively-popular-iphone-app-quits-the-project/">read</a>]</p>
<h3>iPhone Now Has 17% World Smartphone Market Share</h3>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-18486" title="Picture 4" src="http://www.ghacks.net/wp-content/uploads/2009/11/Picture-41.png" alt="Picture 4" width="514" height="325" /></p>
<p>Apple is fast closing in on the others in the global mobile Handset Market. After being in the market for barely two and a half years, Apple now constitutes 17.1% of the total global smartphone market.</p>
<p>This is a 50% growth for Apple in recent times, showing exactly how fast a company can grow with the right steps and a brilliant product. The other reason why Nokia is so very important is because it is also one of the largest sellers of smartphones. Its smartphones are the reason why Symbian still holds such a large share of the market. Blackberries may have been very popular in different pockets (RIM is on the wane) but nothing beats Nokia’s worldwide reach. Nothing until now it seems. [<a href="http://www.appleinsider.com/articles/09/11/12/apples_iphone_captures_17_of_worldwide_smartphone_market.html">read</a>]</p>
<h3>Want More Bang For Your Buck? Try The App Store</h3>
<p>Analysts have shown that iPhone users have more than just the highest number of Apps to choose from. They also have more value for money when calculated on dollar for dollar. [<a href="http://www.9to5mac.com/node/11086">read</a>]</p>
<h3>Apple Creates More Profit Than Nokia</h3>
<p>In the last quarter (Q3), Apple made much more money than the world’s number one mobile handset maker – Nokia. And the difference is significant too. While Nokia made $1 billion, Apple made $1.6 billion. [<a href="http://www.macworld.com/article/143796/2009/11/iphone_profit.html">read</a>]</p>

	Tags: <a href="http://www.ghacks.net/tag/apple-rumor/" title="apple rumor" rel="tag">apple rumor</a>, <a href="http://www.ghacks.net/tag/iphone/" title="iPhone" rel="tag">iPhone</a>, <a href="http://www.ghacks.net/tag/jailbreak-iphone/" title="jailbreak iphone" rel="tag">jailbreak iphone</a>, <a href="http://www.ghacks.net/tag/malware/" title="malware" rel="tag">malware</a>, <a href="http://www.ghacks.net/tag/verizon-wireless/" title="verizon wireless" rel="tag">verizon wireless</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/07/25/iphone-jailbreaking-on-windows/" title="iPhone Jailbreaking For Windows (July 25, 2008)">iPhone Jailbreaking For Windows</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/07/22/wordpress-for-iphone-is-not-a-killer-app/" title="Wordpress For iPhone Is Not A Killer App (July 22, 2008)">Wordpress For iPhone Is Not A Killer App</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/07/22/why-you-should-not-be-an-early-adopter/" title="Why you should not be an early adopter (July 22, 2009)">Why you should not be an early adopter</a> (23)</li>
	<li><a href="http://www.ghacks.net/2009/08/18/why-dedicated-media-players-are-still-cool/" title="Why Dedicated Media Players are still cool (August 18, 2009)">Why Dedicated Media Players are still cool</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/07/03/why-blackberry-and-windows-mobile-isn%e2%80%99t-going-anywhere/" title="Why Blackberry and Windows Mobile isn’t going anywhere (July 3, 2009)">Why Blackberry and Windows Mobile isn’t going anywhere</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/14/iphone-update-iphone-has-malicious-code-more-verizon-iphone-rumors-and-more/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iPhone Update: Crazy Hack, First Ever Worm, HD Radio And More</title>
		<link>http://www.ghacks.net/2009/11/12/iphone-update-crazy-hack-first-ever-worm-hd-radio-and-more/</link>
		<comments>http://www.ghacks.net/2009/11/12/iphone-update-crazy-hack-first-ever-worm-hd-radio-and-more/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 02:58:18 +0000</pubDate>
		<dc:creator>Shailpik</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[best iphone apps]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[ibiquity gigware navigation controller]]></category>
		<category><![CDATA[iphone hd radio]]></category>
		<category><![CDATA[rickroll]]></category>
		<category><![CDATA[sparkz pico projector]]></category>
		<category><![CDATA[worm]]></category>
		<category><![CDATA[zune hd]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18428</guid>
		<description><![CDATA[I am going to be doing a series of iPhone related posts for the next few posts. We have people doing interesting things with their iPhones and have more interesting accessories coming out for it now. In the meantime, the first ever worm for the iPhone gives everyone a bit of a scare. Get over [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-13689" title="iphone3gs" src="http://www.ghacks.net/wp-content/uploads/2009/06/iphone3gs.jpg" alt="iphone3gs" width="128" height="149" />I am going to be doing a series of iPhone related posts for the next few posts. We have people doing interesting things with their iPhones and have more interesting accessories coming out for it now. In the meantime, the first ever worm for the iPhone gives everyone a bit of a scare. Get over to the other side and get updated.</p>
<h3><span id="more-18428"></span>First iPhone Worm Rickrolls Jailbroken iPhones</h3>
<p><img class="aligncenter size-full wp-image-18425" title="rickroll-091109" src="http://www.ghacks.net/wp-content/uploads/2009/11/rickroll-091109.jpg" alt="rickroll-091109" width="320" height="480" /></p>
<p>This has been the main worry about everything Mac, They do not have viruses now, true but as they start to get more popular they will attract the attention of malware creators. So in that vein of paranoia, we have news of the first ever worm for the iPhone.</p>
<p>You can cut out the screaming and the deep breathing exercises because it is a) completely harmless and b) only effective on jailbroken iPhones. It does things like change the wallpaper and rickrolling users, so it is not exactly destroying your iPhone yet. A worm on a jailbroken phone is a worm on a device that has already been tampered with. So you can wait for the first ever worm on legit iPhones before you hit the panic button. [<a href="http://www.appleinsider.com/articles/09/11/09/first_known_iphone_worm_rickrolls_jailbroken_apple_handsets.html">read</a>]</p>
<h3>Complete Car Control Via iPhone</h3>
<div style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param value="http://www.youtube.com/v/_x5IziyOcAg&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/_x5IziyOcAg&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/_x5IziyOcAg&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>Okay, this is certifiably crazy. In fact, we should probably start a ‘gHacks Certifiably Nuts’ award just for these fellas. But I must admit that what they are is doing is pretty cool. We know that the iPhone can already be used to start your car remotely but <em>fully driving </em>with the iPhone kinda takes the cake.</p>
<p>So what you do is you take some electronic control circuits, hook them up to control your steering, acceleration and brakes and then control them wirelessly. If you want a less vague and more accurate description, check out the videos. It is quite nicely done and I especially love the fact that they are using the accelerometer to control the steering.</p>
<div style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param value="http://www.youtube.com/v/EQaQFxWG8Ro&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/EQaQFxWG8Ro&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/EQaQFxWG8Ro&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>The result is pretty 007-ish &#8212; that you can drive your car through your iPhone. <em>Look M(a), no hands!</em> [<a href="http://www.tuaw.com/2009/11/10/dangerously-driving-a-car-with-an-iphone/">read</a>]</p>
<h3>HD Radio Comes To The iPhone Via Gigaware</h3>
<p><img class="aligncenter size-medium wp-image-18426" title="Gigaware Navigation Control from iBiquity" src="http://www.ghacks.net/wp-content/uploads/2009/11/Picture-1-500x177.png" alt="Gigaware Navigation Control from iBiquity" width="500" height="177" /></p>
<p>Now that the Zune HD is out, your least favorite co-worker who loves to make fun of your liking for Apple has probably been going on and on about how his Zune HD does HD radio and your iPod Touch does not. Setting aside the all important the question of how many <em>good </em>HD radio stations are there near you, you can now get back at him saying “there’s an app for that!”</p>
<p>But that would be kinda half true because even though iBiquity has made an app that plays HD radio on your iPhone, you still have to get an additional hardware for accomplishing the feat. The device is called Gigaware Navigation Controller and is essentially an HD tuner with iPhone integration. It allows you to seek and auto tune as well. Plus there is Facebook tagging and iTunes tagging.</p>
<p>Works with the latest iPhone and the iPod Touch. Available on RadioShack. [<a href="http://www.macworld.com/article/143735/2009/11/hdradio_iphone.html?lsrc=rss_main">read</a>]</p>
<h3>Sparkz Projector For Your iPhone</h3>
<p><img class="aligncenter size-medium wp-image-18427" title="091110-sparkz-01" src="http://www.ghacks.net/wp-content/uploads/2009/11/091110-sparkz-01-500x315.jpg" alt="091110-sparkz-01" width="500" height="315" /></p>
<p>Do you want to spend a lot of money on a pico projector that will work with your iPhone/ iPod Touch/iPod Video? If you do, you can now have the Sparkz dock that lets you connect any of those devices and more to it so that you can project your favorites onto a nearby screen. It will support a/v and VGA inputs too.</p>
<p>Other than this extended support for inputs, it has a resolution of 640&#215;480, stereo speakers and a 60-inch viewing area. It charges your docked device while it is projecting <em>and</em> it comes with its own tripod. The price so much goodness? A mere $495. Hey, I did say a <em>lot</em> of money. [<a href="http://www.engadget.com/2009/11/10/sparkz-projector-dock-for-iphone-displays-your-videos-empties/">read</a>]</p>
<div style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param value="http://www.youtube.com/v/Q8mM2OhJvf4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/Q8mM2OhJvf4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/Q8mM2OhJvf4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/best-iphone-apps/" title="best iphone apps" rel="tag">best iphone apps</a>, <a href="http://www.ghacks.net/tag/hack/" title="hack" rel="tag">hack</a>, <a href="http://www.ghacks.net/tag/ibiquity-gigware-navigation-controller/" title="ibiquity gigware navigation controller" rel="tag">ibiquity gigware navigation controller</a>, <a href="http://www.ghacks.net/tag/iphone/" title="iPhone" rel="tag">iPhone</a>, <a href="http://www.ghacks.net/tag/iphone-hd-radio/" title="iphone hd radio" rel="tag">iphone hd radio</a>, <a href="http://www.ghacks.net/tag/rickroll/" title="rickroll" rel="tag">rickroll</a>, <a href="http://www.ghacks.net/tag/sparkz-pico-projector/" title="sparkz pico projector" rel="tag">sparkz pico projector</a>, <a href="http://www.ghacks.net/tag/worm/" title="worm" rel="tag">worm</a>, <a href="http://www.ghacks.net/tag/zune-hd/" title="zune hd" rel="tag">zune hd</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/07/iphone-update-iphone-loved-hated-and-unlocked-99-3gs-rfid-and-more/" title="iPhone Update: iPhone Loved, Hated And Unlocked, $99 3GS, RFID And More (November 7, 2009)">iPhone Update: iPhone Loved, Hated And Unlocked, $99 3GS, RFID And More</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/11/12/iphone-update-carrier-wars-and-two-new-apps/" title="iPhone Update: Carrier Wars And Two New Apps (November 12, 2009)">iPhone Update: Carrier Wars And Two New Apps</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/11/12/iphone-update-apple-adds-clarity-and-3-new-iphone-apps/" title="iPhone Update: Apple Adds Clarity and 3 New iPhone Apps (November 12, 2009)">iPhone Update: Apple Adds Clarity and 3 New iPhone Apps</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/11/10/iphone-apps-message-in-a-balloon-knocking-over-mms-and-premium-shazam/" title="iPhone Apps: Message In A Balloon, Knocking Over MMS And Premium Shazam (November 10, 2009)">iPhone Apps: Message In A Balloon, Knocking Over MMS And Premium Shazam</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/12/03/utorrent-and-lastfm-iphone-applications/" title="uTorrent and Last.fm iPhone applications (December 3, 2007)">uTorrent and Last.fm iPhone applications</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/12/iphone-update-crazy-hack-first-ever-worm-hd-radio-and-more/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apple Update: Apple Bans Atom, Endless Racing Game For iPhone, Orange UK bans YouTube and More</title>
		<link>http://www.ghacks.net/2009/11/04/apple-update-apple-bans-atom-endless-racing-game-for-iphone-orange-uk-bans-youtube-and-more/</link>
		<comments>http://www.ghacks.net/2009/11/04/apple-update-apple-bans-atom-endless-racing-game-for-iphone-orange-uk-bans-youtube-and-more/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 22:06:16 +0000</pubDate>
		<dc:creator>Shailpik</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[hackintosh]]></category>
		<category><![CDATA[iPhone 0d 3.1.2]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Orange]]></category>
		<category><![CDATA[Unlock]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18033</guid>
		<description><![CDATA[Apple has begun the week a bit weirdly by banning Atom out of Mac OS. Whether this will last, we don&#8217;t know yet but if it is made permanent then the hackintosh netbooks will have some major difficulties running. In another interesting turn of events, Orange has this T&#38;C in place that actually blocks apps [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-14995" title="apple" src="http://www.ghacks.net/wp-content/uploads/2009/08/apple1.jpg" alt="apple" width="128" height="155" />Apple has begun the week a bit weirdly by banning Atom out of Mac OS. Whether this will last, we don&#8217;t know yet but if it is made permanent then the hackintosh netbooks will have some major difficulties running. In another interesting turn of events, Orange has this T&amp;C in place that actually blocks apps like Spotify and YouTube because they stream media over the Internet. Orange is going to start selling the iPhone from the 10th of November and this little snag might upset things badly.</p>
<h3><span id="more-18033"></span>New iPhone Safari Bug Could Drive Your Bills Through The Roof</h3>
<p>It has been a while since we have seen a major bug in Safari on the iPhone that users could themselves trip. So imagine our intrigue when we came across this bug. Apparently, if the user visits a site that uses Motion-JPEG (a format used mainly by security cameras) and then closes Safari – Safari continues to run in the background and continues to feed that stream into your iPhone.</p>
<p>The user is not notified of this in anyway and at the end of the day, you could end up with huge data bills or over usage charges. [<a href="http://www.mobilecrunch.com/2009/11/03/newly-discovered-safari-bug-could-mean-big-fees-for-some-iphone-users/">read</a>]</p>
<h3>More Macs Online After The Windows 7 Launch</h3>
<p><img class="aligncenter size-full wp-image-18080" title="win-eating-apple" src="http://www.ghacks.net/wp-content/uploads/2009/11/win-eating-apple.jpg" alt="win-eating-apple" width="385" height="400" /></p>
<p>This might seem a bit hard to digest but it seems like the truth. We now have more Macs online  after Windows 7 has been released. In fact, Windows&#8217; share of the Internet is on the decline. This could get interesting. [<a href="http://www.tuaw.com/2009/11/03/mac-share-of-web-browsing-goes-up-after-windows-7-launch/">read</a>]</p>
<h3>Snow Leopard Update To Block Atom</h3>
<p><img class="aligncenter size-full wp-image-18087" title="apple-atom-ban" src="http://www.ghacks.net/wp-content/uploads/2009/11/apple-atom-ban.jpg" alt="apple-atom-ban" width="447" height="440" /></p>
<p style="text-align: center;">
<p>Looks the latest build kernels of Mac OS 10.6.2 lacks support for Intel’s Atom. While the intention on Apple’s part is not entirely clear but we may be looking at yet another cat and mouse game here after the current Palm Pre sync thing.</p>
<p>If this build goes live, then netbook hackintosh makers will face a pretty challenging situation where there is no built in support for Atom. Since removing the support does not really contribute to the further streamlining of the Mac OS, blocking hackintosh makers seems like the logical intention here.</p>
<p>It would make sense too, with Apple trying to convert as many people has possible from the PC side of things. However, they won&#8217;t be able to keep at it for that long because you can bet that hackers on the case already and it won&#8217;t take them long.</p>
<h3>Endless Racing Game For iPhone</h3>
<div style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/x9Xo8AD6jis&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/x9Xo8AD6jis&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>I have not tried out the endless racing game but the video sure looks fun. If you are up for a simple racing that reminds of the old days, this one might be just the thing you are looking for. [<a href="http://www.engadget.com/2009/11/02/endless-racing-game-iphone-demo-video-isnt-endless-is-endles/" target="_self">read</a>]</p>
<h3>SquareSpace App Goes Live On The App Store</h3>
<p><img class="aligncenter size-full wp-image-18082" title="143629-squarespaceiphone_original" src="http://www.ghacks.net/wp-content/uploads/2009/11/143629-squarespaceiphone_original.png" alt="143629-squarespaceiphone_original" width="188" height="344" /></p>
<p>The popular hosted web-service called SquareSpace finally has its own iPhone. If you have an account over at SquareSpace, you will be able to access it securely over the app. The app does not take you through the website. It is a self-contained thing that is directly hooked up with the SquareSpace service and it lets you see everything about your website. You can see the stats, post on your blog, edit your blog, etc. [<a href="http://www.squarespace.com/iphone" target="_blank">read</a>]</p>
<h3>Wadia’s High-End Dock For The iPod</h3>
<p><img class="aligncenter size-full wp-image-18083" title="wadia" src="http://www.ghacks.net/wp-content/uploads/2009/11/wadia.jpg" alt="wadia" width="525" height="300" /></p>
<p>Wadia has a <em>high-end</em> in audio and video solution for the the iPod, sort of. They have an iPod dock called the 170iTransport. Once you plug in your iPod, the device will act as a media server. It can stream your iPod digital output over an S/PDIF co-axial cable and it also has component video for all your movies. Going for $380, this might be a nice addition to your home theatre rig. Of  course, the quality will be as good as the original files, which will likely be compressed. [<a href="http://www.switched.com/2009/10/30/gift-guide-wadia-i70i-high-end-ipod-dock/">read</a>]</p>
<h3>Orange To Offer The iPhone In the UK From Nov 10, Bans Media Streaming Apps</h3>
<p><img class="aligncenter size-full wp-image-18084" title="Orange_959_18409890_0_0_12389_300" src="http://www.ghacks.net/wp-content/uploads/2009/11/Orange_959_18409890_0_0_12389_300.jpg" alt="Orange_959_18409890_0_0_12389_300" width="300" height="300" /></p>
<p>Orange has declared that they will start selling the iPhone from November 10. But there is a problem here. [<a href="http://www.telegraph.co.uk/technology/apple/6485497/Orange-to-sell-Apple-iPhone-from-Nov-10.html">read</a>]</p>
<p>It seems that Orange’s terms and conditions dictate that you cannot use your iPhone for <em>other</em> activities. These <em>activities</em> include making using the phone as a modem, using non-Orange Internet-based streaming services, VoIP and more. That means you will not be able to use apps like Spotify, YouTube, AudioBoo, etc. – all of which use Internet-based media streaming to deliver content on demand.</p>
<p>But Orange has clarified on BBC that iPhone users will be allowed to use these apps as long as they are within their monthly usage limits. I really hope they stick to that, because you will be signing the contract. [<a href="http://www.pocket-lint.com/news/29250/orange-tncs-ban-many-iphone-apps">read</a>]</p>
<h3>iPhone OS 3.1.2 Unlock Coming On Nov 4<sup>th</sup>, Unlock iPhone 3GS and More</h3>
<div id="attachment_17956" class="wp-caption aligncenter" style="width: 410px"><img class="size-full wp-image-17956" title="iphone_crack" src="http://www.ghacks.net/wp-content/uploads/2009/10/iphone_crack.jpg" alt="It has been cracked folks!" width="400" height="534" /><p class="wp-caption-text">It has been cracked folks!</p></div>
<p>Come November 4<sup>th</sup>, i.e. tomorrow, you will be able to unlock your iPhone 3GS and other devices that are running iPhone OS 3.1.2. The hacker who made cracks of the previous iPhone OS versions has done it again. The crack is coming as blacksn0w  from Geohot. [<a href="http://www.boygeniusreport.com/2009/10/31/blacksn0w-iphone-unlock-complete-launching-november-4th/">read</a>]</p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/hackintosh/" title="hackintosh" rel="tag">hackintosh</a>, <a href="http://www.ghacks.net/tag/iphone-0d-3-1-2/" title="iPhone 0d 3.1.2" rel="tag">iPhone 0d 3.1.2</a>, <a href="http://www.ghacks.net/tag/news/" title="news" rel="tag">news</a>, <a href="http://www.ghacks.net/tag/orange/" title="Orange" rel="tag">Orange</a>, <a href="http://www.ghacks.net/tag/unlock/" title="Unlock" rel="tag">Unlock</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/12/iphone-update-carrier-wars-and-two-new-apps/" title="iPhone Update: Carrier Wars And Two New Apps (November 12, 2009)">iPhone Update: Carrier Wars And Two New Apps</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/" title="XNJB: Transfer music to and from a MTP MP3 player on a Mac (September 5, 2009)">XNJB: Transfer music to and from a MTP MP3 player on a Mac</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/10/12/winamp-ipod-plugin/" title="Winamp iPod Plugin (October 12, 2006)">Winamp iPod Plugin</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/01/10/wikipedia-on-your-ipod/" title="Wikipedia on your iPod (January 10, 2007)">Wikipedia on your iPod</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/04/apple-update-apple-bans-atom-endless-racing-game-for-iphone-orange-uk-bans-youtube-and-more/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Super Creepy Cyborg Insects Will Soon Spy On You</title>
		<link>http://www.ghacks.net/2009/10/13/super-creepy-cyborg-insects-will-soon-spy-on-you/</link>
		<comments>http://www.ghacks.net/2009/10/13/super-creepy-cyborg-insects-will-soon-spy-on-you/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 19:03:51 +0000</pubDate>
		<dc:creator>Shailpik</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Knowledge]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Spyware]]></category>
		<category><![CDATA[beetles]]></category>
		<category><![CDATA[cyborg insects]]></category>
		<category><![CDATA[future science]]></category>
		<category><![CDATA[pentagon]]></category>
		<category><![CDATA[the matrix]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17231</guid>
		<description><![CDATA[Pentagon has been working on a special type of technology that would turn bugs in to something that would really live up to the multiple meanings of bug. Okay, I will give it to you straight – they are working on something that&#8217;ll turn normal bugs in to remote controlled ones that can be controlled, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-17235" title="Cyborg_beetle" src="http://www.ghacks.net/wp-content/uploads/2009/10/46537050_cyborg_x220.jpg" alt="Cyborg_beetle" width="203" height="152" />Pentagon has been working on a special type of technology that would turn bugs in to something that would really live up to the multiple meanings of <em>bug.</em> Okay, I will give it to you straight – they are working on something that&#8217;ll turn normal bugs in to remote controlled ones that can be controlled, erm…remotely and flown like a toy helicopter. Like I said, it is not just creepy, it is super creepy.</p>
<p>Scientists at University of California, Berkley have actually accomplished this task. They have successfully attached tiny electrodes and other electronic parts on to living insects. Through these implants, the bug can now be maneuvered through a laptop.</p>
<p><span id="more-17231"></span>The engineering principle behind is not very difficult to understand. Since we human beings can’t exactly one-up nature on engineering, this is a sort of hack in to the system. It’s like installing a malware that takes control of your computer and then the malware creator manipulates your system through the implant.</p>
<p>The bugs are implanted with the electronic parts at the pupal stage or around the time when they retreat inside the pupa. This way, they actually grow up with parts implanted in them. Then when they are fully grown and take flight, the electrodes transmit electrical pulses in to their nervous system and muscles. So in case the controller wants the bug to veer left during flight, the electrodes charge the left  muscles to make them work harder and the body turns left. Is it is just me or does this sound eerily similar to the way human beings were controlled in The Matrix?</p>
<p style="text-align: center;"><img class="size-full wp-image-17236 aligncenter" title="Free yourself from the Matrix!-1" src="http://www.ghacks.net/wp-content/uploads/2009/10/Free-yourself-from-the-Matrix-1.jpg" alt="Free yourself from the Matrix!-1" width="650" height="321" /></p>
<p>The bug that is being shown off at this point is a Beetle. The developers of the system, Hirotaka Sato and Michel Maharbiz, talked to the <em>Neuroscience Magazine</em> and told them that they had successfully demonstrated remote control in free flight through an <em>implantable</em> radio-equipped <em>neural transmitter</em>.</p>
<p>Attempts to do things similar to this have been going on for several years now and it has already been tried on insects like cockroaches. But this the first time ever that man has been able to extend this kind of control on an insect. This is not necessarily a good thing though. However, as with every scientific achievement, what comes off it will depend on how we use it. And the identity of the people who are funding it already gives us a large enough hint as to what the purpose of this project might be.</p>
<p>The project is being funded by the Pentagon. More precisely, it is being funded by the US Defense Research Project Agency (DARPA) and they themselves have been trying to build a Nano Air Vehicle or NAV.</p>
<div id="attachment_17237" class="wp-caption aligncenter" style="width: 370px"><img class="size-full wp-image-17237  " title="scary-insect-robot" src="http://www.ghacks.net/wp-content/uploads/2009/10/scary-insect-robot.jpg" alt="thankfully this is still in the realm of Sci Fi" width="360" height="308" /><p class="wp-caption-text">thankfully this is still in the realm of Sci Fi</p></div>
<p>These NAVs would be small enough (less that 7.6cm and 10g) to go to places undetected and carry out reconnaissance missions in urban areas mainly. Even though we have advanced enough in the field of nano-technology to make the insect-implants, we are still unable to build something like that completely on our own.</p>
<p>So the military hopes that the beetles would act like micro air vehicles and give them unprecedented advantages during war.</p>
<p>Thankfully, nothing like that is possible immediately because the control  implant is all that the insects can carry during flight. Any more weight and they will not be able to lift it with their wings. So things like a camera and a GPS transmitter are still quite far away from being implanted on to these insects, which would be the only way they could be of any use in war. They can still carry chemical and biological weapons but that would violate existing war laws.</p>
<p>It&#8217;s funny that they are expected to abide by the law during a war. The developers are saying that this is only the initial stage and practical cyborg insects are anything between two to 10 years away. [<a href="http://news.bbc.co.uk/2/hi/technology/8302903.stm" target="_blank">BBC news</a>]</p>

	Tags: <a href="http://www.ghacks.net/tag/beetles/" title="beetles" rel="tag">beetles</a>, <a href="http://www.ghacks.net/tag/cyborg-insects/" title="cyborg insects" rel="tag">cyborg insects</a>, <a href="http://www.ghacks.net/tag/future-science/" title="future science" rel="tag">future science</a>, <a href="http://www.ghacks.net/tag/pentagon/" title="pentagon" rel="tag">pentagon</a>, <a href="http://www.ghacks.net/tag/the-matrix/" title="the matrix" rel="tag">the matrix</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/13/super-creepy-cyborg-insects-will-soon-spy-on-you/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Remote SSH: Run processes anywhere on different platforms</title>
		<link>http://www.ghacks.net/2009/03/29/remote-ssh-run-processes-anywhere-on-different-platforms/</link>
		<comments>http://www.ghacks.net/2009/03/29/remote-ssh-run-processes-anywhere-on-different-platforms/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 15:02:18 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[aeshells]]></category>
		<category><![CDATA[blinkenshell]]></category>
		<category><![CDATA[eggdrop]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[irc bot]]></category>
		<category><![CDATA[polarhome]]></category>
		<category><![CDATA[remote os]]></category>
		<category><![CDATA[remote shell]]></category>
		<category><![CDATA[remote-desktop]]></category>
		<category><![CDATA[sdf]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[shell account]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[telnet]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/03/29/remote-ssh-run-processes-anywhere-on-different-platforms/</guid>
		<description><![CDATA[SSH is a way to remotely and securely access command prompt/terminal on another computer, giving you access to that computer&#8217;s files, services, network connections and programs.
Some services offer free SSH accounts, so you can edit and access files anywhere, host websites, use them as proxies (or IPv6 gateways) and some even let you run processes [...]]]></description>
			<content:encoded><![CDATA[<p>SSH is a way to remotely and securely access command prompt/terminal on another computer, giving you access to that computer&#8217;s files, services, network connections and programs.</p>
<p>Some services offer free SSH accounts, so you can edit and access files anywhere, host websites, use them as proxies (or IPv6 gateways) and some even let you run processes like IRC bots and compilers.</p>
<p>Generally, such free Shell accounts impose a monthly bandwidth quota of a few megabytes, so you don&#8217;t use too much of their resources. Some providers are more generous than others, though, and some charge for additional space and bandwidth.</p>
<p><span id="more-11533"></span>Most SSH providers offer Unix-based hosting. <a href="http://www.red-pill.eu/freeunix.shtml">Mitja Sladovic offers a very large list of such free providers</a>.</p>
<p>The most popular service is the <a href="http://freeshell.org/">SDF Public Access UNIX System</a>, established in 1987. Free users are offered email hosting (POP or IMAP), games, access to the text-based &#8216;Lynx&#8217; web browser, web hosting, various network utilities and 80MB space. For access to gcc, php etc., one must a one-off fee of $36. In order to validate your account, and receive access to network utilities, one must send them $1 or €5 (in order to deter spammers).</p>
<p><a href="http://blinkenshell.org/wiki/Start">Blinkenshell is another interesting option</a>. Free accounts get 50MiB of space, access to several compilers, an IPv6 tunnel, hosting, email, IRC access and even the ability to have MySQL databases. One can&#8217;t use Blinkenshell for IRC bots, though. A few services do provide access to eggdrop, a popular IRC bot, such as <a href="http://www.polarhome.com/">Polarhome</a> and <a href="http://www.aeshells.org/">aeshells</a>.</p>
<p>Naturally, novices may struggle with such services as no graphical interface is provided. These services do, however, provide a rapid way to compile applications on different platforms (like Linux and BSD) and allow boring processes, like IRC bots, to run for you.</p>

	Tags: <a href="http://www.ghacks.net/tag/aeshells/" title="aeshells" rel="tag">aeshells</a>, <a href="http://www.ghacks.net/tag/blinkenshell/" title="blinkenshell" rel="tag">blinkenshell</a>, <a href="http://www.ghacks.net/tag/eggdrop/" title="eggdrop" rel="tag">eggdrop</a>, <a href="http://www.ghacks.net/tag/ipv6/" title="ipv6" rel="tag">ipv6</a>, <a href="http://www.ghacks.net/tag/irc/" title="irc" rel="tag">irc</a>, <a href="http://www.ghacks.net/tag/irc-bot/" title="irc bot" rel="tag">irc bot</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/polarhome/" title="polarhome" rel="tag">polarhome</a>, <a href="http://www.ghacks.net/tag/remote-os/" title="remote os" rel="tag">remote os</a>, <a href="http://www.ghacks.net/tag/remote-shell/" title="remote shell" rel="tag">remote shell</a>, <a href="http://www.ghacks.net/tag/remote-desktop/" title="remote-desktop" rel="tag">remote-desktop</a>, <a href="http://www.ghacks.net/tag/sdf/" title="sdf" rel="tag">sdf</a>, <a href="http://www.ghacks.net/tag/shell/" title="shell" rel="tag">shell</a>, <a href="http://www.ghacks.net/tag/shell-account/" title="shell account" rel="tag">shell account</a>, <a href="http://www.ghacks.net/tag/ssh/" title="ssh" rel="tag">ssh</a>, <a href="http://www.ghacks.net/tag/telnet/" title="telnet" rel="tag">telnet</a>, <a href="http://www.ghacks.net/tag/unix/" title="unix" rel="tag">unix</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/22/access-remote-unix-guis-in-windows-xming/" title="Access remote Unix GUIs in Windows: Xming (November 22, 2008)">Access remote Unix GUIs in Windows: Xming</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/04/11/securely-copy-files-with-scp/" title="Securely copy files with scp (April 11, 2009)">Securely copy files with scp</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/02/17/get-to-know-linux-secure-shell/" title="Get To Know Linux: Secure Shell (February 17, 2009)">Get To Know Linux: Secure Shell</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/01/17/dd-the-ultimate-disk-cloning-tool/" title="dd: the ultimate disk cloning tool (January 17, 2009)">dd: the ultimate disk cloning tool</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/07/09/control-servers-from-mobile-phones-via-ssh/" title="Control Servers from Mobile Phones via SSH (July 9, 2008)">Control Servers from Mobile Phones via SSH</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/29/remote-ssh-run-processes-anywhere-on-different-platforms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hacking Horror Story&#8230;</title>
		<link>http://www.ghacks.net/2008/11/06/hacking-horror-story/</link>
		<comments>http://www.ghacks.net/2008/11/06/hacking-horror-story/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 02:07:25 +0000</pubDate>
		<dc:creator>joshua</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[makeuseof]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2008/11/06/hacking-horror-story/</guid>
		<description><![CDATA[Joe’s post today was about the importance of backing up your blog, and it’s something which I now realize can never be taken too seriously &#8211; only this week another website I write for, Make Use Of, was hacked and the editors blackmailed.
You may read Make Use Of, if you don’t then it’s one of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ghacks.net/2008/11/05/have-wordpress-back-ups-emailed/">Joe’s post today</a> was about the importance of backing up your blog, and it’s something which I now realize can never be taken too seriously &#8211; only this week another website I write for, <a href="http://makeuseof.com">Make Use Of</a>, was hacked and the editors blackmailed.</p>
<p>You may read Make Use Of, if you don’t then it’s one of the larger tech blogs dedicated to webware and software reviews and has over 25, 000 daily subscribers.</p>
<p>You hear about hacking stories and security alerts all the time around the internet but you never really expect it to happen to you, however Make Use Of certainly wasn’t taking any risk, I’ll give you the summary of what this hacker did:</p>
<p>A certain Al Ferank of Dubai hacked Aibek, MakeUseOf’s owner and editor’s <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a> account, it’s worth noting that Aibek was using a secure scrambled password of 15 characters, if it’s that easy to gain access to Gmail perhaps their security needs to be looked at.</p>
<p> <span id="more-8099"></span>
<p>Within the account he than set up an email filter to forward GoDaddy communications to another email account, using these details he called up GoDaddy directly and identified himself as Aibek, he simply stated the username and password of the account and requested the domain be transferred, this was carried out within the hour.</p>
<p>Viewers of MakeUseOf where suddenly greeted by a static page filled with nothing by paid links and advertisements, editor Mark O’Neil found out via Twitter shortly afterwards and contacted Aibek.</p>
<p>As they where trying to figure out what happened they received a charming email from the man himself:</p>
<blockquote><p>I said it very simply and very easily !</p>
<p>2 K !</p>
<p>Deal or not ?!</p>
<p>You own the domain I get the money&#8230;</p>
<p>Regards</p>
</blockquote>
<p>Make Use Of was hacked and the domain stolen within an hour, the process of getting it back took significantly longer:</p>
<p>Aibek contacted NameCheap – the hosting company the domain had been transferred too and they agreed to lock the domain down while they and GoDaddy investigated the situation, although they warned it might take between 20 hours and 3 days. In the end after much back and forthing between Aibek, GoDaddy legal and their PR department the whole process of getting the domain back took about 15 hours, getting MakeUseOf online again took another day or so.</p>
<p>I can actually think of no way this could have been avoided on MakeUseOf’s part, however I definitely think Gmail needs to look at their security measures, obviously a ‘strong’ password isn’t strong enough.</p>

	Tags: <a href="http://www.ghacks.net/tag/gmail/" title="gmail" rel="tag">gmail</a>, <a href="http://www.ghacks.net/tag/makeuseof/" title="makeuseof" rel="tag">makeuseof</a>, <a href="http://www.ghacks.net/tag/security/" title="Security" rel="tag">Security</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/11/truemark-email-identification/" title="Truemark Email Identification (March 11, 2009)">Truemark Email Identification</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/03/28/yahoo-to-offer-unlimited-email-storage/" title="Yahoo to offer unlimited Email Storage (March 28, 2007)">Yahoo to offer unlimited Email Storage</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/05/07/yahoo-marks-dangerous-search-results/" title="Yahoo marks dangerous search results (May 7, 2008)">Yahoo marks dangerous search results</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/08/25/yahoo-mail-search-and-messenger-upgrades/" title="Yahoo Mail, Search And Messenger Upgrades (August 25, 2009)">Yahoo Mail, Search And Messenger Upgrades</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/10/05/xoopit-to-become-yahoo-mail-exclusive/" title="Xoopit To Become Yahoo Mail Exclusive (October 5, 2009)">Xoopit To Become Yahoo Mail Exclusive</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/06/hacking-horror-story/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Hacker Breaks into FEMA Phone System, Makes $12,000 Worth of Calls</title>
		<link>http://www.ghacks.net/2008/08/21/hacker-breaks-into-fema-phone-system-makes-12000-worth-of-calls/</link>
		<comments>http://www.ghacks.net/2008/08/21/hacker-breaks-into-fema-phone-system-makes-12000-worth-of-calls/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 15:49:36 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[FEMA]]></category>
		<category><![CDATA[Homeland security]]></category>
		<category><![CDATA[phone network]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6346</guid>
		<description><![CDATA[I just came across an amusing news excerpt about the Federal Emergency Management Agency or FEMA, which is a part of Homeland Security. For those of you who don&#8217;t know, Homeland Security is a Cabinet department of the U.S. federal government with the responsibility of protecting the territory of the U.S. from terrorist attacks and [...]]]></description>
			<content:encoded><![CDATA[<p>I just came across an amusing news excerpt about the Federal Emergency Management Agency or FEMA, which is a part of Homeland Security. For those of you who don&#8217;t know, Homeland Security is a Cabinet department of the U.S. federal government with the responsibility of protecting the territory of the U.S. from terrorist attacks and responding to natural disasters. At least, that&#8217;s the Wikipedia definition.</p>
<p>FEMA recently installed a new voicemail system in their Maryland  Training Center, which uses the Private Branch Exchange or PBX phone network. This kind of system is used by thousands or maybe even millions of companies throughout the world.</p>
<p>Last weekend though, a hacker broke into the network and made over 400 international calls, totaling up to $12,000. Calls were made to various countries in the Middle East and Asia (ironic, huh) and lasted anywhere from 3 to 10 minutes per call.</p>
<p><span id="more-6346"></span></p>
<p>When the fraud was discovered, all outgoing long-distance calls from FEMA&#8217;s National Emergency  Training Center were halted. What&#8217;s even more embarrassing is that according to John Jackson, a security consultant, this type of attack is very old-school and used to take place around 15 years ago. Most telecommunications security administrators now know to configure security settings, such as having individual users create unique passwords and not continue to use the initial password assigned to users.</p>
<p>FEMA is busy investigating the situation, trying to determine who made the calls as well as the people who received them. As of now, it looks like a &#8220;hole&#8221; was left open by the contractor when the voicemail system was being upgraded. The agency refused to specify what the hole was or the name of the contractor believed to be responsible.</p>
<p>For something like this to happen to an organization like FEMA, it&#8217;s extremely embarrassing. It also underscores just how vulnerable a phone system is, which is why companies are shifting to Voice Over Internet Telephony services (VOIP).</p>
<p>In all likelihood, this is a practical joke that went a bit too far and the person responsible is just a fresh-faced kid who was fooling around. Then again, maybe not, considering the destinations of the calls. What do you think?</p>

	Tags: <a href="http://www.ghacks.net/tag/fema/" title="FEMA" rel="tag">FEMA</a>, <a href="http://www.ghacks.net/tag/hacking/" title="Hacking" rel="tag">Hacking</a>, <a href="http://www.ghacks.net/tag/homeland-security/" title="Homeland security" rel="tag">Homeland security</a>, <a href="http://www.ghacks.net/tag/phone-network/" title="phone network" rel="tag">phone network</a>, <a href="http://www.ghacks.net/tag/security/" title="Security" rel="tag">Security</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/04/17/top-15-security-and-hacking-tools-utilities/" title="Top 15 Security and Hacking Tools &#038; Utilities (April 17, 2006)">Top 15 Security and Hacking Tools &#038; Utilities</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/05/07/yahoo-marks-dangerous-search-results/" title="Yahoo marks dangerous search results (May 7, 2008)">Yahoo marks dangerous search results</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/08/11/wordpress-remote-admin-password-reset-vulnerability/" title="Wordpress Remote Admin Password Reset Vulnerability (August 11, 2009)">Wordpress Remote Admin Password Reset Vulnerability</a> (13)</li>
	<li><a href="http://www.ghacks.net/2006/07/22/wireless-hotspot-hacks/" title="Wireless Hotspot Hacks (July 22, 2006)">Wireless Hotspot Hacks</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/03/12/windows-worms-door-cleaner/" title="Windows Worms Door Cleaner (March 12, 2006)">Windows Worms Door Cleaner</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/08/21/hacker-breaks-into-fema-phone-system-makes-12000-worth-of-calls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Put Music in Images Uploaded to Flickr and Picasa Web Albums</title>
		<link>http://www.ghacks.net/2008/06/12/put-music-in-images-uploaded-to-flickr-and-picasa-web-albums/</link>
		<comments>http://www.ghacks.net/2008/06/12/put-music-in-images-uploaded-to-flickr-and-picasa-web-albums/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 14:58:18 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Cool]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[embed mp3]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[image hosting]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[picasa]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4960</guid>
		<description><![CDATA[Online services like Flickr and Google’s Picasa are primarily photo-hosting and sharing sites. This means that apart from image files, you can’t really upload any other type of file you choose.
Well, all that is about to change. Digital Inspiration has come up with a way to embed or hide an mp3 file within a jpeg [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Online services like Flickr and Google’s Picasa are primarily photo-hosting and sharing sites. This means that apart from image files, you can’t really upload any other type of file you choose.</p>
<p class="MsoNormal">Well, all that is about to change. <a href="http://www.labnol.org/internet/pictures/upload-mp3-music-files-flickr-hosting/3503/" target="_blank">Digital Inspiration</a> has come up with a way to embed or hide an mp3 file within a jpeg image uploaded to these photo-hosting sites. The process is quite simple and only requires a little bit of command-line work.</p>
<p class="MsoNormal">Firstly, copy your mp3 file and an image file to one folder. Next up, switch to the command-line interface. You can do this by going to <strong>Start &gt; Run &gt; Cmd</strong>. From here, navigate to the folder where the song and image are saved. Then, type in the following command:</p>
<p class="MsoNormal"><span id="more-4960"></span></p>
<p class="MsoNormal"><strong>‘copy /b mypicture.jpg + mysong.mp3 mynewpicture.jpg’ </strong></p>
<p class="MsoNormal">Replace ‘mypicture’ and ‘mysong’ with the actual file names. The resultant image ‘mynewpicture’ will contain your mp3 file in image format and can be uploaded directly to Flickr. When you want to save this song to your computer, open up the page containing the image, select ‘All sizes’ and download the original image size. Change the extension of the file to mp3 and you are good to go.</p>
<p class="MsoNormal">While I’ve used an mp3 as an example of embedding a file within an image, you can pretty much use the same method for any type of file. However, remember that you cannot hide file size so if you upload images that are 5MB and 10MB big, Flickr is obviously going to get suspicious. What do you think of this trick? Are you concerned about the potential for abuse? Let me know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/embed-mp3/" title="embed mp3" rel="tag">embed mp3</a>, <a href="http://www.ghacks.net/tag/flickr/" title="flickr" rel="tag">flickr</a>, <a href="http://www.ghacks.net/tag/image-hosting/" title="image hosting" rel="tag">image hosting</a>, <a href="http://www.ghacks.net/tag/photos/" title="photos" rel="tag">photos</a>, <a href="http://www.ghacks.net/tag/picasa/" title="picasa" rel="tag">picasa</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/16/move-photos-between-image-hosting-sites/" title="Move Photos Between Image Hosting Sites (August 16, 2008)">Move Photos Between Image Hosting Sites</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/11/12/zflick-adobe-air-flickr-photo-viewer/" title="ZFlick Adobe Air Flickr Photo Viewer (November 12, 2009)">ZFlick Adobe Air Flickr Photo Viewer</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/07/01/smugmug-album-downloader/" title="SmugMug Album Downloader (July 1, 2009)">SmugMug Album Downloader</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/10/23/pixolu-semantic-image-search/" title="Pixolu Semantic Image Search (October 23, 2008)">Pixolu Semantic Image Search</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/03/08/photo-software-photology/" title="Photo Software: Photology (March 8, 2009)">Photo Software: Photology</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/06/12/put-music-in-images-uploaded-to-flickr-and-picasa-web-albums/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Use Netflix Watch Now on more than 3 PCs</title>
		<link>http://www.ghacks.net/2008/05/27/use-netflix-watch-now-on-more-than-3-pcs/</link>
		<comments>http://www.ghacks.net/2008/05/27/use-netflix-watch-now-on-more-than-3-pcs/#comments</comments>
		<pubDate>Tue, 27 May 2008 20:44:07 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[netflix]]></category>
		<category><![CDATA[netflix tips]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4323</guid>
		<description><![CDATA[Each Netflix subscription gives the user access to a smaller movie library that can be accessed instantly from up to three PCs. All subscription plans except for the cheapest one include unlimited hours of watching movies on the computer. This service is limited to three computers though which might not be enough depending on the [...]]]></description>
			<content:encoded><![CDATA[<p>Each <a href="http://www.netflix.com/">Netflix</a> subscription gives the user access to a smaller movie library that can be accessed instantly from up to three PCs. All subscription plans except for the cheapest one include unlimited hours of watching movies on the computer. This service is limited to three computers though which might not be enough depending on the size of your household and your tech equipment.</p>
<p>Thankfully though it is fairly easy to authorize additional computers so that the Netflix Watch Now option is also available on them. The check if a computer may use the Watch Now option is done in the Windows Registry. The <a href="http://www.tech-recipes.com/rx/2889/netflix_how_to_enable_watch_now_on_more_than_three_computers">Tech Recipe</a> website found a simply way to copy the key of an authorized computer and import it to another computer to authorize that computer as well.</p>
<p>A user who wants to do that needs to start the Windows Registry on a computer that has the Watch Now option enabled. This is done by using the Windows R keyboard shortcut, entering regedit and hitting enter. Now navigate to the key HKEY_CURRENT_USER\ Software\ Netflix\ Movie Viewer\ and left-click the Movie Viewer key.</p>
<p><span id="more-4323"></span>Now access the export option under File > Export and save that key to the computer. Now copy that key to another computer running the same operating system. Open the Registry again and import the key using the File > Import menu. The key is specific to the operating system of the computer which means that you cannot import an XP key into Vista and vice versa.</p>

	Tags: <a href="http://www.ghacks.net/tag/hacking/" title="Hacking" rel="tag">Hacking</a>, <a href="http://www.ghacks.net/tag/netflix/" title="netflix" rel="tag">netflix</a>, <a href="http://www.ghacks.net/tag/netflix-tips/" title="netflix tips" rel="tag">netflix tips</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/03/27/weak-passwords/" title="Weak Passwords (March 27, 2007)">Weak Passwords</a> (12)</li>
	<li><a href="http://www.ghacks.net/2007/05/11/user-data-stolen-from-the-pirate-bay/" title="User Data Stolen from The Pirate Bay (May 11, 2007)">User Data Stolen from The Pirate Bay</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/01/23/use-a-magnet-to-protect-your-pc/" title="Use a Magnet to protect your PC (January 23, 2008)">Use a Magnet to protect your PC</a> (10)</li>
	<li><a href="http://www.ghacks.net/2006/01/11/the-anatomy-of-a-hack-video/" title="The Anatomy of a Hack Video (January 11, 2006)">The Anatomy of a Hack Video</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/05/27/texterity-magazines-offering-free-iphone-magazines/" title="Texterity Magazines offering free iPhone magazines (May 27, 2008)">Texterity Magazines offering free iPhone magazines</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/05/27/use-netflix-watch-now-on-more-than-3-pcs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Texterity Magazines offering free iPhone magazines</title>
		<link>http://www.ghacks.net/2008/05/27/texterity-magazines-offering-free-iphone-magazines/</link>
		<comments>http://www.ghacks.net/2008/05/27/texterity-magazines-offering-free-iphone-magazines/#comments</comments>
		<pubDate>Tue, 27 May 2008 07:46:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Knowledge]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iphone hacks]]></category>
		<category><![CDATA[iphone tips]]></category>
		<category><![CDATA[user agent]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4278</guid>
		<description><![CDATA[Just a few minutes ago I completed the article that explained how to read 20 digital magazines for free by changing the browser&#8217;s User Agent to the one of the Apple iPhone. I decided to look for additional free iPhone offers and discovered that Texterity Magazines are also providing 50 magazines to iPhone users free [...]]]></description>
			<content:encoded><![CDATA[<p>Just a few minutes ago I completed the article that explained how to read 20 digital magazines for free by changing the browser&#8217;s User Agent to the one of the Apple iPhone. I decided to look for additional free iPhone offers and discovered that Texterity Magazines are also providing 50 magazines to iPhone users free of charge.</p>
<p>Again the User Agent is used as the only mechanism to check if an iPhone connects to the service. If you have already installed the <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> User Agent switcher add-on and added the iPhone user agent to it you are ready to visit the iPhone <a href="http://iphone.texterity.com/magazines/">start page</a> at Texterity Magazines to read any of the 50 magazines for free in your browser.</p>
<p>If you have not done this visit my first article that explains how you can change the User Agent in Firefox to be identified as an iPhone (<a href="http://www.ghacks.net/2008/05/27/read-20-digital-magazines-for-free/">Iphone  user agent</a>) when browsing the Internet.</p>
<p><span id="more-4278"></span>Magazines seem to be specialized way more at Texterity. Some titles are The American Lawyer, Electronic Products, Extreme How-To, Greenlight Magazine and Popular Science.</p>

	Tags: <a href="http://www.ghacks.net/tag/hacking/" title="Hacking" rel="tag">Hacking</a>, <a href="http://www.ghacks.net/tag/iphone/" title="iPhone" rel="tag">iPhone</a>, <a href="http://www.ghacks.net/tag/iphone-hacks/" title="iphone hacks" rel="tag">iphone hacks</a>, <a href="http://www.ghacks.net/tag/iphone-tips/" title="iphone tips" rel="tag">iphone tips</a>, <a href="http://www.ghacks.net/tag/user-agent/" title="user agent" rel="tag">user agent</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/05/27/read-20-digital-magazines-for-free/" title="Read 20 Digital Magazines for Free (May 27, 2008)">Read 20 Digital Magazines for Free</a> (24)</li>
	<li><a href="http://www.ghacks.net/2008/06/20/transfer-files-between-iphone-ipod-and-computer/" title="Transfer Files between iPhone, iPod and Computer (June 20, 2008)">Transfer Files between iPhone, iPod and Computer</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/send-free-sms-with-iphone-and-ipod-touch/" title="Send Free SMS with iPhone and iPod Touch (July 16, 2008)">Send Free SMS with iPhone and iPod Touch</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/07/22/wordpress-for-iphone-is-not-a-killer-app/" title="Wordpress For iPhone Is Not A Killer App (July 22, 2008)">Wordpress For iPhone Is Not A Killer App</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/07/22/why-you-should-not-be-an-early-adopter/" title="Why you should not be an early adopter (July 22, 2009)">Why you should not be an early adopter</a> (23)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/05/27/texterity-magazines-offering-free-iphone-magazines/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Read 20 Digital Magazines for Free</title>
		<link>http://www.ghacks.net/2008/05/27/read-20-digital-magazines-for-free/</link>
		<comments>http://www.ghacks.net/2008/05/27/read-20-digital-magazines-for-free/#comments</comments>
		<pubDate>Tue, 27 May 2008 07:23:32 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Knowledge]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iphone hacks]]></category>
		<category><![CDATA[iphone tricks]]></category>
		<category><![CDATA[user agent]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4276</guid>
		<description><![CDATA[Apple Iphone owners get more. They get free Wireless access at AT&#038;T Hotspots, which no longer is that easy to defeat and now they also get to view free digital magazines of 20 or so popular magazines without costs, courtesy of Zinio. Guess how they are providing those free digital magazines and figuring out that [...]]]></description>
			<content:encoded><![CDATA[<p>Apple Iphone owners get more. They get <a href="http://www.ghacks.net/2008/05/02/apple-and-att-will-learn-that-user-agents-are-no-good-for-access-control/">free</a> Wireless access at AT&#038;T Hotspots, which no longer is that easy to defeat and now they also get to view free digital magazines of 20 or so popular magazines without costs, courtesy of Zinio. Guess how they are providing those free digital magazines and figuring out that an Apple iPhone user is actually requesting it and not someone else ?</p>
<p>Yes, the same insecure User Agent check that did not work on so many occasions before. All that needs to be done is change the User Agent in your browser to the one of the iPhone which will trick the website into thinking that you are accessing it with an iPhone. This in turn will give you access to those magazines, among them PC Magazine, Technology Review, Macworld, Lonely Planet and, um, Playboy and Penthouse.</p>
<p>The content is provided in full screen in your browser and you can flip through the pages with a click. It&#8217;s probably not the most comfortable way but it&#8217;s free and easy enough. Pages are actually shown as images which means they can be saved to the local hard drive.</p>
<p><span id="more-4276"></span>Firefox users can install the <a href="https://addons.mozilla.org/en-US/firefox/addon/59">User Agent Switcher</a> add-on and configure it with the following User Agent:</p>
<p><code>Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420.1 (KHTML, like Gecko) Version/3.0 Mobile/4A102 Safari/419 (United States)</code></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/05/iphone_user_agent.jpg" alt="" title="iphone user agent" width="389" height="261" class="alignnone size-medium wp-image-4277" /></p>
<p>just add the line into the User Agent field in the options of the add-on and any name in the description. Then switch to that User Agent and visit the <a href="http://imgs.zinio.com/iphone/">Zinio</a> website that was created for iPhone users. Thanks <a href="http://boardingarea.com/blogs/traveltechtalk/2008/05/26/bored-at-the-airport-read-a-free-magazine/">Scott</a> for the tip.</p>

	Tags: <a href="http://www.ghacks.net/tag/hacking/" title="Hacking" rel="tag">Hacking</a>, <a href="http://www.ghacks.net/tag/iphone-hacks/" title="iphone hacks" rel="tag">iphone hacks</a>, <a href="http://www.ghacks.net/tag/iphone-tricks/" title="iphone tricks" rel="tag">iphone tricks</a>, <a href="http://www.ghacks.net/tag/user-agent/" title="user agent" rel="tag">user agent</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/05/27/texterity-magazines-offering-free-iphone-magazines/" title="Texterity Magazines offering free iPhone magazines (May 27, 2008)">Texterity Magazines offering free iPhone magazines</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/03/27/weak-passwords/" title="Weak Passwords (March 27, 2007)">Weak Passwords</a> (12)</li>
	<li><a href="http://www.ghacks.net/2007/05/11/user-data-stolen-from-the-pirate-bay/" title="User Data Stolen from The Pirate Bay (May 11, 2007)">User Data Stolen from The Pirate Bay</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/05/27/use-netflix-watch-now-on-more-than-3-pcs/" title="Use Netflix Watch Now on more than 3 PCs (May 27, 2008)">Use Netflix Watch Now on more than 3 PCs</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/01/23/use-a-magnet-to-protect-your-pc/" title="Use a Magnet to protect your PC (January 23, 2008)">Use a Magnet to protect your PC</a> (10)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/05/27/read-20-digital-magazines-for-free/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Select a country for your proxy</title>
		<link>http://www.ghacks.net/2008/05/20/select-a-country-for-your-proxy/</link>
		<comments>http://www.ghacks.net/2008/05/20/select-a-country-for-your-proxy/#comments</comments>
		<pubDate>Tue, 20 May 2008 07:53:15 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[proxy list]]></category>
		<category><![CDATA[proxy sites]]></category>
		<category><![CDATA[web proxy]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4203</guid>
		<description><![CDATA[Finally a innovative proxy website. Web Proxies are all alike, mostly. They use the same four of five proxy scripts that are available, may have a different design and tend to disappear after 1-12 months. Worldproxy added an interesting new feature to it&#8217;s proxy: Country selection. Many multimedia services, like streaming Internet radio or video, [...]]]></description>
			<content:encoded><![CDATA[<p>Finally a innovative proxy website. Web Proxies are all alike, mostly. They use the same four of five proxy scripts that are available, may have a different design and tend to disappear after 1-12 months. Worldproxy added an interesting new feature to it&#8217;s proxy: Country selection. Many multimedia services, like streaming Internet radio or video, are limited to users of a specific country by the service provider and proxies are one of the ways to beat the protection to be able to view the contents of the website from a country that is normally not allowed to view them.</p>
<p><a href="http://worldproxy202.com/">Worldproxy</a> (via <a href="http://www.technospot.net/blogs/worldproxy202-proxy-thats-pretty-useful/">Technospot</a>) makes use of that by offering its visitors a country based proxy map. Currently only three countries are available: United States, Canada and Great Britain. The United States proxy is currently not working, the other two are working fine and it is probably just a glitch that the US proxy is not working right now.</p>
<p>Proxy selection by country is unfortunately the only new aspect of that proxy website. It does come with a toolbar that can be used to quickly switch between different country proxies but I normally do not install toolbars because they tend to take away screen space.</p>
<p><span id="more-4203"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/05/worldproxy.jpg" alt="worldproxy" title="worldproxy" width="340" height="96" class="alignnone size-medium wp-image-4204" /></p>
<p>Users can suggest new countries which means that it is likely that other countries will be added to the map in future updates. The proxy obviously can be used for different things as well. It is for instance possible to check ads that are running on your website when a visitor of a certain country visits it.</p>

	Tags: <a href="http://www.ghacks.net/tag/internet/" title="internet" rel="tag">internet</a>, <a href="http://www.ghacks.net/tag/proxy/" title="proxy" rel="tag">proxy</a>, <a href="http://www.ghacks.net/tag/proxy-list/" title="proxy list" rel="tag">proxy list</a>, <a href="http://www.ghacks.net/tag/proxy-sites/" title="proxy sites" rel="tag">proxy sites</a>, <a href="http://www.ghacks.net/tag/security/" title="Security" rel="tag">Security</a>, <a href="http://www.ghacks.net/tag/web-proxy/" title="web proxy" rel="tag">web proxy</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/09/29/web-proxy-server-list/" title="Web Proxy Server List (September 29, 2008)">Web Proxy Server List</a> (62)</li>
	<li><a href="http://www.ghacks.net/2006/01/15/web-proxy-list-january-2006/" title="Web Proxy List January 2006 (January 15, 2006)">Web Proxy List January 2006</a> (94)</li>
	<li><a href="http://www.ghacks.net/2006/08/04/free-web-proxy-list/" title="Web Proxy (August 4, 2006)">Web Proxy</a> (189)</li>
	<li><a href="http://www.ghacks.net/2006/04/06/proxy-sites/" title="Proxy Sites (April 6, 2006)">Proxy Sites</a> (52)</li>
	<li><a href="http://www.ghacks.net/2005/10/25/free-online-web-proxy/" title="Free online web proxy (October 25, 2005)">Free online web proxy</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/05/20/select-a-country-for-your-proxy/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Spy Tech: I see what you write</title>
		<link>http://www.ghacks.net/2008/05/19/spy-tech-i-see-what-you-write/</link>
		<comments>http://www.ghacks.net/2008/05/19/spy-tech-i-see-what-you-write/#comments</comments>
		<pubDate>Mon, 19 May 2008 20:49:31 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[spy]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4194</guid>
		<description><![CDATA[Two new techniques to spy on computer users have been revealed these days by two independent scientific studies conducted at the University of California, Santa Barbara, and at Saarland University in Saarbrucken, Germany. The researchers in California developed an algorithm that can estimate what a computer is writing by watching the hands move. The algorithm [...]]]></description>
			<content:encoded><![CDATA[<p>Two <a href="http://www.networkworld.com/news/2008/051908-i-spy-your-pc-researchers.html?page=1">new</a> techniques to spy on computer users have been revealed these days by two independent scientific studies conducted at the University of California, Santa Barbara, and at Saarland University in Saarbrucken, Germany. The researchers in California developed an algorithm that can estimate what a computer is writing by watching the hands move. The algorithm is far from perfect and has a success rate of 40% which is enough to understand the meaning of the text that is written.</p>
<p>Words are chosen by probability and suggest alternatives which more often than not make more sense than the first word. This introduces a new technique to spy on users without having to actually access the computer at all, all that is needed is a good view of the hands and the measure of the keyboard.</p>
<p>The second spy tech could come right out of the latest James Bond movie. The researchers at Saarland University managed to write a computer algorithm that is capable of interpreting reflections of the computer screen on objects. The quality of the telescope plays an important role, a normal $500 telescope was able to read 12 point fonts of a reflection that was 5 meters away from the computer and 198 point fonts from a distance of ten meters.</p>
<p><span id="more-4194"></span>A more powerful Dobson telescope for $27500 was able to yield the same results from a maximum distance of 30 meters. Other tests allowed the researchers to view the monitor from a white wall that was 2 meters away from the computer screen.</p>
<p>The best way to defeat the techniques ? Don&#8217;t access a computer in public, always close the curtains when working with your computer and make sure no cameras are installed in the room with a computer.</p>

	Tags: <a href="http://www.ghacks.net/tag/hack/" title="hack" rel="tag">hack</a>, <a href="http://www.ghacks.net/tag/hacking/" title="Hacking" rel="tag">Hacking</a>, <a href="http://www.ghacks.net/tag/research/" title="research" rel="tag">research</a>, <a href="http://www.ghacks.net/tag/science/" title="Science" rel="tag">Science</a>, <a href="http://www.ghacks.net/tag/spy/" title="spy" rel="tag">spy</a>, <a href="http://www.ghacks.net/tag/technology/" title="technology" rel="tag">technology</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/05/11/user-data-stolen-from-the-pirate-bay/" title="User Data Stolen from The Pirate Bay (May 11, 2007)">User Data Stolen from The Pirate Bay</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/11/15/what-will-our-it-and-internet-future-be-like/" title="What will our IT and internet future be like? (November 15, 2008)">What will our IT and internet future be like?</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/03/27/weak-passwords/" title="Weak Passwords (March 27, 2007)">Weak Passwords</a> (12)</li>
	<li><a href="http://www.ghacks.net/2008/02/04/visible-body-visualise-your-body/" title="Visible Body &#8211; Visualise your body (February 4, 2008)">Visible Body &#8211; Visualise your body</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/05/16/virtual-girlfriend-bed/" title="Virtual Girlfriend Bed (May 16, 2008)">Virtual Girlfriend Bed</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/05/19/spy-tech-i-see-what-you-write/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Apple and AT&amp;T Will Learn that User Agents are no good for access control</title>
		<link>http://www.ghacks.net/2008/05/02/apple-and-att-will-learn-that-user-agents-are-no-good-for-access-control/</link>
		<comments>http://www.ghacks.net/2008/05/02/apple-and-att-will-learn-that-user-agents-are-no-good-for-access-control/#comments</comments>
		<pubDate>Fri, 02 May 2008 19:48:20 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Browsing]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[apple iphone]]></category>
		<category><![CDATA[att]]></category>
		<category><![CDATA[hotspots]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=3990</guid>
		<description><![CDATA[Apple iPhone users can access the Internet free of charge through AT&#038;T hotspots, that&#8217;s what Macrumors is reporting. That&#8217;s a great additional feature for iPhone users and apparently for everyone else as well. The way of determining if a device is eligible for free access is by checking the User Agent of the device. We [...]]]></description>
			<content:encoded><![CDATA[<p>Apple iPhone users can access the Internet free of charge through AT&#038;T hotspots, that&#8217;s what <a href="http://www.macrumors.com/2008/04/30/free-atandt-wi-fi-access-for-iphones/">Macrumors</a> is reporting. That&#8217;s a great additional feature for iPhone users and apparently for everyone else as well. The way of determining if a device is eligible for free access is by checking the User Agent of the device. We all know what it is very easy to spoof the User Agent of any browser. All that needs to be done now is to change the User Agent of the browser to the User Agent of the iPhone&#8217;s browser.</p>
<p>The User Agent of the iPhone browser is <strong>Mobile Safari 1.1.3 &#8211; iPhone</strong>. A user with <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> or <a href="http://www.ghacks.net/category/browsing/opera/">Opera</a> could now easily change his User Agent to the one used by the iPhone to access the Internet without costs at every AT&#038;T hotspot. One possible add-on that can be used for Firefox would be the <a href="https://addons.mozilla.org/en-US/firefox/addon/59">User Agent Switcher</a>.</p>
<p>User Agents are definitely not a secure way to protect a network or website from unauthorized access. The same can be said for referrer checks which are as insecure. It probably will only be a matter of time when AT&#038;T decided to change the way the free access is granted to the iPhones only. Probably through a small application that is run on the iPhone instead.</p>
<p><span id="more-3990"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/apple-iphone/" title="apple iphone" rel="tag">apple iphone</a>, <a href="http://www.ghacks.net/tag/att/" title="att" rel="tag">att</a>, <a href="http://www.ghacks.net/tag/hotspots/" title="hotspots" rel="tag">hotspots</a>, <a href="http://www.ghacks.net/tag/iphone/" title="iPhone" rel="tag">iPhone</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/12/03/utorrent-and-lastfm-iphone-applications/" title="uTorrent and Last.fm iPhone applications (December 3, 2007)">uTorrent and Last.fm iPhone applications</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/09/12/utilize-iphone-as-a-modem/" title="Utilize iPhone As A Modem (September 12, 2008)">Utilize iPhone As A Modem</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/09/16/send-mms-with-the-iphone/" title="Send MMS With The iPhone (September 16, 2008)">Send MMS With The iPhone</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/06/19/apple-iphone-3gs/" title="Apple iPhone 3GS (June 19, 2009)">Apple iPhone 3GS</a> (15)</li>
	<li><a href="http://www.ghacks.net/2008/08/07/apple-can-remove-apps-from-iphones/" title="Apple Can Remove Apps From iPhones (August 7, 2008)">Apple Can Remove Apps From iPhones</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/05/02/apple-and-att-will-learn-that-user-agents-are-no-good-for-access-control/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Watch Restricted Youtube Videos in any Country</title>
		<link>http://www.ghacks.net/2008/04/18/watch-restricted-youtube-videos-in-any-country/</link>
		<comments>http://www.ghacks.net/2008/04/18/watch-restricted-youtube-videos-in-any-country/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 13:33:54 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[youtube hack]]></category>
		<category><![CDATA[youtube restricted]]></category>
		<category><![CDATA[youtube restricted videos]]></category>
		<category><![CDATA[youtube-tips]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=3842</guid>
		<description><![CDATA[Some videos on Youtube are only available to users of a specific country, countries or region. Everyone else may not watch the video and receives a message stating that &#8220;This video is not available in your country.&#8221; Youtube is also restricting access to videos that have been flagged to contain (possible) inappropriate content and users [...]]]></description>
			<content:encoded><![CDATA[<p>Some videos on Youtube are only available to users of a specific country, countries or region. Everyone else may not watch the video and receives a message stating that &#8220;This video is not available in your country.&#8221; Youtube is also restricting access to videos that have been flagged to contain (possible) inappropriate content and users have to login to verify that they are 18 or older. Once they are logged in they can watch the video without difficulties.</p>
<p>You will be delighted that there is a speedy url hack (thanks to the <a href="http://googlesystem.blogspot.com/2008/04/watch-restricted-youtube-videos.html">Google OS</a> blog) that bypasses both restrictions. This means that country restrictions as well as age restrictions will be bypassed. The following video for example points to one that is only available to US-residents: <a href="http://www.youtube.com/watch?v=I9ciR9qR1dU">Youtube Video</a>. If you click on the link and do not have a US IP address then you will receive the message that the video is not available in your country.  US-Residents who can watch most videos on Youtube will run into difficulties when they try to watch some BBC content for instance.</p>
<p>All that needs to be done to watch the video is to change the URL of the video slightly. The above example http://www.youtube.com/watch?v=I9ciR9qR1dU would be changed to http://www.youtube.com/v/I9ciR9qR1dU to watch the video. This can be done with every video available at Youtube. So basically the watch? part is removed and the = after the v is replaced by a /.</p>
<p><span id="more-3842"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/youtube-hack/" title="youtube hack" rel="tag">youtube hack</a>, <a href="http://www.ghacks.net/tag/youtube-restricted/" title="youtube restricted" rel="tag">youtube restricted</a>, <a href="http://www.ghacks.net/tag/youtube-restricted-videos/" title="youtube restricted videos" rel="tag">youtube restricted videos</a>, <a href="http://www.ghacks.net/tag/youtube-tips/" title="youtube-tips" rel="tag">youtube-tips</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/06/05/youtube-annotations/" title="Youtube Annotations (June 5, 2008)">Youtube Annotations</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/04/04/speed-up-youtube-video-playback-and-download/" title="Speed up Youtube Video Playback and Download (April 4, 2007)">Speed up Youtube Video Playback and Download</a> (21)</li>
	<li><a href="http://www.ghacks.net/2008/03/03/higher-quality-videos-starting-to-appear-on-youtube/" title="Higher Quality Videos starting to appear on Youtube (March 3, 2008)">Higher Quality Videos starting to appear on Youtube</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/05/03/download-mp3-from-youtube-videos/" title="Download Mp3 from Youtube Videos (May 3, 2008)">Download Mp3 from Youtube Videos</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/09/06/automatically-buffer-youtube-videos/" title="Automatically Buffer Youtube Videos (September 6, 2009)">Automatically Buffer Youtube Videos</a> (24)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/04/18/watch-restricted-youtube-videos-in-any-country/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Add new functions to Canon&#8217;s Digital Cameras</title>
		<link>http://www.ghacks.net/2008/04/04/add-new-functions-to-canons-digital-cameras/</link>
		<comments>http://www.ghacks.net/2008/04/04/add-new-functions-to-canons-digital-cameras/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 07:56:59 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[canon digital ixus]]></category>
		<category><![CDATA[canon firmware]]></category>
		<category><![CDATA[canon powershot]]></category>
		<category><![CDATA[digital camera]]></category>
		<category><![CDATA[hack canon]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=3710</guid>
		<description><![CDATA[Adding new functions and features to hardware is normally accomplished by replacing the firmware with a new or hacked one that adds the new functionality to the device. It&#8217;s slightly different if you are the owner of a Canon Digital Camera with DIGIC II or DIGIC III firmware because it is possible to load an [...]]]></description>
			<content:encoded><![CDATA[<p>Adding new functions and features to hardware is normally accomplished by replacing the firmware with a new or hacked one that adds the new functionality to the device. It&#8217;s slightly different if you are the owner of a Canon Digital Camera with DIGIC II or DIGIC III firmware because it is possible to load an alternative firmware from an SD card whenever it is needed which in turn means that the original firmware remains untouched.</p>
<p>The benefits of using the so called Canon Hacker&#8217;s Development Kit, which is Open Source by the way, are manifold. Among other features pictures can be saved in RAW format, videos can be recorded with a length of up to 1 hour, faster shutter speeds, longer exposure time, additional data display on the LCD and more.</p>
<p>If you would like to try this you need to make sure that your digital camera is supported. Many Canon Powershot and Canon Digital Ixus models are <a href="http://chdk.wikia.com/wiki/FAQ#Q._What_camera_models_are_supported_by_the_CHDK_program.3F">supported</a> right now. You&#8217;ll also need a SD card and a SD card reader to add the files of the firmware to the SD card.</p>
<p><span id="more-3710"></span>Now you simply download the <a href="http://chdk.wikia.com/wiki/Firmware_Comparisons">appropriate</a> firmware, put it on the SD card and do the following to manually load the new firmware. </p>
<ul>
<li>Start the Camera in Play mode</li>
<li>Press the Menu button and select &#8220;firm update&#8221;, say yes when asked if you want to update. Remember it&#8217;s not permanent</li>
<li>The Camera will reboot and if everything worked fine you will run the new firmware</li>
<li>If the camera hangs it is not compatible with this firmware. Remove the batteries then and place them in again.</li>
</ul>
<p>The <a href="http://chdk.wikia.com/wiki/FAQ#Q._What_camera_models_are_supported_by_the_CHDK_program.3F">FAQ</a> on the developers homepage contains information on how to load the new firmware automatically once you checked that it is working correctly.</p>

	Tags: <a href="http://www.ghacks.net/tag/canon-digital-ixus/" title="canon digital ixus" rel="tag">canon digital ixus</a>, <a href="http://www.ghacks.net/tag/canon-firmware/" title="canon firmware" rel="tag">canon firmware</a>, <a href="http://www.ghacks.net/tag/canon-powershot/" title="canon powershot" rel="tag">canon powershot</a>, <a href="http://www.ghacks.net/tag/digital-camera/" title="digital camera" rel="tag">digital camera</a>, <a href="http://www.ghacks.net/tag/hack-canon/" title="hack canon" rel="tag">hack canon</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/05/09/things-to-do-before-you-sell-your-digital-camera/" title="Things to do before you sell your digital camera (May 9, 2007)">Things to do before you sell your digital camera</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/07/16/the-definitive-guide-to-firmware-updates/" title="The definitive guide to Firmware updates (July 16, 2007)">The definitive guide to Firmware updates</a> (3)</li>
	<li><a href="http://www.ghacks.net/2007/10/01/tag-your-photo-collection/" title="Tag your Photo Collection (October 1, 2007)">Tag your Photo Collection</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/03/25/sort-and-rename-pictures-by-exif-data/" title="Sort and Rename Pictures by Exif Data (March 25, 2008)">Sort and Rename Pictures by Exif Data</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/10/26/photo-recovery-software/" title="Photo Recovery Software (October 26, 2008)">Photo Recovery Software</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/04/04/add-new-functions-to-canons-digital-cameras/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>German interior minister&#8217;s fingerprint replicated</title>
		<link>http://www.ghacks.net/2008/03/30/german-interior-ministers-fingerprint-replicated/</link>
		<comments>http://www.ghacks.net/2008/03/30/german-interior-ministers-fingerprint-replicated/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 08:48:20 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Knowledge]]></category>
		<category><![CDATA[biometric]]></category>
		<category><![CDATA[chaos computer club]]></category>
		<category><![CDATA[fingerprint]]></category>
		<category><![CDATA[german interior minister]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=3658</guid>
		<description><![CDATA[What&#8217;s a good way of catching the attention of someone who is advocating the use of biometrics? German interior minister Wolfgang Schäuble is pushing biometrics and data collection in Germany all for the sake of security and the fight against terrorism. 
The Chaos Computer Club, a renowned and popular club of hackers and privacy advocates, [...]]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s a good way of catching the attention of someone who is advocating the use of biometrics? German interior minister Wolfgang Schäuble is pushing biometrics and data collection in Germany all for the sake of security and the fight against terrorism. </p>
<p>The Chaos Computer Club, a renowned and popular club of hackers and privacy advocates, decided to let the minister taste some of his own medicine by replicating the fingerprint of the minister and publishing that fingerprint in their magazine.</p>
<p>The fingerprint was available as a print in the magazine and on transparency slide ready to be put on the fingers of the readers of it. The sample was apparently taken from a glass that Schäuble was drinking at a panel discussion in Berlin.</p>
<p><span id="more-3658"></span>The club <a href="http://www.ccc.de/biometrie/fingerabdruck_kopieren?language=en">also</a> published a step by step instruction on how they managed to replicate the fingerprints. The process itself requires only a handful of common materials, a computer and laser printer, nothing that can&#8217;t be acquired in a regular tools store.</p>

	Tags: <a href="http://www.ghacks.net/tag/biometric/" title="biometric" rel="tag">biometric</a>, <a href="http://www.ghacks.net/tag/chaos-computer-club/" title="chaos computer club" rel="tag">chaos computer club</a>, <a href="http://www.ghacks.net/tag/fingerprint/" title="fingerprint" rel="tag">fingerprint</a>, <a href="http://www.ghacks.net/tag/german-interior-minister/" title="german interior minister" rel="tag">german interior minister</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/05/08/want-to-sell-used-cds-identify-yourself/" title="Want to sell used CDs ? Identify yourself ! (May 8, 2007)">Want to sell used CDs ? Identify yourself !</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/08/28/rootkits-sony-does-it-again/" title="Rootkits: Sony does it again (August 28, 2007)">Rootkits: Sony does it again</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/08/30/fingerprint-files-in-windows-to-uncover-file-changes/" title="Fingerprint Files In Windows To Uncover File Changes (August 30, 2009)">Fingerprint Files In Windows To Uncover File Changes</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/03/30/german-interior-ministers-fingerprint-replicated/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hack Your iPhone or iPod Touch in Under One Minute</title>
		<link>http://www.ghacks.net/2008/03/23/hack-your-iphone-or-ipod-touch-in-under-one-minute/</link>
		<comments>http://www.ghacks.net/2008/03/23/hack-your-iphone-or-ipod-touch-in-under-one-minute/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 14:39:06 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[hack firmware]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2008/03/23/hack-your-iphone-or-ipod-touch-in-under-one-minute/</guid>
		<description><![CDATA[If you are the proud owner of an iPhone or an iPod Touch, you know by now that you are subject to a lot of limitations such as being restricted to the AT &#38; T Network. In addition, you will be unable to install or run any third party applications on your device.
With all these [...]]]></description>
			<content:encoded><![CDATA[<p>If you are the proud owner of an iPhone or an iPod Touch, you know by now that you are subject to a lot of limitations such as being restricted to the AT &amp; T Network. In addition, you will be unable to install or run any third party applications on your device.</p>
<p>With all these restrictions, it’s no wonder that most people who own an iPhone are frustrated and are always on the lookout for ways to run applications on their devices. After all, you would not want to pay so much money for something that has hardly any functions. However, it’s understandable to also be reluctant. These devices are expensive and if something goes wrong, it’s a lot of money down the drain.</p>
<p><span id="more-3591"></span></p>
<p>Adam from <a href="http://lifehacker.com/370532/jailbreak-any-iphone-or-ipod-touch-in-45-seconds">Lifehacker</a> has found a solution to your problems. He uses a software called <a href="http://www.ziphone.org/">ZiPhone</a>. ZiPhone is free, open source application that works on both Windows and the Mac. This software basically hacks or jailbreaks the firmware code on your device so that all the restrictions are removed and you can use your device to its full potential. What ZiPhone does is put your phone into recovery mode while it hacks the firmware. The entire process is accomplished in under one minute.</p>
<p>All you have to do is download and run the application. Select the device (iPhone or iPod Touch), choose the jailbreak option and you are good to go. I haven’t tried this out for myself because I do not own either device but a fair number of people have used ZiPhone with excellent results. The only precaution is that if you applied a jailbreak to your iPhone previously, make sure to restore it to the latest firmware (1.1.4) before you use ZiPhone.</p>
<p>All in all, I’m curious. How many of you have hacked your devices previously because you were unhappy with the restrictions. Do you know of any other ways to jailbreak your iPhone?</p>
<p>Via (<a href="http://lifehacker.com/370532/jailbreak-any-iphone-or-ipod-touch-in-45-seconds">Lifehacker</a>)</p>

	Tags: <a href="http://www.ghacks.net/tag/hack-firmware/" title="hack firmware" rel="tag">hack firmware</a>, <a href="http://www.ghacks.net/tag/iphone/" title="iPhone" rel="tag">iPhone</a>, <a href="http://www.ghacks.net/tag/ipod-touch/" title="ipod touch" rel="tag">ipod touch</a>, <a href="http://www.ghacks.net/tag/mac/" title="mac" rel="tag">mac</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/12/03/utorrent-and-lastfm-iphone-applications/" title="uTorrent and Last.fm iPhone applications (December 3, 2007)">uTorrent and Last.fm iPhone applications</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/09/12/utilize-iphone-as-a-modem/" title="Utilize iPhone As A Modem (September 12, 2008)">Utilize iPhone As A Modem</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/06/20/transfer-files-between-iphone-ipod-and-computer/" title="Transfer Files between iPhone, iPod and Computer (June 20, 2008)">Transfer Files between iPhone, iPod and Computer</a> (7)</li>
	<li><a href="http://www.ghacks.net/2006/12/22/software-for-starving-students/" title="Software for Starving Students (December 22, 2006)">Software for Starving Students</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/send-free-sms-with-iphone-and-ipod-touch/" title="Send Free SMS with iPhone and iPod Touch (July 16, 2008)">Send Free SMS with iPhone and iPod Touch</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/03/23/hack-your-iphone-or-ipod-touch-in-under-one-minute/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Force Extensions to Work in Firefox 3 Beta</title>
		<link>http://www.ghacks.net/2008/02/14/force-extensions-to-work-in-firefox-3-beta/</link>
		<comments>http://www.ghacks.net/2008/02/14/force-extensions-to-work-in-firefox-3-beta/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 16:24:55 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[add ons]]></category>
		<category><![CDATA[advanced firefox settings]]></category>
		<category><![CDATA[firefox-extensions]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2008/02/14/force-extensions-to-work-in-firefox-3-beta/</guid>
		<description><![CDATA[The Beta version of Firefox 3 is already out and it has a whole bunch of new and improved features for you to play with. However, as of now, most Firefox extensions have not been updated by their developers. This means you cannot take your favorite add-ons for a spin in the Beta version.
I was [...]]]></description>
			<content:encoded><![CDATA[<p>The Beta version of <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> 3 is already out and it has a whole bunch of new and improved features for you to play with. However, as of now, most Firefox extensions have not been updated by their developers. This means you cannot take your favorite add-ons for a spin in the Beta version.</p>
<p>I was checking out Lifehacker and a user called <a href="http://lifehacker.com/355748/firefox-3-beta-3-now-available#c4185080">Bugmenot21</a> has posted a way to use your old extensions in Firefox 3. Now, I’m not a fan of this method since I prefer to wait till the developers themselves release compatible versions. Still, if you’re interested, you can give this a shot. I’m not guaranteeing anything though.</p>
<p><span id="more-3224"></span></p>
<ul>
<li><!--[if !supportLists]-->   Open Firefox and type ‘about:config’ (without the quotation marks) in the address bar.</li>
<li><!--[if !supportLists]--> Right-click anywhere in the window and select New &gt; Boolean. A box named new boolean value will open. Type <strong>extensions.checkUpdateSecurity</strong> in the preference field. Click OK. Set its value to <strong>False</strong>.</li>
<li><!--[if !supportLists]--> <!--[endif]-->Similarly, create another new boolean value entry. This time, type <strong>extensions.checkCompatability</strong>. Like earlier, set the value to <strong>False</strong>.</li>
</ul>
<p>That’s it. Now, all your extensions that were previously incompatible or did not secure updates should work in the Beta version. Be warned though that this is not a foolproof solution to the problem. Don’t be surprised if one or more of your extensions stats behaving strangely.</p>
<p>Do you know of any other ways to get extensions working in Firefox 3? Or would you prefer to wait till it becomes stable?</p>

	Tags: <a href="http://www.ghacks.net/tag/add-ons/" title="add ons" rel="tag">add ons</a>, <a href="http://www.ghacks.net/tag/advanced-firefox-settings/" title="advanced firefox settings" rel="tag">advanced firefox settings</a>, <a href="http://www.ghacks.net/tag/firefox-extensions/" title="firefox-extensions" rel="tag">firefox-extensions</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/11/throttle-bandwidth-of-firefox-and-ie/" title="Throttle Bandwidth of Firefox and IE (February 11, 2008)">Throttle Bandwidth of Firefox and IE</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/03/17/hide-the-tab-bar-in-firefox/" title="Hide the Tab Bar in Firefox (March 17, 2008)">Hide the Tab Bar in Firefox</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/03/08/firefox-extensions-that-i-use/" title="Firefox Extensions that I use (March 8, 2007)">Firefox Extensions that I use</a> (10)</li>
	<li><a href="http://www.ghacks.net/2007/08/06/35-extensions-for-thunderbird-users/" title="35+ Extensions for Thunderbird Users (August 6, 2007)">35+ Extensions for Thunderbird Users</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/03/13/zoom-in-on-images-in-firefox/" title="Zoom In on Images in Firefox (March 13, 2008)">Zoom In on Images in Firefox</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/02/14/force-extensions-to-work-in-firefox-3-beta/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
