mgrzeg
BSOD Kernel Dump Senior Analyst
Is there any place I can find samples for different bugchecks?
m.g.
m.g.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
BSOD Count
0x00000000 1
0x00000001 2
0x0000000A 95
0x00000019 12
0x0000001A 37
0x0000001E 76
0x00000024 14
0x00000034 2
0x00000035 4
0x0000003B 59
0x0000003D 7
0x0000004E 7
0x00000050 122
0x0000007A 1
0x0000007E 1
0x0000007F 24
0x0000009F 29
0x000000BE 3
0x000000C2 3
0x000000C4 13
0x000000C5 3
0x000000C9 1
0x000000D1 94
0x000000DE 2
0x000000E3 2
0x000000E4 1
0x000000F4 4
0x000000F7 2
0x000000FC 9
0x000000FE 15
0x00000101 6
0x00000109 17
0x0000010E 6
0x00000116 48
0x00000119 2
0x00000124 19
0x00000135 1
0x00009087 4
0x1000000A 3
0x1000007E 41
0x1000008E 4
0x1000009F 43
0x100000D1 1
0xC000021A 2
1
5
6
A
1A
1E
3B
3D
4A
4E
6B
7A
7C
7F
9C
9F
18
19
20
21
23
24
26
27
34
35
39
40
44
46
50
51
74
76
77
100007E
82
100008E
93
96
100009F
A0
A3
AB
B8
10000B8
BE
C1
C2
C4
C5
C7
C9
CA
CB
CD
10000CD
CE
D1
D3
D4
D5
D6
DA
DE
DF
E1
E3
E4
E6
EA
10000EA
F4
F5
F7
FC
FE
101
109
10D
10E
111
113
116
117
119
11B
122
124
12E
131
135
136
333
8086
9087
70860002
C000021A
C0000221
DEADDEAD
E0010002
Yes, right, but all that notmyfault does to generate specific bugcheck is a call to KeBugCheckEx( BugCheckCode, 0, 0, 0, 0 ), so it's not a 'real' one, which can be tested and helpful in script preperations (or workshops) :)
m.g.
Err, are you sure about this?
NTSTATUS
MyfaultDeviceControl(
IN PFILE_OBJECT FileObject,
IN BOOLEAN Wait,
IN PVOID InputBuffer,
IN ULONG InputBufferLength,
OUT PVOID OutputBuffer,
IN ULONG OutputBufferLength,
IN ULONG IoControlCode,
OUT PIO_STATUS_BLOCK IoStatus,
IN PDEVICE_OBJECT DeviceObject
)
{
IoStatus->Status = STATUS_SUCCESS;
IoStatus->Information = 0;
switch ( IoControlCode ) {
case IOCTL_BUFFER_OVERFLOW:
BufferOverflow();
break;
>>>CUT<<<
case IOCTL_BUG_CHECK:
if( InputBufferLength != sizeof(ULONG)) {
IoStatus->Status = STATUS_INVALID_PARAMETER;
break;
}
!!>>>> BugCheck( *(PULONG) InputBuffer );
break;
default:
IoStatus->Status = STATUS_NOT_SUPPORTED;
break;
}
return IoStatus->Status;
}
VOID
BugCheck(
ULONG BugCheckCode
)
{
>>> KeBugCheckEx( BugCheckCode, 0, 0, 0, 0 );
}
Has Sysnative Forums helped you? Please consider donating to help us support the site!