ddos-script/README.md

53 lines
1.4 KiB
Markdown
Raw Normal View History

2023-11-22 23:37:57 -05:00
2023-11-04 19:25:16 -04:00
# Simple DDoS
2023-11-22 23:37:57 -05:00
A simple proof of concept DDoS script written in Python.
2023-11-26 19:18:29 -05:00
![GitHub commit activity (branch)](https://img.shields.io/github/commit-activity/w/twhite96/ddos-script?style=for-the-badge&logo=github&logoColor=%23fff&labelColor=%23000&color=%23fff)
![GitHub followers](https://img.shields.io/github/followers/twhite96?style=for-the-badge&logo=github&logoColor=%23fff&labelColor=%23000&color=%23fff)
2023-11-22 23:37:57 -05:00
2023-11-26 19:18:29 -05:00
![Keybase PGP](https://img.shields.io/keybase/pgp/0x8c?style=for-the-badge&logo=keybase&labelColor=%23000&color=%2344AD42)
2023-11-22 23:37:57 -05:00
![Mastodon Follow](https://img.shields.io/mastodon/follow/110494047736700791?domain=https%3A%2F%2Finfosec.exchange&style=for-the-badge&labelColor=%23000&color=%2344ad42)
## Acknowledgements
- [Craig Lang](https://www.linkedin.com/in/craiglang42/): for his valuable pairing sessions
- [Tae'Lur Alexis's Port Scanner](https://github.com/cyberbarbie/cute-little-port-scanner): looking at the code helped me quit spinning my wheels with over-engineering
## Usage/Examples
To use:
2023-11-22 23:41:15 -05:00
Clone the repo:
```sh
$ git clone https://github.com/twhite96/ddos-script.git
```
then cd into the `src` directory...
```sh
$ cd src
```
2023-11-22 23:37:57 -05:00
```sh
2023-11-22 23:41:15 -05:00
$ python3 ddos.py <hostname> <port>
2023-11-22 23:37:57 -05:00
```
## FAQ
#### Well it didn't work!
I know. You'd need to feed more bytes into the `randbytes(4000)` method, as I am only sending 4kb. This is a v1 of a proof of concept.
#### Where the hell are the tests??
Soon, young Padawan.