Skip to main content

Membuat Software DDOS dengan VB 6.0

alhamdulillah, akhirnya liburan telah datang. project-project yang udah aku rancang waktu di sela-sela kesibukan kuliah pun akhirnya bisa di kerjakan sekarang. beberapa project udah aku kerjakan dan salah satunya sudah selesai. berikut adalah software yang telah aku slesaikan. namanya belum aku berikan :D hehehe, tapi fungsinya adalah sebagai alat untuk melakukan DDOS attack. apa itu DDOS attack atau bisa di sebut stress testing?.
In computing, a denial-of-service (DoS) or distributed denial-of-service (DDoS) attack is an attempt to make a machine or network resource unavailable to its intended users. Although the means to carry out, motives for, and targets of a DoS attack may vary, it generally consists of efforts to temporarily or indefinitely interrupt or suspend services of a host connected to the Internet. As clarification, DDoS{Distributed Denial of Service} attacks are sent by two or more persons, or bots. (See botnet) DoS (Denial of Service) attacks are sent by one person or system.
Perpetrators of DoS attacks typically target sites or services hosted on high-profile web servers such as banks, credit card payment gateways, and even root nameservers. This technique has now seen extensive use in certain games, used by server owners, or disgruntled competitors on games. Increasingly, DoS attacks have also been used as a form of resistance. Richard Stallman has stated that DoS is a form of 'Internet Street Protests’.[1]The term is generally used relating to computer networks, but is not limited to this field; for example, it is also used in reference to CPU resource management.[2]
One common method of attack involves saturating the target machine with external communications requests, so much so that it cannot respond to legitimate traffic, or responds so slowly as to be rendered essentially unavailable. Such attacks usually lead to a server overload. In general terms, DoS attacks are implemented by either forcing the targeted computer(s) to reset, or consuming its resources so that it can no longer provide its intended service or obstructing the communication media between the intended users and the victim so that they can no longer communicate adequately.
Denial-of-service attacks are considered violations of the Internet Architecture Board's Internet proper use policy, and also violate the acceptable use policies of virtually all Internet service providers. They also commonly constitute violations of the laws of individual nations.

sumber  : wikipedia

tanpa lama-lama lagi ini dia deskripsi dari software ku.


software DDOS attack di buat menggunakan bahasa basic dengan IDE visual basic 6.0 , software ini berfungsi untuk membanjiri trafic website atau menghabiskan daya internet yang ada di area lan. softaware ini memiliki beberapa fitur, yaitu launch at startup dan hide software, keduanya memiliki fungsi yang memungkinkan untuk mendukung penyerangan DDOS.

+ launch at startup : di gunakan untuk membuat software ini berjalan saat startup, fungsi ini di gunakan saat hacker menginginkan untuk menginfeksi komputer orang lain atau warnet dapat melakukan serangan DDOS attack secara otomatis walaupun tidak di kontrol.


+ hide software : berfungsi untuk menyembunyikan form software saat software berjalan. fitur ini di gunakan apabila hacker telah menginfeksi komputer orang lain, jadi software ini akan melakukan DDOS dengan otomatis tanpa di ketahui oleh pengguna lain saat menggunakann komputer korban.



+change color : hanya untuk mengganti warna form hehehehe :D

apabila pembaca ingin mengembangkan atau mengetahui script dari software ini bisa di download file nya di sini.

Sekian artikel dari saya tentang membuat software DDOS dengan VB 6.0. terimakasih telah membaca semoga bermanfaat. :)

NB : artikel ini bertujuan untuk menambah wawasan pembaca tentang bagaimana membuat software DDOS dengan VB 6.0, untuk segala tindakan kriminal yang dilakukan oleh pembaca dari artikel ini. penulis tidak bertanggung jawab.

Popular posts from this blog

Create MVC Pattern Using Echo Framework #GolangDev

pixabay.com Hi, Back again. today I am gonna share about Go Language, yes it is a new programming language that really fast growing this day, so many startup using it, especially in indonesia, there is a Gojek, Dana, Tiket and many more. Go Lang is a programming language found by google engineer, this language is a multi paradigm language, you could use it as functional programming or treat it like an OOP bases. Echo is an framework that use Golang as a main language, to use a fast and reliable backend/web apps, as you know Golang has a really fast performance than other language, one of the reason is because its compiled not interpreted, so the Echo claim that its 10x faster. insane right ? Actually I didn't test the performance yet, but yeah for newbie like me in golang its not the main thing that you must understand, so the thing that we should know is how we actually can do with Golang.  I am person with MVC bases, before jump to golang, I have experience with La...

Laravel Tips : Membuat Model, Migration dan Controller dengan Sekali Jalan

  php artisan adalah generator laravel yang berfungsi untuk membuat file kodingan dengan mudah, seperti membuat controller, model, seeder, migration dan masih banyak lagi. artisan hanya bisa di lakukan di dalam lingkungan console, seperti cmd dan terminal. berikut akan saya tunjukan cara membuat controller, model, migration menggunakan php artisan. # membuat controller ketikkan perintah di bawah ini php artisan make:controller BlogController # membuat model ketikkan perintah di bawah ini php artisan make:model Blog # membuat migration ketikkan perintah di bawah ini php artisan make:migration blog # membuat seeder ketikkan perintah di bawah ini php artisan make:seeder BlogSeeder # membuat migration, controller, dan model sekaligus ketikkan perintah di bawah ini php artisan make:model -crm Blog perintah di atas akan mengenerate controller dengan nama BlogController dengan keadaan Resource method tertulis, m...

Variadic Function vs Slice Param Function in Golang #GolangDev

pixabay.com Hello everyone, good to see you again. I am gonna share about a simple thing in fundamental Golang, this article inspired by a QnA in a website and I think I will tell the answer more flexible and wider in my personal tutorial, so this is about differentiation between Variadic Function and Slice Param in Function. # Variadic Function Variadic function is an unique code, this code is enable us to passing a infinite params in one function, we know that we need to put parameters in function we need to put the space in there, for example : function(param1 int, param2 string), golang absolutely doing that thing too, seems like the other languages, but Variadic function is a something new, you could put many value in function and sapparated by comma, you maybe thing about passing array in parameters but this is something different, you dont need to put parenteses when you call the function, it just like you put regular parameters but have an infinite numbers.  fo...