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.