Skip to content

Commit 6a157a7

Browse files
committed
Bump the modules version number
Pull-request #1173 bumped the version of the modules plugin (even though this only needed to be a MINOR version bump, see #1173 (comment)), but failed to verify that other plugins which relied on it were also updated to make use of the new plugin. This was the version system working as intended, but highlighted a review failure that the neither the author, nor the reviewers, verified that the rest of the framework (specifically other plugins which relied on modules) worked correctly with the new code (which this kind of error is designed to fix). Fixes #1244.
1 parent 966d23e commit 6a157a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

volatility3/framework/plugins/windows/ssdt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]
3030
architectures=["Intel32", "Intel64"],
3131
),
3232
requirements.PluginRequirement(
33-
name="modules", plugin=modules.Modules, version=(1, 0, 0)
33+
name="modules", plugin=modules.Modules, version=(2, 0, 0)
3434
),
3535
]
3636

volatility3/framework/plugins/windows/verinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]
4646
name="pslist", plugin=pslist.PsList, version=(2, 0, 0)
4747
),
4848
requirements.PluginRequirement(
49-
name="modules", plugin=modules.Modules, version=(1, 0, 0)
49+
name="modules", plugin=modules.Modules, version=(2, 0, 0)
5050
),
5151
requirements.VersionRequirement(
5252
name="dlllist", component=dlllist.DllList, version=(2, 0, 0)

0 commit comments

Comments
 (0)