Tuesday, November 10, 2009

Little fun with scripts..

Like my previous post this won't be the core hacking guide but a window trick, since most readers here need something to pass to there friends and have fun.. so here it comes..

Here i will give you few codes for VB Scripts which you can copy to notepad and then save as ".vbs" and can execute directly or can convert it to exe too.. will give the link to the tool for converting at last..

so here are the things you can do..

1. Play with the Lights..!!!
turn on and off the caps lock of the system.. this will annoy the victim..
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

2. This wasn't good enough..?? now, what if the Enter is pressed continuously..?? then use tis code..
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

 3. Had enough with the keys..?? how about if the cd drive keeps poping out.. again and again.. ??
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 100
loop

There are many other tricks you can Google them.. my main objective is to inform you and provide you with a tool to convert it to a more suitable format to use i.e. ".exe"

so here is the tool..
Download VBS to EXE Converter..

this is demo for 15 days but your job will be done by then.. or try finding the key for it.. Do comment..

Hack using Batch Files..

So, its long time since my last post.. So to start up again, we won't jump into core stuffs, lets have some fun and learn about things which you can do using your command prompt.. You can access all the functionalities you know about your system and even a lot more using the command prompt..

But the question is, suppose you know what to do in command prompt and annoy someone, but how would you do this in victim's system or someone, you wanna play prank..?? So, the answer is BATCH Files, the are the series of commands which you write in a notepad and save with a ".bat" extension. those commands are the one you write in the cmd of windows.. don't panic.. i will give some commands too at the end of the post.. Now don't you think it will be lot convenient if we could convert it to an ".exe" file..?? huh..?? so fine, i will give link to the software for that purpose too..

So all you have to do is to make a batch file and then just convert it to exe and send it to the victim.. and ya have fun then..

So lets start listing some cool stuffs you can do with batch files..

1. so start with the basics.. lets try shutting down the windows.. what say..???
so here is what you have to write in notepad and save with .bat extension, then convert it to exe
Shutdown -s -t 60 -c "So Sorry.. Bye.."
now you can change "-s" to "-l" for log off or to "-r" for restart.. the number after "-t" is the seconds before the  execution of the task

2. so, that wasn't fun..?? huh..?? how about swapping the mouse buttons..?? here it is..
@echo off
Rundll32 user32,SwapMouseButton
rundll32 keyboard,disable
msg * Enjoy Buddy.. You are Screwed..

now this will change his right mouse to left and vice versa..


There are many more tricks available with batch files but thats not our main objective.. you can Google it.. make your batch file and then convert it to exe using the converter below..


Download Batch to Exe Converter


if you have face any problems regarding creation of files or using the software, do comment..

Featured Followers