Files
monoxgas-sRDI/FunctionTest/FunctionTest.cpp
T
Nick Landers c5dacf714c Add new obfuscate_imports (0x4) flag
Finish refactor + fixes for x86 code.
Small code cleanup.
2019-09-26 16:49:05 -04:00

77 lines
1.5 KiB
C++

// FunctionTest.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <Windows.h>
#include <string>
#define SRDI_CLEARHEADER 0x1
#define SRDI_CLEARMEMORY 0x2
#define SRDI_OBFUSCATEIMPORTS 0x4
DWORD GetFileContents(LPCSTR filename, LPSTR *data, DWORD &size)
{
std::FILE *fp = std::fopen(filename, "rb");
if (fp)
{
fseek(fp, 0, SEEK_END);
size = ftell(fp);
fseek(fp, 0, SEEK_SET);
*data = (LPSTR)malloc(size + 1);
fread(*data, size, 1, fp);
fclose(fp);
return true;
}
return false;
}
#define ROTR32(value, shift) (((DWORD) value >> (BYTE) shift) | ((DWORD) value << (32 - (BYTE) shift)))
DWORD HashFunctionName(LPSTR name) {
DWORD hash = 0;
do
{
hash = ROTR32(hash, 13);
hash += *name;
name++;
} while (*(name - 1) != 0);
return hash;
}
extern "C" ULONG_PTR LoadDLL(ULONG_PTR uiLibraryAddress, DWORD dwFunctionHash, LPVOID lpUserData, DWORD nUserdataLen, DWORD flags);
int main()
{
LPSTR buffer = NULL;
DWORD bufferSize = 0;
HMODULE test = LoadLibraryA("User32.dll"); // For MessageBox Testing
#ifdef _WIN64
LPCSTR fileName = "../bin/TestDLL_x64.dll";
#else
LPCSTR fileName = "../bin/TestDLL_x86.dll";
#endif
DWORD result = GetFileContents(fileName, &buffer, bufferSize);
if (!result || buffer == NULL) {
printf("[!] Cannot read file.");
return 1;
}
LoadDLL(
(ULONG_PTR)buffer,
HashFunctionName("SayHello"),
NULL, 0,
SRDI_CLEARHEADER | SRDI_CLEARMEMORY | SRDI_OBFUSCATEIMPORTS | (3 << 16)
);
return 0;
}