<?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>Let&#039;s Geek</title>
	<atom:link href="http://www.letsgeek.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.letsgeek.com</link>
	<description>Fancy some geek</description>
	<lastBuildDate>Thu, 10 May 2012 21:12:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Set layout for entire controller in CakePHP</title>
		<link>http://www.letsgeek.com/code/set-layout-for-entire-controller-in-cakephp/</link>
		<comments>http://www.letsgeek.com/code/set-layout-for-entire-controller-in-cakephp/#comments</comments>
		<pubDate>Thu, 10 May 2012 21:12:47 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1142</guid>
		<description><![CDATA[Setting the layout for a specific action is easy. However you need bake that cake a bit more if you need it to apply for the entire controller. This is how you set the layout for the entire controller. public function beforeFilter() { parent::beforeFilter(); $this-&#62;layout = 'layout_name'; }]]></description>
			<content:encoded><![CDATA[<p>Setting the layout for a specific action is easy. However you need bake that cake a bit more if you need it to apply for the entire controller. This is how you set the layout for the entire controller.<br />
<code><br />
public function beforeFilter() {<br />
parent::beforeFilter();<br />
$this-&gt;layout = 'layout_name';<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/code/set-layout-for-entire-controller-in-cakephp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access vsftpd from WAN</title>
		<link>http://www.letsgeek.com/technology/access-vsftpd-from-wan/</link>
		<comments>http://www.letsgeek.com/technology/access-vsftpd-from-wan/#comments</comments>
		<pubDate>Sun, 06 May 2012 13:57:02 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1131</guid>
		<description><![CDATA[Server generated a passive answer with an untracable address If you are behind a NAT router you might recieve an error message when trying to list a catalogue (server generated a passive answer with an untracable address). This error is caused by your server returning a local ip addresss. By setting your server in passive [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="wp-image-1132 aligncenter" title="vsftpd log" src="http://www.letsgeek.com/wp-content/uploads/2012/05/vsftpd.jpg" alt="vsftpd log" width="471" height="250" /></p>
<p><strong>Server generated a passive answer with an untracable address</strong></p>
<p>If you are behind a NAT router you might recieve an error message when trying to list a catalogue (<em>server generated a passive answer with an untracable address</em>). This error is caused by your server returning a local ip addresss. By setting your server in passive mode, your server will return the correct address.</p>
<p>Add these lines to the vsftpd config file.</p>
<p>#constrain pasv ports<br />
pasv_enable=YES<br />
#start of pasv port range<br />
pasv_min_port=xxxx<br />
#end of pasv port range<br />
pasv_max_port=xxxx<br />
#enables DNS lookup of pasv_address<br />
pasv_addr_resolve=YES<br />
#your address<br />
pasv_address=[external domain name or ip]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/technology/access-vsftpd-from-wan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing phpMyAdmin after installation</title>
		<link>http://www.letsgeek.com/technology/accessing-phpmyadmin-after-installation/</link>
		<comments>http://www.letsgeek.com/technology/accessing-phpmyadmin-after-installation/#comments</comments>
		<pubDate>Sun, 06 May 2012 12:55:22 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1121</guid>
		<description><![CDATA[When installing phpMyAdmin on your new server you might encounter an 404 error when you try to access http://localhost/phpmyadmin. The short explanation to this error is that it is caused by a misconfigured apache2.conf and often happens if you miss to check apache2 as your server during the phpMyAdmin configuration. The long answer is that [...]]]></description>
			<content:encoded><![CDATA[<p>When installing phpMyAdmin on your new server you might encounter an 404 error when you try to access http://localhost/phpmyadmin. The short explanation to this error is that it is caused by a misconfigured apache2.conf and often happens if you miss to check apache2 as your server during the phpMyAdmin configuration.</p>
<p>The long answer is that phpmyadmin is not located in the www folder. Instead it is usually located in /usr/share/phpmyadmin. Therefore an alias has to be set up between /user/share/phpmyadmin and /var/www/phpmyadmin. If you miss this during the configuration then you obviously wont be able to access the phpmyadmin folder.</p>
<p><em>Solution 1</em></p>
<p>Reconfigure phpMyAdmin with it&#8217;s own configuration tool.<br />
<code>sudo dpkg-reconfigure phpmyadmin</code></p>
<p><em>Solution 2</em></p>
<ol>
<li>Open apache2.conf: <em>sudo vim /etc/apache2/apache2.conf</em></li>
<li>Add the line <em>Include /etc/phpmyadmin/apache.conf</em></li>
<li>Restart apache2 (sudo /etc/init.d/apache2 restart)</li>
</ol>
<p>After having restarted apache2, try to access http://localhost/phpmyadmin again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/technology/accessing-phpmyadmin-after-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad &#8211; Connect USB to iTunes</title>
		<link>http://www.letsgeek.com/gadgets/ipad-connect-usb-to-itunes/</link>
		<comments>http://www.letsgeek.com/gadgets/ipad-connect-usb-to-itunes/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 15:24:46 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1103</guid>
		<description><![CDATA[Upon starting your iPad for the first time you&#8217;ll find yourself being greeted by a pictures showing the iPad usb connecting to iTunes. All fine and dandy, you think, while plugging in the USB into the computer. After doing so, some of you might have proceeded to registering your apple-id and authorizing your computer. I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1111" title="200x150-iPad-USB-iTunes" src="http://www.letsgeek.com/wp-content/uploads/2011/12/200x150-iPad-USB-iTunes.png" alt="" width="200" height="150" /></p>
<p style="text-align: left;">Upon starting your iPad for the first time you&#8217;ll find yourself being greeted by a pictures showing the iPad usb connecting to iTunes. All fine and dandy, you think, while plugging in the USB into the computer.</p>
<p>After doing so, some of you might have proceeded to registering your apple-id and authorizing your computer. I on the other hand &#8211; not so lucky.</p>
<p><span id="more-1103"></span></p>
<p>Connecting the USB to iTunes yielded no results and I could not really fathom why. After some quick reorganization of the USB setup I connected the USB directly into the computer instead of the USB hub. The iPad made a noise, Success! (apparently USB hubs cannot supply enough power to the iPad)</p>
<p>Unfortunately the picture of the damned usb and itunes icon was still on the iPad display. Seeing as I was on one in my familys computers, my family really isnt tech savvy, I could only explain things with a faulty iTunes installation.</p>
<p>And voila! The iPad was now finally working. I forgot to check what version of iTunes the computer had installed before reinstalling the latest version but it&#8217;s safe to say that you should get the latest version.</p>
<p>So do the following if you&#8217;re stuck on the picture with the USB connecting to iTunes:</p>
<ul>
<li>Connect the iPad straight to the computer, without any hubs</li>
<li>Install the latest version of iTunes</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/gadgets/ipad-connect-usb-to-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Youtube Proxy Sites</title>
		<link>http://www.letsgeek.com/hacks/10-youtube-proxy-sites/</link>
		<comments>http://www.letsgeek.com/hacks/10-youtube-proxy-sites/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 03:22:26 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1078</guid>
		<description><![CDATA[Heres a set of very basic youtube proxies. As I&#8217;ve previously explained, using normal proxies instead of VPN solutions might not be the most appropriate solution for you if you want anonymized surfing. However if you want to bypass simple network filters and blocks then you might manage with a basic internet proxy. Hide My [...]]]></description>
			<content:encoded><![CDATA[<p>Heres a set of very basic youtube proxies. As I&#8217;ve <a title="How to Bypass a chatroulette ban" href="http://www.letsgeek.com/hacks/how-to-bypass-a-chatroulette-ban/">previously explained</a>, using normal proxies instead of VPN solutions might not be the most appropriate solution for you if you want anonymized surfing. However if you want to bypass simple network filters and blocks then you might manage with a basic internet proxy.<br />
<span id="more-1078"></span></p>
<ul>
<li><a title="Hide My Ass" href="http://hidemyass.com/">Hide My Ass</a></li>
<li><a title="Zippy Proxy" href="http://www.zippyproxy.com/">Zippy Proxy</a></li>
<li><a title="Masked IP" href="http://www.maskedip.com/">Masked Ip</a></li>
<li><a title="Boom Proxy" href="http://www.boomproxy.com/">Boom Proxy</a></li>
<li><a title="Proxy Browsing" href="http://www.proxybrowsing.com/">Proxy Browsing</a></li>
<li><a title="Surf N Free" href="http://surfnfree.com/">Surf N Free</a></li>
<li><a title="Anonymise" href="http://www.anonymise.us/">Anonymise</a></li>
<li><a title="Netsneak" href="http://www.netsneak.com/">Net Sneak</a></li>
<li><a title="Twitter Proxy" href="http://www.twitter-proxy.net/">Twitter-Proxy</a></li>
<li><a title="Proxy.org" href="http://proxy.org/">Proxy.org</a></li>
</ul>
<p>If you find that these are not working, go get a real vpn!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/hacks/10-youtube-proxy-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chatroulette and Omegle Proxy sites</title>
		<link>http://www.letsgeek.com/hacks/chatroulette-omegle-proxy-sites/</link>
		<comments>http://www.letsgeek.com/hacks/chatroulette-omegle-proxy-sites/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 03:11:54 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1079</guid>
		<description><![CDATA[As I&#8217;ve previously explained, using normal proxies instead of VPN solutions might not be the most appropriate solution. You&#8217;ll most likely want a real VPN if you want to bypass an ip ban or say anonymous. However the demand for proxies is so high that I&#8217;ve decided to include them here as well. Here are [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve <a title="How to Bypass a chatroulette ban" href="http://www.letsgeek.com/hacks/how-to-bypass-a-chatroulette-ban/">previously explained</a>, using normal proxies instead of VPN solutions might not be the most appropriate solution. You&#8217;ll most likely want a real VPN if you want to bypass an ip ban or say anonymous. However the demand for proxies is so high that I&#8217;ve decided to include them here as well. Here are a set of <em>very basic </em>internet proxies.</p>
<p><span id="more-1079"></span></p>
<ul>
<li><a title="Hide My Ass" href="http://hidemyass.com/">Hide My Ass</a></li>
<li><a title="Zippy Proxy" href="http://www.zippyproxy.com/">Zippy Proxy</a></li>
<li><a title="Masked IP" href="http://www.maskedip.com/">Masked Ip</a></li>
<li><a title="Boom Proxy" href="http://www.boomproxy.com/">Boom Proxy</a></li>
<li><a title="Proxy Browsing" href="http://www.proxybrowsing.com/">Proxy Browsing</a></li>
<li><a title="Surf N Free" href="http://surfnfree.com/">Surf N Free</a></li>
<li><a title="Anonymise" href="http://www.anonymise.us/">Anonymise</a></li>
<li><a title="Netsneak" href="http://www.netsneak.com/">Net Sneak</a></li>
<li><a title="Twitter Proxy" href="http://www.twitter-proxy.net/">Twitter-Proxy</a></li>
<li><a title="Proxy.org" href="http://proxy.org/">Proxy.org</a></li>
</ul>
<p>If you find that these are not working, go get a real vpn!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/hacks/chatroulette-omegle-proxy-sites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Screenshots as evidence</title>
		<link>http://www.letsgeek.com/security/screenshots-as-evidence/</link>
		<comments>http://www.letsgeek.com/security/screenshots-as-evidence/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 20:16:49 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1052</guid>
		<description><![CDATA[The fundamental problem with screenshots as evidence lies in their reliability. Questions about reliability arises both because the process of creating screenshots is governed by the user and the user being able to alter the image post production. As a consequence, all methods in which the user has control of the process are afflicted by [...]]]></description>
			<content:encoded><![CDATA[<p><img class="wp-image-1073 aligncenter" title="Screenshots as Evidence" src="http://www.letsgeek.com/wp-content/uploads/2011/12/screenshotsasevidence.png" alt="Screenshots as Evidence" width="400" height="210" /></p>
<p>The fundamental problem with screenshots as evidence lies in their reliability. Questions about reliability arises both because the process of creating screenshots is<em> governed by the user</em> and the user being able to <em>alter</em> the image post production. As a consequence, all methods in which the user has control of the process are afflicted by the fundamental problem.</p>
<p><span id="more-1052"></span></p>
<p>Every country has its own legal framework and their ways of handling evidence differs from each other. Rules of admissability can therefore play more or less a big part in the question whether to accept the screenshot as evidence. However question of a screenshots reliability and authenticity is of fundamental importance and is therefore the focus of this article.</p>
<p>Then how can we effectively prove that something was on a certain website? Giving up control over the process to a third party would be the first step in remedying the fundamental problem. A third party does not in general share the same interests as the parties in a dispute. Therefore the reliability of screenshots taken through third parties should in general be higher than that of own screenshots.</p>
<p>A notable service that offers screenshots from the past is the <a href="http://www.archive.org/web/web.php">Wayback Machine</a>. It has independently been archiving webpages since 1996 and it is generally considered reliable. Screenshots from the service has previously figured in civil litigations such as Telewizja Polska SA v. Echostar Satellite (US Law) with some success. There&#8217;s been a debate in Sweden about the reliability of screenshots since the music and movie industry presented evidence in the form of screenshots of ip-adresses in Direct Connect hubs to the court. The court found the evidence lacking with arguments of its reliability. The screenshot presented in the case was produced by using the function Print Screen in windows. The screenshot had therefore been under the plaintiffs control and could not be relied on considering the risk of it being altered.</p>
<p>The reliability of the <em>third party</em> still needs to be assessed, even if the screenshot is taken by a third party, if it is to be presented in court. The reliability assessment merely shifts its focus to another subject. The pro&#8217;s in using a third party is therefore not that the plaintiff won&#8217;t have to prove that a certain condition was or was not but rather that it&#8217;s easier to prove that the screenshot is depicting the past reality in a objectively reliable way by referencing to a non biased party.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/security/screenshots-as-evidence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Mouse Accuracy Games</title>
		<link>http://www.letsgeek.com/games/4-mouse-accuracy-games/</link>
		<comments>http://www.letsgeek.com/games/4-mouse-accuracy-games/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 16:31:59 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Micromanage]]></category>
		<category><![CDATA[Mouse]]></category>
		<category><![CDATA[Starcraft]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1023</guid>
		<description><![CDATA[Mouse accuracy can be everything in modern games. I found myself wanting to improve my mouse accuracy when trying to make it into masters league in starcraft 2. An essential part of becoming efficient in the game is by being able to micromanage your battles. So I set out to find some accuracy games to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-1045 aligncenter" title="micromanage" src="http://www.letsgeek.com/wp-content/uploads/2011/12/micromanage1.png" alt="" width="534" height="259" /></p>
<p style="text-align: left;">Mouse accuracy can be everything in modern games. I found myself wanting to improve my mouse accuracy when trying to make it into masters league in starcraft 2. An essential part of becoming efficient in the game is by being able to micromanage your battles. So I set out to find some accuracy games to improve myself. Here&#8217;s the four best games I could find!</p>
<p style="text-align: left;"><span id="more-1023"></span></p>
<h3><strong>Reflex</strong></h3>
<p>Reflex is a set of games hosted on missionred. The games test your accuracy in kind of different but similiar ways. I find the Reflexte game, shown in the image, to be the best of the alternatives. Blobs start appearing on the screen and its your job to click on them as fast as possible. The blobs expand until they reach their peak and then they contract and eventually disappears. You score by clicking on them as fast as possible while avoiding missing them!</p>
<p><img class="size-full wp-image-1033" title="reflex" src="http://www.letsgeek.com/wp-content/uploads/2011/12/reflex.gif" alt="" width="491" height="259" /></p>
<p><a title="Missionred reflexte" href="http://www.missionred.com/games/reflexte.html">http://www.missionred.com/games/reflexte.html</a></p>
<h3><strong>Osu!</strong></h3>
<p>Osu! is probably the most developed amongst these ten games. You load up beatmaps which basically is levels with a music beat to them. The game is played by following the mouse in pre set tracks and clicking on a set of points. If you cant keep up with the pace you lose. It has this kind of asian nische to it so if you are a anime/manga freak or whatever you&#8217;ll proably enjoy it!</p>
<p><strong></strong><img class="size-full wp-image-1032" title="osu" src="http://www.letsgeek.com/wp-content/uploads/2011/12/osu.gif" alt="" width="343" height="246" /></p>
<p><a title="Osu!" href="http://osu.ppy.sh/">http://osu.ppy.sh/</a></p>
<h3><strong>Lessquick</strong></h3>
<p>Lessquick relies more on visual perception than pure mouse accuracy.  You still have to be pretty fast with your mouse movements though. The levels are built as such: a selection of geometry objects are shown as well as an order in which you need to click them in. Too slow and you&#8217;re out!</p>
<p><img class="alignnone size-full wp-image-1034" title="lessquick" src="http://www.letsgeek.com/wp-content/uploads/2011/12/lessquick.jpg" alt="" width="400" height="262" /></p>
<p><a title="Lessquick" href="http://www.notdoppler.com/lessquick.php">http://www.notdoppler.com/lessquick.php</a></p>
<h3><strong>Floats</strong></h3>
<p>I &#8211; love &#8211; Ferry Halim, the creator of WinterBells. He makes incredible zen like games! I love playing them. This kind of is a mix of mouse accuracy and visual perception but it&#8217;s mostly just fun to play!  I just had to include it.</p>
<p><img class="alignnone size-full wp-image-1035" title="flaots" src="http://www.letsgeek.com/wp-content/uploads/2011/12/flaots.png" alt="" width="249" height="250" /></p>
<p><a title="Floats" href="http://www.ferryhalim.com/orisinal/g3/floats.htm">http://www.ferryhalim.com/orisinal/g3/floats.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/games/4-mouse-accuracy-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Default loop when installing windows 7 with Unetbootin</title>
		<link>http://www.letsgeek.com/technology/default-loop-when-installing-windows-7-with-unetbootin/</link>
		<comments>http://www.letsgeek.com/technology/default-loop-when-installing-windows-7-with-unetbootin/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 23:13:07 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1011</guid>
		<description><![CDATA[Unetbootin is a handy tool for those who wish to install windows 7 through a memory stick. However instead of listing the win7 Unetbootin fails to recognize it on the disk. I ran into this problem the other day but found a neat solution. The problem seems to lie in what file system the memory [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1015" title="unetbootin" src="http://www.letsgeek.com/wp-content/uploads/2011/11/unetbootin1.jpg" alt="" width="331" height="200" /></p>
<p>Unetbootin is a handy tool for those who wish to install windows 7 through a memory stick. However instead of listing the win7 Unetbootin fails to recognize it on the disk. I ran into this problem the other day but found a neat solution.</p>
<p>The problem seems to lie in what file system the memory stick is formated with. You need to use NTFS, and not FAT32, for windows 7 to work through Unetbootin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/technology/default-loop-when-installing-windows-7-with-unetbootin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GOMTV.NET leaked plaintext passwords after security breach</title>
		<link>http://www.letsgeek.com/security/gomtv-net-plaintext-passwords-after-security-breach/</link>
		<comments>http://www.letsgeek.com/security/gomtv-net-plaintext-passwords-after-security-breach/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 01:35:02 +0000</pubDate>
		<dc:creator>Rambash</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[GomTV]]></category>
		<category><![CDATA[Hacked]]></category>

		<guid isPermaLink="false">http://www.letsgeek.com/?p=1004</guid>
		<description><![CDATA[Just now I received an e-mail from GOMTV.net confirming that the site has been hacked and information has been compromised. We regretfully inform you that approximately at 2 AM KST yesterday, there has been an attack against our web site, GOMTV.net. We have found that some of the user information from GOMTV.net has been compromised [...]]]></description>
			<content:encoded><![CDATA[<p>Just now I received an e-mail from GOMTV.net confirming that the site has been hacked and information has been compromised.</p>
<blockquote>
<div>We regretfully inform you that approximately at 2 AM KST yesterday, there has been an attack against our web site, GOMTV.net.</div>
<div>We have found that some of the user information from GOMTV.net has been compromised from the attack. We suspect that the following information might have been exposed: name, location (country), e-mail address, GOMTV.net nickname and password.</div>
</blockquote>
<p>Now, I normally dont get all excited when hearing about these kinds of information leaks. They happen. However, in this case GOMTV.net actually stored the passwords in <em>paintext</em>. Really, GomTV?</p>
<p>No amount of funny characters and randomness in your password will save you from an hacking attempt. Nor will you have a few days before they have bruteforced the password hashes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.letsgeek.com/security/gomtv-net-plaintext-passwords-after-security-breach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

