add: control flow, code signing, build status check. fix: obfuscator

This commit is contained in:
2023-09-04 16:34:24 +02:00
parent 8ee02cdff5
commit b359d4b833
9 changed files with 874 additions and 623 deletions

View File

@@ -241,13 +241,25 @@ void decrypt(const char* key) {
//END
}
int main(void)
{
void allo() {
//START
AllocConsole();
FILE* fp;
freopen_s(&fp, "CONOUT$", "w", stdout); // output only
//END
}
#ifdef _DEBUG
int main(void)
#else
int __stdcall WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nShowCmd)
#endif
{
//START
#ifdef _DEBUG
allo();
#endif
DEBUG_PRINTF("[+] Started\n");
// Load the DLL from a buffer in memory