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

Automatic API Documentation Swagger in Golang #GolangDev

pixabay.com In this article, I'll explain how to generate an API blueprint instantly using SwagGo in Golang. API blueprint is a document that contains a bunch of API endpoints, its slickly same as documentation but less description, it's allow another programmer to read and see all the available endpoint and try it out with sandbox feature. Swagger is one of the most used API blueprints right now, it's available in free but limited usage. if you wanna use the free credit, you need to understand YAML notation, you can read the example notation in swagger official documentation. but again, it's really hard and takes an expensive time to arranges all the notation to achieve a good API blueprint. fortunately, there are tools in Golang that allow us to generate the YAML notation and automatically generate the blueprint page with only using markup notation, and it's FREE unlimited for self-host, insane right? SwagGo tools are available here , the documentation is very cl...

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...

Playing with Hooks in Gorm #GolangDev

Pixabay Hello everyone, I would like to share some tricks in gorm, the Idea of this tricks is to execute a command or code statement in the middle of an ORM operation, if you ever know about trigger in the query language, then hooks is just kinda like that. Hooks could execute statement in some events such as: beforeCreate, beforeUpdate, afterCreate,  and afterUpdate . those event is similar as a trigger,  when the trigger is executed in DBMS layer, hooks are executed in the application layer. In my real case, my current company has different convention of naming database column, so when I try to implement ORM, a lot of columns such as created_at, updated_at and deleted_at can't be generated automatically. also if you have a custom UUID you could pass the value UUID generator into hooks before the insert is executed. for more detail let's jump into code : # Explanation Above code containing model struct, and several methods from gorm to serve model, TableName method used to d...