mirror of
https://github.com/HulkOperator/CallStackSpoofer
synced 2026-06-06 15:44:32 +00:00
16 lines
294 B
C
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");
|
|
}
|