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

https://github.com/chamikamunithunga/dos_attack

This script simulates a Denial of Service (DoS) attack by sending a continuous stream of GET requests to a specified URL. It is intended for educational purposes only, such as testing and understanding how DoS attacks work in a controlled environment.
https://github.com/chamikamunithunga/dos_attack

Last synced: 3 months ago
JSON representation

This script simulates a Denial of Service (DoS) attack by sending a continuous stream of GET requests to a specified URL. It is intended for educational purposes only, such as testing and understanding how DoS attacks work in a controlled environment.

Awesome Lists containing this project

README

        

DoS Attack Script
====================

![Screenshot 2024-10-13 at 6 54 57 PM](https://github.com/user-attachments/assets/d63d3f44-30f3-463d-a984-afaf40dc9984)

Description
-----------
This script simulates a Denial of Service (DoS) attack by sending a continuous stream of GET requests to a specified URL. It is intended for educational purposes only, such as testing and understanding how DoS attacks work in a controlled environment. Do not use this script against any system without explicit permission.

Features
----------
Multithreading: The script spawns multiple threads (100 by default) to send requests concurrently, simulating a higher load.
Error Handling: Captures and displays any errors encountered during the request process.
Status Code Reporting: Logs the HTTP status codes received from the server for monitoring purposes.

Important Notes
===============
Legal Disclaimer: This script is for educational purposes only. Do not use it against any systems or networks without permission. Unauthorized use may result in legal consequences.

Controlled Environment: It is recommended to run this script in a controlled environment, such as a local server, to avoid unintended consequences.

Responsibility: The author is not responsible for any misuse of this script. Use at your own risk.

# Network Traffic Generator
-----------------------------

![SPVQOoGeJY3dccYNlH3zbMswiOvoBjda](https://github.com/user-attachments/assets/2957c241-aad2-4ee7-b09e-5ef29daa4657)

This program is a simple network traffic sniffer that captures packets transmitted over the network for a specified website URL using Python's scapy library. It helps in monitoring network activity and can be useful for educational purposes, network diagnostics, or security analysis.