Fix versioning again

This commit is contained in:
Andrew Case
2025-03-08 00:30:06 +00:00
parent 74df8dc1ee
commit bcf038bfd5
3 changed files with 4 additions and 4 deletions
@@ -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)