Advertisement
Guest User

biotech ip pinger

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