Advertisement
DY7808

Username and password .bat console Made By DY7808

Jan 28th, 2017
531
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.45 KB | None | 0 0
  1. @echo off
  2. :top
  3. cls
  4. echo Welcome to %USERNAME%'s console.
  5. echo Username and password is "test"
  6. set /p us=Username:
  7.  
  8. if "%us%"=="test" goto :password
  9. cls
  10. echo Incorrect username.
  11. ping 1.1.1.1 -n 1 -w 1500 >nul
  12. goto :top
  13.  
  14. :password
  15. cls
  16. set /p pass=Password:
  17. if "%pass%"=="test" goto :final
  18. cls
  19. echo Incorrect Password.
  20. ping 1.1.1.1 -n 1 -w 1500 >nul
  21. goto :password
  22.  
  23. :final
  24. cls
  25. echo You are now in your console
  26. pause
  27. goto :top
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement