├── .gitignore ├── Cargo.toml ├── README.md ├── http-flood.iml ├── src └── main.rs ├── Cargo.lock └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.idea -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "r-u-flooded" 3 | version = "0.1.0" 4 | authors = ["Celesian "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | rand = "0.7.3" 11 | 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # r-u-flooded 2 | 🦀 ruflooded is a UDP DoS (Denial of Service) stress testing tool made in Rust. 3 | 4 | 5 | ## Build 6 | 7 | ```bash 8 | git clone https://github.com/celsec/r-u-flooded 9 | cd r-u-flooded 10 | cargo build 11 | ./target/debug/r-u-flooded 12 | ``` 13 | 14 | ## Usage 15 | 16 | ```bash 17 | ./r-u-flooded