<?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>Geeky Tips &#187; General</title>
	<atom:link href="http://geekytips.com/blog/category/general/feed" rel="self" type="application/rss+xml" />
	<link>http://geekytips.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 08 Jun 2011 11:15:29 +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>How to Create Password Protected Folder without any Software</title>
		<link>http://geekytips.com/blog/how-to-create-password-protected-folder-without-any-software/</link>
		<comments>http://geekytips.com/blog/how-to-create-password-protected-folder-without-any-software/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 18:33:37 +0000</pubDate>
		<dc:creator>Sampat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Lock Folder]]></category>
		<category><![CDATA[Password Protected Folder]]></category>

		<guid isPermaLink="false">http://geekytips.com/blog/?p=2099</guid>
		<description><![CDATA[People are always requesting to use our computer, at that time we are always little bit scared about our personal data. Here I suggest you to protect your data with password protected folder. To create this password protected folder we don&#8217;t need any special software or any complex technique.
We just need to create one batch ...]]></description>
			<content:encoded><![CDATA[<p>People are always requesting to use our computer, at that time we are always little bit scared about our personal data. Here I suggest you to protect your data with password protected folder. To create this password protected folder we don&#8217;t need any special software or any complex technique.</p>
<p>We just need to create one batch file from notepad with special code which includes folder name and its password. So let&#8217;s see how to create password protected folder.</p>
<ul>
<li>Copy below      code into notepad and save it as &#8220;anyname&#8221; with <strong>.bat </strong>extension, for example secret.bat</li>
</ul>
<p style="padding-left: 30px;">cls</p>
<p style="padding-left: 30px;">@ECHO OFF</p>
<p style="padding-left: 30px;">title Folder Personal</p>
<p style="padding-left: 30px;">if EXIST &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221; goto UNLOCK</p>
<p style="padding-left: 30px;">if NOT EXIST Personal goto MDLOCKER</p>
<p style="padding-left: 30px;">:CONFIRM</p>
<p style="padding-left: 30px;">echo Are you sure u want to Lock the folder(Y/N)</p>
<p style="padding-left: 30px;">set/p &#8220;cho=&gt;&#8221;</p>
<p style="padding-left: 30px;">if %cho%==Y goto LOCK</p>
<p style="padding-left: 30px;">if %cho%==y goto LOCK</p>
<p style="padding-left: 30px;">if %cho%==n goto END</p>
<p style="padding-left: 30px;">if %cho%==N goto END</p>
<p style="padding-left: 30px;">echo Invalid choice.</p>
<p style="padding-left: 30px;">goto CONFIRM</p>
<p style="padding-left: 30px;">:LOCK</p>
<p style="padding-left: 30px;">ren Personal &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;</p>
<p style="padding-left: 30px;">attrib +h +s &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;</p>
<p style="padding-left: 30px;">echo Folder locked</p>
<p style="padding-left: 30px;">goto End</p>
<p style="padding-left: 30px;">:UNLOCK</p>
<p style="padding-left: 30px;">echo Enter password to Unlock folder</p>
<p style="padding-left: 30px;">set/p &#8220;pass=&gt;&#8221;</p>
<p style="padding-left: 30px;">if NOT %pass%==pwd123 goto FAIL</p>
<p style="padding-left: 30px;">attrib -h -s &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;</p>
<p style="padding-left: 30px;">ren &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221; Personal</p>
<p style="padding-left: 30px;">echo Folder Unlocked successfully</p>
<p style="padding-left: 30px;">goto End</p>
<p style="padding-left: 30px;">:FAIL</p>
<p style="padding-left: 30px;">echo Invalid password</p>
<p style="padding-left: 30px;">goto end</p>
<p style="padding-left: 30px;">:MDLOCKER</p>
<p style="padding-left: 30px;">md Personal</p>
<p style="padding-left: 30px;">echo Personal created successfully</p>
<p style="padding-left: 30px;">goto End</p>
<p style="padding-left: 30px;">:End</p>
<pre></pre>
<p class="MsoNormal">In above code we create folder “Personal” with password “pwd123” as shown in red color. You can give any name and password by editing above file.</p>
<ul>
<li>When you      run this bat file, it will create &#8220;Personal&#8221; folder automatically in the      same location of bat file. Now you can put any data in this folder.</li>
<li>Now run      this bat file again for locking the folder and the default icon of folder      is change to control panel icon.</li>
<li>Now place      this bat file to any secure location to keep your password safe.</li>
<li>When you      want to unlock this &#8220;Personal&#8221; folder, just run this bat file from same      location as folder and it will ask for password which stored in bat file.      After entering the correct password your folder is unlocked.</li>
</ul>
<p>I think is very useful to protect our personal data. What you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://geekytips.com/blog/how-to-create-password-protected-folder-without-any-software//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some popular attacks on networks</title>
		<link>http://geekytips.com/blog/some-popular-attacks-on-networks/</link>
		<comments>http://geekytips.com/blog/some-popular-attacks-on-networks/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 16:10:51 +0000</pubDate>
		<dc:creator>Sampat</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://geekytips.com/blog/?p=54</guid>
		<description><![CDATA[Here I want to mention some popular attacks but I will not name the services, as trust and emotions of several people are attached to them. And second thing these services introducing several techniques with time to make their services more secure.
Credit card:-One Russian attacker (called Maxim) actually managed to intrude into a merchant internet ...]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Here I want to mention some popular attacks but I will not name the services, as trust and emotions of several people are attached to them. And second thing these services introducing several techniques with time to make their services more secure<span style="font-size:14pt;">.</span></p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style="font-size:14pt;">Credit card</span></span></strong><span style="font-size:14pt;">:-</span>One Russian attacker (called Maxim) actually managed to intrude into a merchant internet site and obtained 300,000 credit card numbers from its database. He then attempted extortion by demanding protection money ($100,000) from the merchant. The merchant refuses to oblige. Following this, the attacker published about 25,000 of the credit card numbers on the internet!</p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style="font-size:14pt;">E-mail site</span></span>: -</strong> In 1999, a Swedish hacker broke into one famous mail website and created a mirror site. This site allowed to anyone to enter mail user’s email id and read his/her emails!</p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style="font-size:14pt;">Bank service</span></span></strong>:- In 1995, A Russian hacker broke into one x bank’s computers remotely, stealing $12million.Although the attacker was traced, it was very difficult to get him extradited from the court case.</p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style="font-size:14pt;">Some internet sites</span></span></strong>: &#8211; In year 2000, there was an attack against six popular internet sites where authorized user of these sites failed to login or access these sites.</p>
<p class="MsoNormal">In 2005 as independent survey was conducted to invite people’s opinions about the losses that occur due to successful attacks on security, the survey pegged the losses at an average of $455,848,000. Next year, this figure reduced to 4201,757,340!</p>
<p class="MsoNormal">
]]></content:encoded>
			<wfw:commentRss>http://geekytips.com/blog/some-popular-attacks-on-networks//feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

