Advertisement
XiBiTT

Login Batch File

Aug 27th, 2016
2,635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.27 KB | None | 0 0
  1. Have a question? PM me on Pastebin, i'm on everyday! I will be very happy to answer anyone's questions!
  2. --------------------------------------------------------------------------------------------------------------------
  3. SKILL LEVEL : 2 | 1 being easy, 5 being complex.
  4. --------------------------------------------------------------------------------------------------------------------
  5. VISUAL BASIC 2015 ROBLOX EXPLOIT CODE | Credit to me (XiBiTT) for coding.
  6. --------------------------------------------------------------------------------------------------------------------
  7. The first login is: test as username. test as password. THIS IS CASE SENSITIVE!
  8. The second login is: test2 as username. test2 as password. THIS IS CASE SENSITIVE!
  9.  
  10. --------------------------------------------------------------------------------------------------------------------
  11. TO ENCRYPT YOUR CODE USE THIS LINK : http://www.f2ko.de/en/b2e.php | Credit to f2ko
  12. --------------------------------------------------------------------------------------------------------------------
  13. If you use this make sure to credit me (XiBiTT)
  14. --------------------------------------------------------------------------------------------------------------------
  15. Need a tutorial? Here you go! : class="re0">NO TUTORIAL
  16. --------------------------------------------------------------------------------------------------------------------
  17. COPY EVERYTHING BELOW FOR THE CODE | Save it as (ANYTHINGHERE).bat | For security encrypt it into an EXE file.
  18. --------------------------------------------------------------------------------------------------------------------
  19.  
  20. @echo off
  21. cls
  22. :login
  23. cls
  24. echo Please login!
  25. set /p login=Username:
  26.  
  27. if %login%==test goto pass
  28. if %login%==test2 goto pass
  29. if not %login%==test goto e
  30. if not %login%==test2 goto e
  31.  
  32. :pass
  33. echo Please enter in a password!
  34. set /p pass=Password:
  35.  
  36. if %pass%==test goto menu
  37. if %pass%==test2 goto menu
  38. if not %pass%==test goto login
  39. if not %pass%==test2 goto login
  40.  
  41. :e
  42. cls
  43. echo Wrong username!
  44. ping localhost -n 5 >nul
  45. goto exit
  46.  
  47.  
  48. :exit
  49. exit
  50.  
  51. :menu
  52. cls
  53. echo This is an unfinished menu.
  54. echo Credit to XiBiTT for coding the whitelist!
  55. echo.
  56. pause
  57.  
  58.  
  59. ---------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement