This file is indexed.

/usr/lib/python2.7/dist-packages/rekall/plugins/windows/registry/printkey.py is in python-rekall-core 1.6.0+dfsg-2.

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
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
# Rekall Memory Forensics
# Copyright (C) 2012 Michael Cohen <scudette@gmail.com>
# Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu>
# Copyright 2013 Google Inc. All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#

"""
@author:       Michael Cohen <scudette@gmail.com>
@author:       AAron Walters and Brendan Dolan-Gavitt
@license:      GNU General Public License 2.0 or later
@contact:      awalters@volatilesystems.com,bdolangavitt@wesleyan.edu
@organization: Volatile Systems
"""
import re

from rekall import addrspace
from rekall import utils
from rekall.plugins import core
from rekall.plugins.windows.registry import registry
from rekall.plugins.overlays import basic


class PrintKey(registry.RegistryPlugin):
    """Print a registry key, and its subkeys and values"""
    __name = "printkey"

    @classmethod
    def args(cls, parser):
        """Declare the command line args we need."""
        super(PrintKey, cls).args(parser)

        parser.add_argument("-k", "--key", default="",
                            help="Registry key to print.")

        parser.add_argument("-r", "--recursive", default=False,
                            type="Boolean",
                            help='If set print the entire subtree.')


    def __init__(self, key="", recursive=False, **kwargs):
        """Print all keys and values contained by a registry key.

        Args:
          key: The key name to list. If not provided we list the root key in the
            hive.

          recursive: If set print the entire subtree.
        """
        super(PrintKey, self).__init__(**kwargs)
        self.key = key
        self.recursive = recursive

    def _list_keys(self, key=None):
        yield key

        if self.recursive:
            for subkey in key.subkeys():
                for subkey in self._list_keys(subkey):
                    yield subkey

    def list_keys(self):
        """Return the keys that match."""
        seen = set()
        for hive_offset in self.hive_offsets:
            reg = registry.RegistryHive(
                profile=self.profile, session=self.session,
                kernel_address_space=self.kernel_address_space,
                hive_offset=hive_offset)

            key = reg.open_key(self.key)
            for subkey in self._list_keys(key):
                if subkey in seen:
                    break

                seen.add(subkey)

                yield reg, subkey

    def voltext(self, key):
        """Returns a string representing (S)table or (V)olatile keys."""
        return "(V)" if key.obj_offset & 0x80000000 else "(S)"

    def render(self, renderer):
        renderer.format("Legend: (S) = Stable   (V) = Volatile\n\n")
        for reg, key in self.list_keys():
            self.session.report_progress(
                "Printing %s", lambda key=key: key.Path)

            if key:
                renderer.format("----------------------------\n")
                renderer.format("Registry: {0}\n", reg.Name)
                renderer.format("Key name: {0} {1} @ {2:addrpad}\n", key.Name,
                                self.voltext(key), key.obj_vm.vtop(int(key)))

                renderer.format("Last updated: {0}\n", key.LastWriteTime)
                renderer.format("\n")
                renderer.format("Subkeys:\n")

                for subkey in key.subkeys():
                    if not subkey.Name:
                        renderer.format(
                            "  Unknown subkey: {0}\n", subkey.Name.reason)
                    else:
                        renderer.format(u"  {1} {0}\n",
                                        subkey.Name, self.voltext(subkey))

                renderer.format("\n")
                renderer.format("Values:\n")
                for value in key.values():
                    renderer.format("{0:addrpad} ", value.obj_vm.vtop(value))
                    if value.Type == 'REG_BINARY':
                        data = value.DecodedData
                        if isinstance(data, basestring):
                            renderer.format(
                                u"{0:width=13} {1:width=15} : {2}\n",
                                value.Type, value.Name, self.voltext(value))
                            utils.WriteHexdump(renderer, value.DecodedData)
                    else:
                        renderer.format(
                            u"{0:width=13} {1:width=15} : {2} {3}\n",
                            value.Type, value.Name, self.voltext(value),
                            utils.SmartUnicode(value.DecodedData).strip())


class RegDump(core.DirectoryDumperMixin, registry.RegistryPlugin):
    """Dump all registry hives from memory into a dump directory."""

    __name = 'regdump'

    def dump_hive(self, hive_offset=None, reg=None, fd=None):
        """Write the hive into the fd.

        Args:
          hive_offset: The virtual offset where the hive is located.
          reg: Optionally an instance of registry.Registry helper. If provided
            hive_offset is ignored.
          fd: The file like object we write to.
        """
        if reg is None:
            reg = registry.RegistryHive(
                profile=self.profile,
                kernel_address_space=self.kernel_address_space,
                hive_offset=hive_offset)

        count = 0
        for data in reg.address_space.save():
            fd.write(data)
            count += len(data)
            self.session.report_progress(
                "Dumping {0}Mb".format(count/1024/1024))

    def render(self, renderer):
        # Get all the offsets if needed.
        for hive_offset in self.hive_offsets:
            reg = registry.RegistryHive(
                profile=self.profile, session=self.session,
                kernel_address_space=self.kernel_address_space,
                hive_offset=hive_offset)

            # Make up a filename for it, should be similar to the hive name.
            filename = reg.Name.rsplit("\\", 1).pop()

            # Sanitize it.
            filename = re.sub(r"[^a-zA-Z0-9_\-@ ]", "_", filename)

            # Make up the path.
            renderer.section()
            renderer.format("Dumping {0} into \"{1}\"\n", reg.Name, filename)

            with renderer.open(directory=self.dump_dir,
                               filename=filename,
                               mode="wb") as fd:
                self.dump_hive(reg=reg, fd=fd)
                renderer.format("Dumped {0} bytes\n", fd.tell())



class HiveDump(registry.RegistryPlugin):
    """Prints out a hive"""

    __name = "hivedump"

    def _key_iterator(self, key, seen):
        yield key

        if key in seen:
            return

        seen.add(key)

        for subkey in key.subkeys():
            for subsubkey in self._key_iterator(subkey, seen):
                yield subsubkey

    def render(self, renderer):
        seen = set()

        for hive_offset in self.hive_offsets:
            reg = registry.RegistryHive(
                hive_offset=hive_offset, session=self.session,
                kernel_address_space=self.kernel_address_space,
                profile=self.profile)

            renderer.section()
            renderer.format("Hive {0}\n\n", reg.Name)

            renderer.table_header([("Last Written", "timestamp", "<24"),
                                   ("Key", "key", "")])

            for key in self._key_iterator(reg.root, seen):
                renderer.table_row(key.LastWriteTime, key.Path)


# Special types to parse the SAM data structures.
sam_vtypes = {
    "UNICODE_STRING": [12, {
        "offset": [0, ["unsigned int"]],
        "len": [4, ["unsigned int"]],
        "Value": lambda x: x.obj_profile.UnicodeString(
            offset=x.offset+0xCC,
            length=x.len, vm=x.obj_vm),

        }],

    "Hash": [12, {
        "offset": [0, ["unsigned int"]],
        "len": [4, ["unsigned int"]],
        "Value": lambda x: x.obj_vm.read(
            x.offset+0xCC, x.len).encode("hex"),

        }],

    "V": [None, {
        "Type": [4, ["Enumeration", dict(
            choices={
                0xBC: "Default Admin User",
                0xd4: "Custom Limited Acct",
                0xb0: "Default Guest Acct"
                },
            target="unsigned int"
            )]],
        "UserName": [12, ['UNICODE_STRING']],
        "FullName": [24, ['UNICODE_STRING']],
        "Comment": [36, ['UNICODE_STRING']],
        "LanHash": [156, ['Hash']],
        "NTHash": [168, ['Hash']],
        }],

    "F": [None, {
        "LastLoginTime": [8, ['WinFileTime']],
        "PwdResetDate": [24, ["WinFileTime"]],
        "AccountExpiration": [32, ["WinFileTime"]],
        "PasswordFailedTime": [40, ["WinFileTime"]],
        "LoginCount": [66, ["unsigned short int"]],
        "FailedLoginCount": [64, ["unsigned short int"]],
        "Rid": [48, ["unsigned int"]],
        "Flags": [56, ["Flags", dict(
            maskmap=utils.Invert({
                0x0001: "Account Disabled",
                0x0002: "Home directory required",
                0x0004: "Password not required",
                0x0008: "Temporary duplicate account",
                0x0010: "Normal user account",
                0x0020: "MNS logon user account",
                0x0040: "Interdomain trust account",
                0x0080: "Workstation trust account",
                0x0100: "Server trust account",
                0x0200: "Password does not expire",
                0x0400: "Account auto locked"
                }),
            target="unsigned short int"
            )]],
        }],
    }



class SAMProfile(basic.Profile32Bits, basic.BasicClasses):
    """A profile to parse the SAM."""

    @classmethod
    def Initialize(cls, profile):
        super(SAMProfile, cls).Initialize(profile)

        profile.add_overlay(sam_vtypes)


class Users(registry.RegistryPlugin):
    """Enumerate all users of this system.

    Ref:
    samparse.pl from RegRipper.

    # copyright 2012 Quantum Analytics Research, LLC
    # Author: H. Carvey, keydet89@yahoo.com
    """
    name = "users"

    def GenerateUsers(self):
        """Generates User RID keys, V and F structs for all users."""
        sam_profile = SAMProfile(session=self.session)

        for hive_offset in self.hive_offsets:
            reg = registry.RegistryHive(
                hive_offset=hive_offset, session=self.session,
                kernel_address_space=self.kernel_address_space,
                profile=self.profile)

            users = reg.open_key("SAM/Domains/Account/Users")
            for user_rid in users.subkeys():
                # The V value holds the information we are after.
                v_data = user_rid.open_value("V")
                if not v_data:
                    continue

                v = sam_profile.V(vm=addrspace.BufferAddressSpace(
                    data=v_data.DecodedData, session=self.session))

                f_data = user_rid.open_value("F")
                f = sam_profile.F(vm=addrspace.BufferAddressSpace(
                    data=f_data.DecodedData, session=self.session))

                yield user_rid, v, f

    def render(self, renderer):
        for user_rid, v, f in self.GenerateUsers():
            renderer.section()
            renderer.format("Key {0} \n\n", user_rid.Path)
            renderer.table_header(
                columns=[("", "property", "20"),
                         ("", "value", "")],
                suppress_headers=True)

            for field in v.members:
                try:
                    renderer.table_row(field, getattr(v, field).Value)
                except AttributeError:
                    renderer.table_row(field, getattr(v, field))

            for field in f.members:
                renderer.table_row(field, getattr(f, field))


class Services(registry.RegistryPlugin):
    """Enumerate all services."""
    name = "services"

    # http://msdn.microsoft.com/en-us/library/windows/desktop/ms682450(v=vs.85).aspx
    # CreateService function.
    SERVICE_TYPE = {
        0x00000004: 'SERVICE_ADAPTER',
        0x00000002: 'SERVICE_FILE_SYSTEM_DRIVER',
        0x00000001: 'SERVICE_KERNEL_DRIVER',
        0x00000008: 'SERVICE_RECOGNIZER_DRIVER',
        0x00000010: 'SERVICE_WIN32_OWN_PROCESS',
        0x00000020: 'SERVICE_WIN32_SHARE_PROCESS'
        }

    START_TYPE = {
        0x00000002: 'SERVICE_AUTO_START',
        0x00000000: 'SERVICE_BOOT_START',
        0x00000003: 'SERVICE_DEMAND_START',
        0x00000004: 'SERVICE_DISABLED',
        0x00000001: 'SERVICE_SYSTEM_START'
        }

    ERROR_CONTROL = {
        0x00000003: 'SERVICE_ERROR_CRITICAL',
        0x00000000: 'SERVICE_ERROR_IGNORE',
        0x00000001: 'SERVICE_ERROR_NORMAL',
        0x00000002: 'SERVICE_ERROR_SEVERE'
        }

    def GenerateServices(self):
        for hive_offset in self.hive_offsets:
            reg = registry.RegistryHive(
                profile=self.profile, session=self.session,
                kernel_address_space=self.kernel_address_space,
                hive_offset=hive_offset)

            for service in reg.CurrentControlSet().open_subkey(
                "Services").subkeys():
                yield service

    def render(self, renderer):
        for service in self.GenerateServices():
            renderer.section(service.Name.v())
            renderer.table_header([("Key", "key", "20"),
                                   ("Value", "value", "[wrap:60]")],
                                  suppress_headers=True)

            for value in service.values():
                k = value.Name.v()
                v = value.DecodedData
                if value.Type == "REG_BINARY":
                    continue

                if isinstance(v, list):
                    v = ",".join([x for x in v if x])

                if k == "Type":
                    v = self.SERVICE_TYPE.get(v, v)

                if k == "Start":
                    v = self.START_TYPE.get(v, v)

                if k == "ErrorControl":
                    v = self.ERROR_CONTROL.get(v, v)

                renderer.table_row(k, v)