Files
thefLink-Hunt-Weird-Syscalls/Hunt-Weird-Syscalls/SetThreadContext_Direct/Main.c
T
2023-04-18 20:36:09 +02:00

11 lines
150 B
C

#include "windows.h"
#include "threadcontext_embedded.h"
int main(int argc, char** argv) {
NtSetContextThread(-1, NULL);
getchar();
return 0;
}