File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
volatility3/framework/plugins/linux Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 44import logging
55from typing import List
66
7+ from volatility3 import framework
78import volatility3 .framework .symbols .linux .utilities .module_extract as linux_utilities_module_extract
89from volatility3 .framework import interfaces , renderers
910from volatility3 .framework .configuration import requirements
1617class ModuleExtract (interfaces .plugins .PluginInterface ):
1718 """Recreates an ELF file from a specific address in the kernel"""
1819
20+ _version = (1 , 0 , 0 )
1921 _required_framework_version = (2 , 0 , 0 )
2022
21- _version = ( 1 , 0 , 0 )
23+ framework . require_interface_version ( * _required_framework_version )
2224
2325 @classmethod
2426 def get_requirements (cls ) -> List [interfaces .configuration .RequirementInterface ]:
You can’t perform that action at this time.
0 commit comments