Tuesday 31 July 2012

membuat trojan dengan notepad

Iseng Bermodalkan Notepad

image Googling, cari – cari situs hacker yang seru . Eh ketemu juga. Artikel yang menarik “iseng dengan bermodalkan Notepad. Gag usah basa basi lagi deh langsung aja kita mulai.
Lets begin! Pastikan Anda Mengetik Dengan Benar Script Dibawah Ini! Copy Paste Kadang Tidak Berhasil Dikarenakan Perbedaan Tanda Petik ( ” ” ) Pada Notepad, Untuk Lebih Fix Bisa Pake TextPad
  • Iseng Mengeject CD-Drive Terus Menerus
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
Simpan dengan format .vbs  (contoh : jail.vbs)
  • Iseng Dengan Tombol Enter Terus Menerus
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
Simpan dengan format .vbs  (contoh : jail.vbs)
  • Iseng Dengan Pesan Lambat Notepad “Hello, how are you? I am good thanks!”
    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 “Hel”
    WScript.Sleep 500
    WshShell.SendKeys “lo ”
    WScript.Sleep 500
    WshShell.SendKeys “, ho”
    WScript.Sleep 500
    WshShell.SendKeys “w a”
    WScript.Sleep 500
    WshShell.SendKeys “re ”
    WScript.Sleep 500
    WshShell.SendKeys “you”
    WScript.Sleep 500
    WshShell.SendKeys “? ”
    WScript.Sleep 500
    WshShell.SendKeys “I a”
    WScript.Sleep 500
    WshShell.SendKeys “m g”
    WScript.Sleep 500
    WshShell.SendKeys “ood”
    WScript.Sleep 500
    WshShell.SendKeys ” th”
    WScript.Sleep 500
    WshShell.SendKeys “ank”
    WScript.Sleep 500
    WshShell.SendKeys “s! “
Simpan dengan format .vbs  (contoh : jail.vbs)
  • Iseng Dengan Backspace
MsgBox “Maaf, Anda Harus Mengulang Kembali”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Simpan dengan format .vbs  (contoh : jail.vbs)
  • Iseng Dengan Membuka Calculator Terus Menerus
@ECHO off
:top
START %SystemRoot%\system32\cacl.exe
GOTO top
Simpan dengan format .bat  (contoh : jail.bat)
  • Iseng Dengan Keyboard
    Set wshShell = wscript.CreateObject(“WScript.Shell”)
    do
    wscript.sleep 100
    wshshell.sendkeys “Maaf, Keyboard Tidak Berfungsi! Harap Diperbaiki”
    loop
Simpan dengan format .vbs  (contoh : jail.vbs)
  • Iseng Dengan Shutdown Computer
    @echo off
    msg * Komputer Anda Terinfeksi Virus
    shutdown -c “Error! Virus Menyebar Keseluruh System!” -s -t 0
Simpan dengan format .bat  (contoh : jail.bat)

No comments:

Post a Comment