README.md (315B)
1 # DoS Attacks 2 Rust implementations of Denial of Service attacks, currently only the ICMP flood 3 attack is implemented. 4 5 ## Requirements 6 - Rust 7 - Cargo 8 9 ## Build 10 ```sh 11 cargo build 12 ``` 13 14 ## Run 15 You will probably need to run the resulting binary with sudo: 16 ```sh 17 sudo ./target/debug/dos-attacks ping-flood 127.0.0.1 18 ```