Skip to content

Commit 61575ca

Browse files
committed
Require parity framework version
1 parent aab95ea commit 61575ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

volatility3/framework/plugins/linux/module_extract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ModuleExtract(interfaces.plugins.PluginInterface):
1818
"""Recreates an ELF file from a specific address in the kernel"""
1919

2020
_version = (1, 0, 0)
21-
_required_framework_version = (2, 0, 0)
21+
_required_framework_version = (2, 25, 0)
2222

2323
framework.require_interface_version(*_required_framework_version)
2424

volatility3/framework/symbols/linux/utilities/module_extract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ModuleExtract(interfaces.configuration.VersionableInterface):
3939
"""Extracts Linux kernel module structures into an analyzable ELF file"""
4040

4141
_version = (1, 0, 0)
42-
_required_framework_version = (2, 0, 0)
42+
_required_framework_version = (2, 25, 0)
4343

4444
framework.require_interface_version(*_required_framework_version)
4545

0 commit comments

Comments
 (0)