Windows: Minor additions based on the framework bump

This commit is contained in:
Mike Auty
2020-10-29 09:43:16 +00:00
committed by ikelos
parent 5e8788bb2d
commit 0e596c2112
2 changed files with 4 additions and 1 deletions
@@ -33,7 +33,9 @@ class PsTree(interfaces.plugins.PluginInterface):
description = 'Display physical offsets instead of virtual',
default = pslist.PsList.PHYSICAL_DEFAULT,
optional = True),
requirements.VersionRequirement(name = 'pslist', component = pslist.PsList, version = (1, 0, 0)),
requirements.VersionRequirement(name = 'pslist',
component = pslist.PsList,
version = (2, 0, 0)),
requirements.ListRequirement(name = 'pid',
element_type = int,
description = "Process ID to include (all other processes are excluded)",
@@ -40,6 +40,7 @@ class HiveList(interfaces.plugins.PluginInterface):
"""Lists the registry hives present in a particular memory image."""
_version = (1, 0, 0)
_required_framework_version = (2, 0, 0)
@classmethod
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]: