Files
HulkOperator 058a8c5590 First Commit
2024-12-19 16:19:31 +05:30

16 lines
294 B
C

#include <Windows.h>
#include "spoofer.h"
int main() {
HMODULE pUser32 = LoadLibraryA("User32");
UINT64 pMessageBoxA = GetProcAddress(pUser32, "MessageBoxA");
for (int i = 0; i < 5; i ++)
CallStackSpoof(pMessageBoxA, 4, NULL, "Text", "Caption", MB_YESNO);
printf("Clean Exit\n");
}