Recommend on google

Recommend this page on GOOGLE
Follow me on twitter here..
Like Us on Facebook

Search this blog

Tuesday, October 23

3 passwords in facebook

What does the post title suggest to you? Can you set 3 different passwords for facebook or are you allowed to change your password 3 times within a week or something like that...??

NO!!
By the post title I mean that your Facebook profile has 3 passwords by default and you can use any of them to login...and facebook will get you through... ; - )

Now, you might be wondering how can a single account have 3 passwords...??

To understand this let us suppose that the original password of your facebook account is:- 'geeksRuLe'
I am considering the capital and small cases as well.

Now have a look at this image


Yes, these are your 3 passwords

Password 1:- your original password

Password 2:- your password with the small cases with only the first letter in capitals.

Password 3:- your password with all the cases toggled (i.e:- capitals are now small and the smalls are now capitals)

You can try this trick on your own account and facebook will let you in with these 3 variations.. :-D

The logic behind this is that some smartphones have auto capitalization of the 1st letter, which gives password 2.
Suppose you have the caps lock key ON and you type your password holding the shift key, this will result in entry of the password in toggled cases than your original password...and hence Password 3.

Smart Facebook!!...isn't it..??

Sunday, October 14

Lock a folder without any additional software

Do you want to protect your personal files but hate installing a totally new software for it.
YES, it can be done without any software.

Difficulty level: VERY EASY

Step 1.>
Go to the location where you want to create a Locker.

Step 2.>
Create a new notepad file and copy the below code exactly as it is:-

cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==nikoo28 goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

Step 3.>
Look for the text "nikoo28" in the above code. This was the password for my folder locker. You can change it as per your requirement. Just remove it and type your own.

Step 4.>
Save this file by the name of locker and change its extension to .bat



Step 5.>
You are almost done now. Just double click the file. If this is the first time you are using this locker.bat file, a folder named Locker will automatically be created.



Now drag all your personal files in this folder.

Once you are done, again double click the locker.bat file and you will be asked for a confirmation dialog "DO YOU WANT TO LOCK? (Y/N)". Press Y and your folder will be locked.



To Unlock, double click the locker.bat file again and you will be prompted for a password. Enter it and your folder will reappear... :-D



I hope this tutorial helps....any further discussion can be done in the comments.
Related Posts Plugin for WordPress, Blogger...