mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
fixed so that the Registry filter will work correctly
This commit is contained in:
@@ -253,7 +253,7 @@ class TimeLiner(common.AbstractWindowsCommand):
|
||||
debug.error("You must use --registry in conjuction with -H/--hive and/or -U/--user")
|
||||
if self._config.TYPE != None:
|
||||
for t in self._config.TYPE.split(","):
|
||||
if t.strip() not in self.types:
|
||||
if t.strip() not in self.types and t.strip() != "Registry":
|
||||
debug.error("You have entered an incorrect type: {0}".format(t))
|
||||
|
||||
addr_space = utils.load_as(self._config)
|
||||
|
||||
Reference in New Issue
Block a user