Initial Commit

This commit is contained in:
hellisabove
2023-07-03 00:28:12 +03:00
parent 3def5bf106
commit c16fd5aee6
16 changed files with 420 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#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;
}
return 1;
}
extern "C" __declspec(dllexport) int FunEntry() {
return MessageBoxA(0, "Hello World From C2", 0, 0);
}