mirror of
https://github.com/nixpal/shellsilo
synced 2026-06-06 16:24:28 +00:00
26 lines
300 B
C
26 lines
300 B
C
#include <Windows.h>
|
|
#include <iostream>
|
|
|
|
// Define necessary structures and types
|
|
|
|
typedef struct _UNICODE_STRING {
|
|
USHORT Length;
|
|
USHORT MaximumLength;
|
|
PWSTR Buffer;
|
|
} UNICODE_STRING, *PUNICODE_STRING;
|
|
|
|
|
|
|
|
<MAIN>
|
|
{
|
|
|
|
DWORD test = 10;
|
|
while(TRUE){
|
|
if (test <= 12){
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
}
|