Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <stdlib.h>
#include <stdio.h>
#include <windows.h>
#include <string.h>
DWORD _cdecl main( int argc, char *argv[], char *envp[] ) {
ULONG ErrorParameters[2]; ULONG ErrorResponse; UNICODE_STRING PathName;
RtlInitUnicodeString(&PathName,L"\\\\??\\O:\\AUTORUN.EXE"); ErrorResponse = ResponseOk; ErrorParameters[0] = (ULONG)&PathName;
NtRaiseHardError( STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE, 1, 1, ErrorParameters, OptionOk, &ErrorResponse );
RtlInitUnicodeString(&PathName,L"\\\\??\\O:\\autorun.exe"); ErrorResponse = ResponseOk; ErrorParameters[0] = (ULONG)&PathName;
NtRaiseHardError( STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE, 1, 1, ErrorParameters, OptionOk, &ErrorResponse ); return 1; }
|