{"id":13835540,"url":"https://github.com/codingplanets/Overload-DoS","last_synced_at":"2025-07-10T07:32:27.663Z","repository":{"id":52523965,"uuid":"97346584","full_name":"codingplanets/Overload-DoS","owner":"codingplanets","description":"\"Overload\" is a python program that sends active connections to any target of some sort. It is used to perform a DoS/DDoS attack.","archived":false,"fork":false,"pushed_at":"2020-01-04T19:05:04.000Z","size":22,"stargazers_count":100,"open_issues_count":2,"forks_count":29,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-11-20T20:39:16.810Z","etag":null,"topics":["ddos","ddos-attack","ddos-attack-tools","ddos-attacks","ddos-tool","dos","python-ddos"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codingplanets.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-07-15T22:51:57.000Z","updated_at":"2024-11-08T10:13:05.000Z","dependencies_parsed_at":"2022-09-16T16:13:29.374Z","dependency_job_id":null,"html_url":"https://github.com/codingplanets/Overload-DoS","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codingplanets/Overload-DoS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingplanets%2FOverload-DoS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingplanets%2FOverload-DoS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingplanets%2FOverload-DoS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingplanets%2FOverload-DoS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codingplanets","download_url":"https://codeload.github.com/codingplanets/Overload-DoS/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingplanets%2FOverload-DoS/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264545168,"owners_count":23625404,"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","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","ddos-attack-tools","ddos-attacks","ddos-tool","dos","python-ddos"],"created_at":"2024-08-04T14:01:04.637Z","updated_at":"2025-07-10T07:32:27.388Z","avatar_url":"https://github.com/codingplanets.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# Overload-DoS\n\nThis a very powerful denial of service (DDoS) program. It is very efficient and portable, it is stable and useful for stress-testing companies, it currently has three attack methods. 1) SYN/ICMP with 6 flags including fin, syn, rst, ack, psh and urg. 2) Slowloris/SLOW uses sock.connect to attack. 3) Request/Requester uses httplib to attack. You either choose one of the three attack methods or you can choose all three!   \n## Getting Started\n\nYou will need a few different modules installed to execute Overload.\n\n### Modules\n\nYou will have to use pip to install the modules, colorama, termcolor \u0026 requests\n```\nsudo apt-get install python-pip\n```\n```\nsudo yum install python-pip\n```\n### Module Installing\n\nUsing pip you can install the following modules\n\n```\nsudo pip install colorama termcolor requests\n```\n\n\n## Install Overload-Dos\n\n```\ngit clone https://github.com/codingplanets/Overload-DoS\n```\n```\ncd Overload-DoS\n```\n```\nchmod +x *\n```\n```\n./install-overload\n```\n## Usages\n```\nusage: ./Overload-DoS.py -target [target] -port [port] -threads [number threads]\n\noptional arguments:\n  -h, --help           show this help message and exit\n\noptions:\n\n  -target \u003cip/domain\u003e  Specify your target\n  -timeout \u003ctimeout\u003e   Timeout for socket\n  -threads \u003cthreads\u003e   Set threads number for connection (default = 1000)\n  -port \u003cport\u003e         Specify port target (default = 80)\n  -sleep \u003csleep time\u003e  Set sleep time for reconnection\n  -spoof \u003cspoofed ip\u003e  Specify spoofed IP address\n  -request             Enable request target\n  -syn                 Enable syn attack\n  -slow                Enable slow attack\n  -fakeip              Option to create fake ip if not specifed for spoofed ip\n```\n## Examples\nSlowloris/SLOW attack method\n```\n./Overload-DoS.py -target www.target.com -port 80 -threads 2000 -slow\n```\nRequest/Requester attack method\n```\n./Overload-DoS.py -target www.target.com -port 80 -threads 2000 -request\n```\nSYN/6 flagged ICMP attack method\n```\n./Overload-DoS.py -target www.target.com -syn -threads 5000\n```\nSLOW/Request/SYN attack method\n```\n./Overload-DoS.py -target www.target.com -port 80 -threads 2000 -request -slow -syn\n```\nSLOW/Request/SYN spoofed IP attack method\n```\n./Overload-DoS.py -target www.target.com -port 80 -threads 2000 -request -slow -syn -spoof 8.8.8.8\n```\n\n## Built With\n\n* [Python 2.7](https://www.python.org/download/releases/2.7/) - The code framework used\n* [Requests](http://docs.python-requests.org/en/master/) - Used to send DoS attack\n* [Colorama](https://pypi.python.org/pypi/colorama) - Used to generate text color\n* [Termcolor](https://pypi.python.org/pypi/termcolor) - Used to generate text color\n\n\n\n## Authors\n\n* **Chris Poole**  -  Twitter: [@codingplanets](https://twitter.com/codingplanets)  -  Github: [/codingplanets](https://github.com/codingplanets)  -  Pastebin: [/1337ings](https://pastebin.com/u/1337ings)\n\n\n## License\n\nThis project is licensed under the MIT License\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodingplanets%2FOverload-DoS","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodingplanets%2FOverload-DoS","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodingplanets%2FOverload-DoS/lists"}