Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gill-singh-a/dos

Sends randomly generated packets to the IP Address of the target with the designated port range through UDP Protocol through multiple threads, hence slowing down the server and causing a DOS Attack.
https://github.com/gill-singh-a/dos

attack dos dos-attack gui multithreading python python-3 socket threading tkinter

Last synced: 27 days ago
JSON representation

Sends randomly generated packets to the IP Address of the target with the designated port range through UDP Protocol through multiple threads, hence slowing down the server and causing a DOS Attack.

Awesome Lists containing this project

README

        

# DOS (Denial of Service)
Sends randomly generated packets to the IP Address of the target with the designated port range through UDP Protocol through multiple threads, hence slowing down the server and causing a DOS Attack.

## Requirements
Language Used = Python3

Modules/Packages used:
* socket (for connecting and sending the packets through UDP Protocol)
* threading (for creating multiple threads, to increase the rate of sending the packets)
* random (for generating random string)
* time (for displaying time in the Command Line Interface)
* string (for generating random string)
* tkinter (for providing a gui interface)
* colorama (for colouring the text in Command Line Interface)
* datetime (for displaying date in the Command Line Interface)

### INPUTS
* Target IP
* Starting Port
* Ending Port
* Threads
* Message Size
* Message Multiplier

### Working
It creates the specified number of threads for each port given. For example, if there are 2 ports (Starting port = 80 and Ending Port = 81) and threads = 100, then it will create a total 200 threads (100 for each port).

It then generates a random string of the size that is specified in Message Size and multiplies that string with the value specified in message multiplier.

Then each thread connects to the server with the port they're assigned through UDP Protocol.

And finally sends the random string to the server through the socket created.

### Note
As this Program is written in Python which is run through an Interpreter, it would be slow and hence won't be that much effective. To make this more efficient, we can use some tools like auto-py-to-exe to convert the '.py' file to '.exe' file.