{"id":34672317,"url":"https://github.com/luisotavio13/ddos","last_synced_at":"2025-12-24T20:00:01.197Z","repository":{"id":287781485,"uuid":"965769645","full_name":"LuisOtavio13/ddos","owner":"LuisOtavio13","description":"A DDoS, or Distributed Denial of Service, is a type of cyberattack in which multiple devices (usually malware-infected and remotely controlled computers, forming a \"botnet\") simultaneously send a large amount of traffic to a server, website, or network. The goal is to overwhelm the target system.","archived":false,"fork":false,"pushed_at":"2025-07-19T19:19:17.000Z","size":4887,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-20T03:25:23.572Z","etag":null,"topics":["ddos","ddos-attack-tools","ddos-attacks","ddos-tool","firewall","hacking","network-security","security-testing","security-tools","waf","web-security"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LuisOtavio13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-13T21:31:47.000Z","updated_at":"2025-07-19T19:19:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"2a1f2e7c-bcfd-4eac-999c-8727c996c309","html_url":"https://github.com/LuisOtavio13/ddos","commit_stats":null,"previous_names":["luisbatis/ddos","luisotavio13/ddos"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/LuisOtavio13/ddos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuisOtavio13%2Fddos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuisOtavio13%2Fddos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuisOtavio13%2Fddos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuisOtavio13%2Fddos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LuisOtavio13","download_url":"https://codeload.github.com/LuisOtavio13/ddos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuisOtavio13%2Fddos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28007435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ddos","ddos-attack-tools","ddos-attacks","ddos-tool","firewall","hacking","network-security","security-testing","security-tools","waf","web-security"],"created_at":"2025-12-24T20:00:00.717Z","updated_at":"2025-12-24T20:00:01.190Z","avatar_url":"https://github.com/LuisOtavio13.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DDoS (Distributed Denial of Service)\n\n## 📖 Description\nA Distributed Denial of Service (DDoS) is a type of cyber attack that aims to overload a system, server, or network with excessive traffic, rendering it unavailable to legitimate users. This project is a Python-based tool designed for educational and testing purposes.\n\n## 🚀 Features\n- 🌐 **High Request Rate**: Sends up to 1000 requests per second.\n- 🔌 **Port Flexibility**: Supports all ports (1-65535).\n- 🖥️ **Cross-Platform**: Compatible with any operating system that supports Python 3.\n- 🛠️ **Customizable**: Easily configurable via a JSON file (`config.json`) for IPs, ports, and packet quantities.\n\n## ⚙️ Installation\nFollow these steps to set up and run the project:\n\n1. **Clone the Repository**:\n   ```bash\n   git clone https://github.com/TylorSwift2/ddos.git\n   cd ddos\n   ```\n\n2. **Install Dependencies**:\n   Make sure you have Python 3 installed, then run:\n   ```bash\n   pip3 install -r requirements.txt\n   ```\n\n3. **Configure the test Attack**:\n   Edit the `config.json` file to set the number of IPs, port, and packet quantity:\n   ```json\n   {\n    \"quantity_ips\": 10,\n    \"door\": 80,\n    \"quantity_packages\": 100\n   }\n   ```\n\n4. **Run the Script**:\n   Execute the script with:\n   ```bash\n   python3 ddos.py\n   ```\n\n## 📝 Usage\n- **Option 1**: Perform an HTTPS attack.\n- **Option 2**: Perform an IP-based attack.\n- **Option 3**: Test DDoS functionality with random IPs.\n- **Option 0**: Quit the program.\n\n## ⚠️ Important Notes\n- This tool is intended **only for educational purposes** and testing in environments where you have explicit permission.\n- **The developers are not responsible for any misuse of this project.**\n- Always obtain permission from the target system's owner before performing any tests.\n\n## 📂 Project Structure\n```\nddos/\n├── ddos.py               # Main script\n├── config.json           # Configuration file for attack test parameters\n├── modules/              # Contains helper modules\n│   ├── https/            # HTTPS attack logic\n│   ├── ddos_core/        # ddos core\n│   ├── config/           # config json\n│   ├── ip_atack/         # IP attack logic\n│   ├── generate_random_ip/ # Random IP generator\n│   ├── validate/         # validate ip and packet quantity\n├── report/               # Logs and reports\n└── README.md             # Project documentation\n```\n## 📂 learn more about the files\n[config](./doc/config.md)\n[controler](./doc/controler.md)\n[https](./doc/https.md)\n[ip_atack](./doc/ip_atack.md)\n[validade](./doc/validade.md)\n[generade_random_ip](./doc/genegarde_random_ip.md)\n[core](./doc/core.md)\n## 🛡️ Disclaimer\nThis project is for **educational purposes only**. Unauthorized use of this tool to attack systems without permission is illegal and unethical. Use responsibly.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluisotavio13%2Fddos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluisotavio13%2Fddos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluisotavio13%2Fddos/lists"}