mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-29 11:19:40 +02:00
Fix versioning again
This commit is contained in:
@@ -22,7 +22,7 @@ class Cachedump(interfaces.plugins.PluginInterface):
|
||||
"""Dumps lsa secrets from memory"""
|
||||
|
||||
_required_framework_version = (2, 0, 0)
|
||||
_version = (1, 0, 1)
|
||||
_version = (1, 1, 1)
|
||||
|
||||
@classmethod
|
||||
def get_requirements(cls):
|
||||
@@ -39,7 +39,7 @@ class Cachedump(interfaces.plugins.PluginInterface):
|
||||
name="lsadump", plugin=lsadump.Lsadump, version=(1, 0, 0)
|
||||
),
|
||||
requirements.PluginRequirement(
|
||||
name="hashdump", plugin=hashdump.Hashdump, version=(2, 0, 0)
|
||||
name="hashdump", plugin=hashdump.Hashdump, version=(1, 1, 0)
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ class Hashdump(interfaces.plugins.PluginInterface):
|
||||
"""Dumps user hashes from memory"""
|
||||
|
||||
_required_framework_version = (2, 0, 0)
|
||||
_version = (2, 0, 0)
|
||||
_version = (1, 1, 1)
|
||||
|
||||
@classmethod
|
||||
def get_requirements(cls):
|
||||
|
||||
@@ -33,7 +33,7 @@ class Lsadump(interfaces.plugins.PluginInterface):
|
||||
architectures=["Intel32", "Intel64"],
|
||||
),
|
||||
requirements.VersionRequirement(
|
||||
name="hashdump", component=hashdump.Hashdump, version=(2, 0, 0)
|
||||
name="hashdump", component=hashdump.Hashdump, version=(1, 1, 0)
|
||||
),
|
||||
requirements.VersionRequirement(
|
||||
name="hivelist", component=hivelist.HiveList, version=(2, 0, 0)
|
||||
|
||||
Reference in New Issue
Block a user