Create a windows.registry category.

This commit is contained in:
Mike Auty
2018-09-12 22:55:41 +01:00
parent fa552aa3b0
commit 6dc8b4d517
5 changed files with 3 additions and 2 deletions
@@ -0,0 +1 @@
"""Windows registry plugins"""
@@ -81,7 +81,7 @@ class PrintKey(plugins.PluginInterface):
"""Walks through a registry, hive by hive"""
if self.config.get('offset', None) is None:
try:
import volatility.plugins.windows.hivelist as hivelist
import volatility.plugins.windows.registry.hivelist as hivelist
hive_offsets = [hive.vol.offset for hive in hivelist.HiveList.list_hives(self.context,
self.config['primary'],
self.config['nt_symbols'])]
@@ -210,7 +210,7 @@ class UserAssist(interfaces_plugins.PluginInterface):
# get all the user hive offsets or use the one specified
if self.config.get('offset', None) is None:
try:
import volatility.plugins.windows.hivelist as hivelist
import volatility.plugins.windows.registry.hivelist as hivelist
hive_offsets = [hive.vol.offset for hive in
hivelist.HiveList.list_hives(context = self.context,
layer_name = self.config['primary'],