Wednesday, 27 November 2013

Password Protect Any Folder Without Any Software

 1. Open Notepad and Copy code given below into it.


cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== coolhacks goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End


 2. Save the notepad file as lock.bat (.bat is must)

 3. Now double click on lock.bat and a new folder will be created with name MyFolder

 4. Copy all your data you want to protect in that New folder

 5. Now double click on lock.bat and when command promp appears Type Y and press enter.

 6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat

 7. It will ask for password enter your password and done. (Default password is coolhacks)

To change the password replace coolhacks with  new password in the above code
How To Further Secure ?

You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.


Dont for to subscribe to get some cool hidden trick to ur mail.. post ur comment to get some more cool trick if u liked it..

How to copy you program in Lab Exam through Steganography

Well today we are making the first post of “LEARN HACKING LEVEL 2″.
The First topic we are going to discuss today is “STEGANOGRAPHY”.
So what is Steganography?
Before coming to the point let me tell you its history.
You might have seen in old chinese movies that the monks used to safeguard secrets by hiding those secrets on their body parts so that no one else can see them but them.
This concept was developed further and it was implemented in computers as well.
This is called Steganography.
Now coming to its implementation in Computers.
By the use of Steganography you can Hide one type of file behind other keeping the format of file same.
I personally find it very useful because it helps me hide my important information easily.
So do you want to try Steganography on your machine ?
Lets get started.
NOTE:- The files and folder names I am going to use are just for reference. You may use different if you want to. But for beginning I would suggest to follow along. Later on you can try it with different file names.
Setup:-

1) Create a new folder named test in any drive (say C: Drive)
2) In  the test folderCreate a text file in it named – hi.txt
3) Copy any default windows picture from my pictures say – desert.jpg in the test folder

Now the game begins.
Type anything you want to in the  Text file and make its font big so that its easily readable
1) Open command prompt
2) Open the test folder.
      You may use the following commands to do that
    2.1)   C:
    2.2)   cd test
3) Now use the following command
      COPY /B desert.jpg+hi.txt new.jpg
       ie… the syntax is
      Copy /B name of file in which you want to embedded the content+ name of file which you want to embedded name of new file
And that’s it. You are done.
Open the test folder and you will see a new image named new.jpg.
When you preview it you will see the normal image but now right click it and open the image with notepad. At the end of the file you can see the text that you wrote in the document.
Remaining you need to think by yourself ,,,,, if yet u didnt understand post a comment I will let you know