This file is indexed.

/usr/lib/python2.7/dist-packages/volatility/plugins/overlays/windows/crash_vtypes.py is in volatility 2.6-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Volatility
# Copyright (c) 2008-2013 Volatility Foundation
#
# This file is part of Volatility.
#
# Volatility is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License Version 2 as
# published by the Free Software Foundation.  You may not use, modify or
# distribute this program under any other version of the GNU General
# Public License.
#
# Volatility is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Volatility.  If not, see <http://www.gnu.org/licenses/>.
#

crash_vtypes = {
## These types are for crash dumps
  '_DMP_HEADER' : [ 0x1000, {
    'Signature' : [ 0x0, ['array', 4, ['unsigned char']]],
    'ValidDump' : [ 0x4, ['array', 4, ['unsigned char']]],
    'MajorVersion' : [ 0x8, ['unsigned long']],
    'MinorVersion' : [ 0xc, ['unsigned long']],
    'DirectoryTableBase' : [ 0x10, ['unsigned long']],
    'PfnDataBase' : [ 0x14, ['unsigned long']],
    'PsLoadedModuleList' : [ 0x18, ['unsigned long']],
    'PsActiveProcessHead' : [ 0x1c, ['unsigned long']],
    'MachineImageType' : [ 0x20, ['unsigned long']],
    'NumberProcessors' : [ 0x24, ['unsigned long']],
    'BugCheckCode' : [ 0x28, ['unsigned long']],
    'BugCheckCodeParameter' : [ 0x2c, ['array', 4, ['unsigned long']]],
    'VersionUser' : [ 0x3c, ['array', 32, ['unsigned char']]],
    'PaeEnabled' : [ 0x5c, ['unsigned char']],
    'KdSecondaryVersion' : [ 0x5d, ['unsigned char']],
    'VersionUser2' : [ 0x5e, ['array', 2, ['unsigned char']]],
    'KdDebuggerDataBlock' : [ 0x60, ['unsigned long']],
    'PhysicalMemoryBlockBuffer' : [ 0x64, ['_PHYSICAL_MEMORY_DESCRIPTOR']],
    'ContextRecord' : [ 0x320, ['array', 1200, ['unsigned char']]],
    'Exception' : [ 0x7d0, ['_EXCEPTION_RECORD32']],
    'Comment' : [ 0x820, ['array', 128, ['unsigned char']]],
    'DumpType' : [ 0xf88, ['unsigned long']],
    'MiniDumpFields' : [ 0xf8c, ['unsigned long']],
    'SecondaryDataState' : [ 0xf90, ['unsigned long']],
    'ProductType' : [ 0xf94, ['unsigned long']],
    'SuiteMask' : [ 0xf98, ['unsigned long']],
    'WriterStatus' : [ 0xf9c, ['unsigned long']],
    'RequiredDumpSpace' : [ 0xfa0, ['unsigned long long']],
    'SystemUpTime' : [ 0xfb8, ['unsigned long long']],
    'SystemTime' : [ 0xfc0, ['unsigned long long']],
    'reserved3' : [ 0xfc8, ['array', 56, ['unsigned char']]],
} ],
  '_DMP_HEADER64' : [ 0x2000, {
    'Signature' : [ 0x0, ['array', 4, ['unsigned char']]],
    'ValidDump' : [ 0x4, ['array', 4, ['unsigned char']]],
    'MajorVersion' : [ 0x8, ['unsigned long']],
    'MinorVersion' : [ 0xc, ['unsigned long']],
    'DirectoryTableBase' : [ 0x10, ['unsigned long long']],
    'PfnDataBase' : [ 0x18, ['unsigned long long']],
    'PsLoadedModuleList' : [ 0x20, ['unsigned long long']],
    'PsActiveProcessHead' : [ 0x28, ['unsigned long long']],
    'MachineImageType' : [ 0x30, ['unsigned long']],
    'NumberProcessors' : [ 0x34, ['unsigned long']],
    'BugCheckCode' : [ 0x38, ['unsigned long']],
    'BugCheckCodeParameter' : [ 0x40, ['array', 4, ['unsigned long long']]],
    'KdDebuggerDataBlock' : [0x80, ['unsigned long long']],
    'PhysicalMemoryBlockBuffer' : [ 0x88, ['_PHYSICAL_MEMORY_DESCRIPTOR']],
    'ContextRecord' : [ 0x348, ['array', 3000, ['unsigned char']]],
    'Exception' : [ 0xf00, ['_EXCEPTION_RECORD64']],
    'DumpType' : [ 0xf98, ['unsigned long']],
    'RequiredDumpSpace' : [ 0xfa0, ['unsigned long long']],
    'SystemTime' : [ 0xfa8, ['unsigned long long']],
    'Comment' : [ 0xfb0, ['array', 128, ['unsigned char']]],
    'SystemUpTime' : [ 0x1030, ['unsigned long long']],
    'MiniDumpFields' : [ 0x1038, ['unsigned long']],
    'SecondaryDataState' : [ 0x103c, ['unsigned long']],
    'ProductType' : [ 0x1040, ['unsigned long']],
    'SuiteMask' : [ 0x1044, ['unsigned long']],
    'WriterStatus' : [ 0x1048, ['unsigned long']],
    'Unused1' : [ 0x104c, ['unsigned char']],
    'KdSecondaryVersion' : [ 0x104d, ['unsigned char']],
    'Unused' : [ 0x104e, ['array', 2, ['unsigned char']]],
    '_reserved0' : [ 0x1050, ['array', 4016, ['unsigned char']]],
} ],
}