Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.99 KB | None | 0 0
  1. @echo off
  2. call "data/config.cmd"
  3. title %title%
  4. :root
  5. cls
  6. echo [===========================================================]
  7. echo [Welcome to %program%#%version% ~ nightmare.dll                       ]
  8. echo [===========================================================]
  9. echo       #                                                      
  10. echo       #  ####  #    # ###### #####       ####  #    # #####  
  11. echo       # #    # #   #  #      #    #     #    # ##  ## #    #
  12. echo       # #    # ####   #####  #    #     #      # ## # #    #
  13. echo #     # #    # #  #   #      #####  ### #      #    # #    #
  14. echo #     # #    # #   #  #      #   #  ### #    # #    # #    #
  15. echo  #####   ####  #    # ###### #    # ###  ####  #    # #####  
  16. echo =============================================================
  17. echo.
  18. set /p console=root@Joker:~$
  19. if %console% == help goto help
  20. if %console% == ping goto ping
  21. if %console% == tracert goto tracert
  22. if %console% == cpass goto cpass
  23. goto error
  24.  
  25. goto error
  26.  
  27. :help
  28. echo Placeholder.
  29. pause >nul
  30. goto root
  31.  
  32. :ping
  33. echo.
  34. echo Enter the website URL or IP address you want to ping.
  35. set /p ping=root/ping.jr@Joker:~$
  36. ping %ping%
  37. echo Click any button to return to root...
  38. pause >nul
  39. goto root
  40.  
  41. :tracert
  42. echo.
  43. echo Enter the website URL or IP address you want to trace.
  44. set /p tracert=root/tracert.jr@Joker:~$
  45. tracert %tracert%
  46. echo Click any button to return to root...
  47. pause >nul
  48. goto root
  49.  
  50. :cpass
  51. echo.
  52. echo You must run this program as administrator to use this feature!
  53. echo Enter the username of the account (do ls to list all users).
  54. set /p username=root/cpass.jr@Joker:~$
  55. if %username% == ls goto ls
  56. goto :cpasspassword
  57. :ls
  58. net user
  59. pause >nul
  60. goto cpass
  61. :cpasspassword
  62. echo Enter the password of the account.
  63. set /p password=root/cpass.jr@Joker:~$
  64. net user %username% %password%
  65. echo Click any button to return to root...
  66. pause >nul
  67. goto root
  68.  
  69. :error
  70. echo '%console%' is not a valid command. Try again.
  71. pause >nul
  72. goto root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement