Modify host header in HTTP requests to bypass domain censorship in China. (#34)

Co-authored-by: Sanheiii <35133371+Sanheiii@users.noreply.github.com>
Reviewed-on: Dniel97/segatools#34
Co-authored-by: Sanhei <sanhei@noreply.gitea.tendokyu.moe>
Co-committed-by: Sanhei <sanhei@noreply.gitea.tendokyu.moe>
This commit is contained in:
2024-11-11 16:24:33 +00:00
committed by Dniel97
parent 83840e0a87
commit ceb2b63e8b
10 changed files with 138 additions and 3 deletions

View File

@ -0,0 +1,34 @@
#include "get_function_ordinal.h"
DWORD get_function_ordinal(const char* dllName, const char* functionName) {
HMODULE hModule = LoadLibraryA(dllName);
if (!hModule) {
dprintf("Failed to load DLL: %s\n", dllName);
return 0;
}
ULONG size;
PIMAGE_EXPORT_DIRECTORY exportDir = (PIMAGE_EXPORT_DIRECTORY)ImageDirectoryEntryToData(
hModule, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &size);
if (!exportDir) {
dprintf("Failed to get export table\n");
FreeLibrary(hModule);
return 0;
}
DWORD* functionNames = (DWORD*)((BYTE*)hModule + exportDir->AddressOfNames);
WORD* ordinals = (WORD*)((BYTE*)hModule + exportDir->AddressOfNameOrdinals);
for (DWORD i = 0; i < exportDir->NumberOfNames; ++i) {
char* name = (char*)((BYTE*)hModule + functionNames[i]);
if (strcmp(name, functionName) == 0) {
DWORD ordinal = ordinals[i] + exportDir->Base;
FreeLibrary(hModule);
return ordinal;
}
}
dprintf("Function not found: %s\n", functionName);
FreeLibrary(hModule);
return 0;
}