This file is indexed.

/usr/lib/python2.7/dist-packages/volatility/plugins/hpakinfo.py is in volatility 2.3.1-7.

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
# Volatility
# Copyright (C) 2007-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/>.
#

import volatility.plugins.crashinfo as crashinfo
import volatility.debug as debug

class HPAKInfo(crashinfo.CrashInfo):
    """Info on an HPAK file"""
    
    target_as = ['HPAKAddressSpace'] 
    
    def render_text(self, outfd, data):
        
        header = data.get_header()
        
        for section in header.Sections():
            outfd.write("Header:     {0}\n".format(section.Header))
            outfd.write("Length:     {0:#x}\n".format(section.Length))
            outfd.write("Offset:     {0:#x}\n".format(section.Offset))
            outfd.write("NextOffset: {0:#x}\n".format(section.NextSection))
            outfd.write("Name:       {0}\n".format(section.Name))
            outfd.write("Compressed: {0}\n".format(section.Compressed))
            outfd.write("\n")
            
class HPAKExtract(HPAKInfo):
    """Extract physical memory from an HPAK file"""
    
    def render_text(self, outfd, data):
            
        if not self._config.OUTPUT_FILE:
            debug.error("You must supply --output-file")
            
        header = data.get_header()

        data.convert_to_raw(outfd)
        
        print "Done."