-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
BeaconEye.cs
356 lines (280 loc) · 14.7 KB
/
BeaconEye.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
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
using BeaconEye.Config;
using BeaconEye.Reader;
using libyaraNET;
using Mono.Options;
using NtApiDotNet;
using SharpDisasm;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Threading;
namespace BeaconEye {
class BeaconEye {
enum ScanState{
NotFound,
Found,
FoundNoKeys,
HeapEnumFailed
}
class FetchHeapsException : Exception {
}
class ScanResult {
public ScanState State { get; set; }
public long ConfigAddress { get; set; }
public bool CrossArch { get; set; }
public Configuration Configuration { get; set; }
}
public static string cobaltStrikeRule64 = "rule CobaltStrike { " +
"strings: " +
"$sdec = { " +
" 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 " +
" 01 00 00 00 00 00 00 00 (00|01|02|04|08|10) 00 00 00 00 00 00 00 " +
" 01 00 00 00 00 00 00 00 ?? ?? 00 00 00 00 00 00 " +
" 02 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 " +
" 02 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 " +
" 01 00 00 00 00 00 00 00 ?? ?? 00 00 00 00 00 00 " +
"} " +
"condition: " +
"any of them" +
"}";
public static string cobaltStrikeRule32 = "rule CobaltStrike { " +
"strings: " +
"$sdec = { " +
" 00 00 00 00 00 00 00 00 " +
" 01 00 00 00 (00|01|02|04|08|10) 00 00 00" +
" 01 00 00 00 ?? ?? 00 00 " +
" 02 00 00 00 ?? ?? ?? ?? " +
" 02 00 00 00 ?? ?? ?? ?? " +
" 01 00 00 00 ?? ?? 00 00 " +
"} " +
"condition: " +
"any of them" +
"}";
static ManualResetEvent finishedEvent = new ManualResetEvent(false);
static List<Thread> beaconMonitorThreads = new List<Thread>();
static Rules CompileRules(bool x64) {
using (Compiler compiler = new Compiler()) {
compiler.AddRuleString(x64 ? cobaltStrikeRule64 : cobaltStrikeRule32);
return compiler.GetRules();
}
}
public static List<int> IndexOfSequence(byte[] buffer, byte[] pattern, int startIndex) {
List<int> positions = new List<int>();
int i = Array.IndexOf<byte>(buffer, pattern[0], startIndex);
while (i >= 0 && i <= buffer.Length - pattern.Length) {
byte[] segment = new byte[pattern.Length];
Buffer.BlockCopy(buffer, i, segment, 0, pattern.Length);
if (segment.SequenceEqual<byte>(pattern))
positions.Add(i);
i = Array.IndexOf<byte>(buffer, pattern[0], i + 1);
}
return positions;
}
static Configuration ProcessHasConfig(ProcessReader process) {
var heaps = process.Heaps;
using (var ctx = new YaraContext()) {
var rules = CompileRules(process.Is64Bit);
Scanner scanner = new Scanner();
foreach (var heap in heaps) {
var memoryInfo = process.QueryMemoryInfo((ulong)heap);
if (memoryInfo.NoAccess)
continue;
var memory = process.ReadMemory(memoryInfo.BaseAddress, (int)memoryInfo.RegionSize);
var results = scanner.ScanMemory(memory, rules);
if (results.Count > 0) {
foreach (KeyValuePair<string, List<Match>> item in results[0].Matches) {
var configStart = memoryInfo.BaseAddress + item.Value[0].Offset;
var configBytes = process.ReadMemory(configStart, process.Is64Bit ? 0x800 : 0x400);
return new Configuration((long)configStart, new BinaryReader(new MemoryStream(configBytes)), process);
}
}
}
}
return null;
}
static void MonitorThread(object arg) {
if(arg is BeaconProcess bp) {
bp.MonitorTraffic();
}
}
static Tuple<long,long> GetKeyIVAddress(ProcessReader.MemoryInfo blockInfo, ProcessReader process) {
if (process.Is64Bit) {
var codeBlock = process.ReadMemory(blockInfo.BaseAddress, (int)blockInfo.RegionSize);
var offsets = IndexOfSequence(codeBlock, new byte[] { 0x0F, 0x10, 0x05 }, 0);
foreach (var offset in offsets) {
byte[] instructions = process.ReadMemory(blockInfo.BaseAddress + (ulong)offset, 15);
Disassembler disasm = new Disassembler(instructions, ArchitectureMode.x86_64, (ulong)blockInfo.BaseAddress + (ulong)offset);
var movupsIns = disasm.NextInstruction();
var movdquIns = disasm.NextInstruction();
if (movdquIns.Mnemonic != SharpDisasm.Udis86.ud_mnemonic_code.UD_Imovdqu ||
movdquIns.Operands[0].Base != SharpDisasm.Udis86.ud_type.UD_R_RIP ||
movupsIns.Operands[0].Base != movdquIns.Operands[1].Base) {
return null;
} else {
var iv_address = (long)movupsIns.PC + movupsIns.Operands[1].LvalSDWord;
var keys_address = (long)movdquIns.PC + movdquIns.Operands[0].LvalSDWord - 32;
return new Tuple<long, long>(keys_address, iv_address);
}
}
} else {
var codeBlock = process.ReadMemory(blockInfo.BaseAddress, (int)blockInfo.RegionSize);
var offsets = IndexOfSequence(codeBlock, new byte[] { 0xa5, 0xa5, 0xa5, 0xa5, 0xe8 }, 0);
foreach (var offset in offsets) {
byte[] instructions = process.ReadMemory(blockInfo.BaseAddress + (ulong)offset - 5, 24);
Disassembler disasm = new Disassembler(instructions, ArchitectureMode.x86_32, (ulong)blockInfo.BaseAddress + (ulong)offset);
var movEDIMem = disasm.NextInstruction();
if(movEDIMem.Mnemonic != SharpDisasm.Udis86.ud_mnemonic_code.UD_Imov ||
movEDIMem.Operands[0].Base != SharpDisasm.Udis86.ud_type.UD_R_EDI ||
movEDIMem.Operands[1].Base != SharpDisasm.Udis86.ud_type.UD_NONE
) {
continue;
}
var iv_address = movEDIMem.Operands[1].LvalUDWord;
long key_address = 0;
for(int idx = offset; idx > offset - 50; idx--) {
var keysOffsets = IndexOfSequence(codeBlock, new byte[] { 0x53, 0x56, 0x57, 0xbb }, idx);
if(keysOffsets.Count > 0 && keysOffsets[0] < offset) {
instructions = codeBlock.Skip(idx+3).Take(8).ToArray();
disasm = new Disassembler(instructions, ArchitectureMode.x86_32, (ulong)blockInfo.BaseAddress + (ulong)idx+3);
var movEBX = disasm.NextInstruction();
key_address = movEBX.Operands[1].LvalUDWord;
break;
}
}
if (key_address != 0)
return new Tuple<long, long>(key_address, iv_address);
}
}
return null;
}
static ScanResult IsBeaconProcess(ProcessReader process, bool monitor) {
try {
var beaconConfig = ProcessHasConfig(process);
if (beaconConfig == null) {
return new ScanResult();
}
var memoryInfo = process.QueryAllMemoryInfo();
foreach (var blockInfo in memoryInfo) {
if(!blockInfo.IsExecutable) {
continue;
}
BeaconProcess beaconProcess = null;
Tuple<long, long> keyIV;
if((keyIV = GetKeyIVAddress(blockInfo, process)) == null) {
continue;
}
bool crossArch = true;
if (process.Is64Bit == NtProcess.Current.Is64Bit) {
if (monitor) {
beaconProcess = new BeaconProcess(process, beaconConfig, keyIV.Item2, keyIV.Item1, ref finishedEvent);
var beaconMonitorThread = new Thread(MonitorThread);
beaconMonitorThreads.Add(beaconMonitorThread);
beaconMonitorThread.Start(beaconProcess);
}
crossArch = false;
}
return new ScanResult() {
State = ScanState.Found,
ConfigAddress = beaconConfig.Address,
CrossArch = crossArch,
Configuration = beaconConfig
};
}
return new ScanResult() {
State = ScanState.FoundNoKeys,
ConfigAddress = beaconConfig.Address,
Configuration = beaconConfig
};
} catch (FetchHeapsException) {
return new ScanResult() {
State = ScanState.HeapEnumFailed
};
}
}
static void Main(string[] args) {
bool monitor = false;
string processFilter = null;
bool showHelp = false;
bool verbose = false;
string dump = null;
IProcessEnumerator procEnum;
Console.WriteLine(
"BeconEye by @_EthicalChaos_\n" +
$" CobaltStrike beacon hunter and command monitoring tool { (IntPtr.Size == 8 ? "x86_64" : "x86")} \n"
);
OptionSet option_set = new OptionSet()
.Add("v|verbose", "Display more verbose output instead of just information on beacons found", v => verbose = true)
.Add("m|monitor", "Attach to and monitor beacons found when scanning live processes", v => monitor = true)
.Add("f=|filter=", "Filter process list with names starting with x (live mode only)", v => processFilter = v)
.Add("d=|dump=", "A folder to use for MiniDump mode to scan for beacons (files with *.dmp or *.mdmp)", v => dump = v)
.Add("h|help", "Display this help", v => showHelp = v != null);
try {
option_set.Parse(args);
if (showHelp) {
option_set.WriteOptionDescriptions(Console.Out);
return;
}
} catch (Exception e) {
Console.WriteLine("[!] Failed to parse arguments: {0}", e.Message);
option_set.WriteOptionDescriptions(Console.Out);
return;
}
var timer = new Stopwatch();
timer.Start();
Console.WriteLine($"[+] Scanning for beacon processess...");
if(processFilter != null) {
Console.WriteLine($"[=] Using process filter {processFilter}*");
}
if (!string.IsNullOrEmpty(dump)) {
procEnum = new MiniDumpProcessEnumerator(dump, verbose);
} else {
procEnum = new RunningProcessEnumerator(processFilter);
}
var originalColor = Console.ForegroundColor;
var beaconsFound = 0;
var processesScanned = 0;
foreach (var process in procEnum.GetProcesses()) {
ScanResult sr;
try
{
if ((sr = IsBeaconProcess(process, monitor)).State == ScanState.Found || sr.State == ScanState.FoundNoKeys) {
beaconsFound++;
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine($" {process.Name} ({process.ProcessId}), Keys Found:{sr.State == ScanState.Found}, Configuration Address: 0x{sr.ConfigAddress} {(sr.CrossArch ? $"(Please use the {(process.Is64Bit ? "x64" : "x86")} version of BeaconEye to monitor)" : "")}");
sr.Configuration.PrintConfiguration(Console.Out, 1);
} else if(sr.State == ScanState.NotFound && verbose) {
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine($" {process.Name} ({process.ProcessId})");
} else if(sr.State == ScanState.HeapEnumFailed) {
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine($" {process.Name} ({process.ProcessId}) Failed to fetch heap info");
}
}
catch (NtException e)
{
Console.Error.WriteLine($"[!] NtException \"{e.Status}\" for process {process.ProcessId} ({process.Name}).");
}
processesScanned++;
}
timer.Stop();
Console.ForegroundColor = originalColor;
Console.WriteLine($"[+] Scanned {processesScanned} processes in {timer.Elapsed}");
if (beaconsFound > 0) {
Console.WriteLine($"[+] Found {beaconsFound} beacon processes");
if (beaconMonitorThreads.Count > 0 && monitor) {
Console.WriteLine($"[+] Monitoring {beaconMonitorThreads.Count} beacon processes, press enter to stop monitoring");
Console.ReadLine();
Console.WriteLine($"[+] Exit triggered, detaching from beacon processes...");
finishedEvent.Set();
foreach (var bt in beaconMonitorThreads) {
bt.Join();
}
}
} else {
Console.WriteLine($"[=] No beacon processes found");
}
}
}
}