Advertisement
Guest User

batch ip pinger by hailey

a guest
Jan 15th, 2020
13,105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.23 KB | None | 0 0
  1. Hey there im Hailey, this is a quick rainbow IP pinger I put together
  2. to use this pinger simply copy my script from bellow open your notepad and paste my script once pasted click save save as and name the file anything you want but make sure you change the file type from default .txt to .bat as this is a batch file then save to your desktop and double click to run
  3.  
  4.  
  5.  
  6.  
  7.  
  8. @echo off
  9. color A
  10.  
  11. title Hailey`s Pinger
  12.  
  13. :greeting
  14. cls
  15.  
  16. ECHO d8888b. d888888b  .d88b.  d888888b d88888b  .o88b. db   db
  17. ECHO 88  `8D   `88'   .8P  Y8. `~~88~~' 88'     d8P  Y8 88   88
  18. ECHO 88oooY'    88    88    88    88    88ooooo 8P      88ooo88
  19. ECHO 88~~~b.    88    88    88    88    88~~~~~ 8b      88~~~88
  20. ECHO 88   8D   .88.   `8b  d8'    88    88.     Y8b  d8 88   88
  21. ECHO Y8888P' Y888888P  `Y88P'     YP    Y88888P  `Y88P' YP   YP
  22. ECHO ==========================================================
  23. ECHO Hey guys this is just a quick rainbow pinger i made for you guys ENJOY!
  24. ECHO Add me on kik to get more of my projects @biotechpro3rd
  25.  
  26.  
  27. set /p IP=Enter IP To Ping:
  28. :top
  29. PING -n 1 %IP% | FIND "TTL="
  30. title :: Pinging: %IP% ::
  31. IF ERRORLEVEL 1 (echo STAY DOWN BITCH!)
  32. set /a num=(%Random%%%9)+1
  33. color %num%
  34. ping -t 2 0 10 127.0.0.1 >nul
  35. GoTo top
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement