Changed a lot of things. Addded a loader for extracting payload onto system

This commit is contained in:
hellisabove
2023-07-03 15:32:13 +03:00
parent 0969e96a55
commit 9f4a57720b
69 changed files with 406 additions and 63 deletions
+19
View File
@@ -0,0 +1,19 @@
#include <Windows.h>
BOOL APIENTRY DllMain(HMODULE Base, DWORD Callback, LPVOID Param) {
switch (Callback) {
case DLL_PROCESS_ATTACH:
break;
case DLL_PROCESS_DETACH:
break;
default:
break;
}
}
extern "C" __declspec(dllexport) int FunEntry() {
return MessageBoxA(0, "Hello from C2", 0, 0);
}