Files
volatility3/volatility/framework/symbols/linux/__init__.py
T

20 lines
810 B
Python

from volatility.framework.configuration import requirements
from volatility.framework.symbols import intermed
from volatility.framework.symbols.linux import extensions
class LinuxKernelIntermedSymbols(intermed.IntermediateSymbolTable):
provides = {"type": "interface"}
def __init__(self, context, config_path, name, isf_filepath):
super().__init__(context = context, config_path = config_path, name = name, isf_filepath = isf_filepath)
# Set-up Linux specific types
self.set_type_class('list_head', extensions.list_head)
@classmethod
def get_requirements(cls):
return [requirements.StringRequirement("isf_filepath",
description = "JSON file containing the symbols encoded in the Intermediate Symbol Format")]