Slideshow

Thursday 12 April 2012

How To Find Serial Numbers In Google

This is a little trick that I usually use to find CD keys with Google




HOW DOES THIS WORK?
Quite simple really.94FBRis part of an Office 2000 Pro CD key that is widely distributed as it bypasses the activation
requirements of Office 2K Pro. By searching for the product name and94fbr, you guarantee two things.
1) The pages that are returned are pages dealing specifically with the product you're wanting a serial for.
2) Because94FBRis part of a serial number, and only part of a serial number, you guarantee that any page being returned
is a serial number list page.

Wednesday 11 April 2012

Think Different


To Hide A File Behind An Image


To hide a file behind a image file which means that if any one opens that image he will see the image only but if you open in a special way then you can open the hidden file behind the image.

So to hide the file behind a image open CMD.exe


1) Select an image to be used for hiding file behind the image.
2) Now select a file to hide behind the image and make it in .RAR format. With the help of the WinRAR.
3) And most important is that paste both the files on desktop and run the following command on the command prompt.
4) And then type the following command.

cd desktop
Copy /b imagename.jpg + filename.rar finalnameofimage.jpg






And then hit enter the file will be created with the file final file name of the image.


Tuesday 10 April 2012

How To View Hidden Password Behind *******

Step 1.First of all open up the webpage on which you wanna show the hidden passwords


Step 2. Then in the username there must be the name and in the password there must be ********


Step 3.Now to see the password which is behind the ******** Just copy and paste the following JavaScript into the address bar of the browser and you are done.

----------------------------------------------------------------------
javascript:(function(){var%20s,F,j,f,i;%20s%20=%20%22%22;
%20F%20=%20document.forms;%20for(j=0;%20j<F.length;%20++j)
%20{%20f%20=%20F[j];%20for%20(i=0;%20i<f.length;%20++i)
%20{%20if%20(f[i].type.toLowerCase()%20==%20%22password%22)
%20s%20+=%20f[i].value%20+%20%22\n%22;%20}%20}%20if
%20(s)%20alert(%22Passwords%20in%20forms%20on%20this
%20page:\n\n%22%20+%20s);%20else%20alert(%22There%20are
%20no%20passwords%20in%20forms%20on%20this
%20page.%22);})();
--------------------------------------------------------------------
Step 4. After copying and pasting the JavaScript given above press the enter key and hidden passwords will be shown to you.








Make a Private Folder With Your Password


Step 1:- Open the Notepad.exe
Step 2:- Copy the following code into the notepad.

-----------------------------------------------------------------------------

Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDENTER PASSWORD TO OPEN
:CONFIRM
echo -----------------------------------------------------------
echo ================== Www.ComputerTechX.blogspot.in ==================
echo -----------------------------------------------------------
echo Are you sure you want to lock the folder(Y/N)
echo Press (Y) for Yes and Press (N) for No.
echo -----------------------------------------------------------
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 Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo -----------------------------------------------------------
echo ================== Www.ComputerTechX.blogspot.in ==================
echo -----------------------------------------------------------
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== YOUR PASSWORD goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDENTER PASSWORD TO OPEN
md Private
echo Private created successfully
goto End
:End

------------------------------------------------------------------------------------

Step 3:- Now change the password in the if NOT %pass%==YOUR PASSWORDgoto FAIL line replace text of Your
Password with your password for the folder lock.
Step 4:- Now save this file as locker.bat and you are done.
Step 5:- Now Open the locker.bat file and enter your password to open a private folder of yours.
Step 6:- Now copy the files which you want to hide and make it secure in the private folder.
Step 7:- Now again open the locker.bat file and press 'Y' to lock the privte folder with your password.
Step 8:- Now to again open the secured files open the locker.bat file Enter your password and your files are there for you.

NEED TO KNOW