mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-20 21:52:21 +02:00
100 lines
5.1 KiB
Python
100 lines
5.1 KiB
Python
"""Automagic modules allow the framework to populate configuration elements that a user has not provided.
|
|
|
|
Automagic objects accept a `context` and a `configurable`, and will make appropriate changes to the `context` in an
|
|
attempt to fulfill the requirements of the `configurable` object (or objects upon which that configurable may rely).
|
|
|
|
Several pre-existing modules include one to stack layers on top of each other (allowing automatic detection and
|
|
loading of file format types) as well as a module to reconstruct layers based on their provided requirements.
|
|
"""
|
|
|
|
import logging
|
|
import sys
|
|
import traceback
|
|
import typing
|
|
|
|
from volatility.framework import class_subclasses, import_files, interfaces, validity
|
|
from volatility.framework.automagic import construct_layers, stacker, windows, pdbscan
|
|
from volatility.framework.configuration import requirements
|
|
|
|
vollog = logging.getLogger(__name__)
|
|
|
|
windows_automagic = ['ConstructionMagic',
|
|
'LayerStacker',
|
|
'NlpDtbfinder',
|
|
'WintelHelper',
|
|
'KernelPDBScanner',
|
|
'WinSwapLayers']
|
|
|
|
linux_automagic = ['ConstructionMagic',
|
|
'LayerStacker',
|
|
'LinuxSymbolCache',
|
|
'LinuxSymbolFinder']
|
|
|
|
|
|
def available(context: interfaces.context.ContextInterface) \
|
|
-> typing.List[typing.Type[interfaces.automagic.AutomagicInterface]]:
|
|
"""Returns an ordered list of all subclasses of :class:`~volatility.framework.interfaces.automagic.AutomagicInterface`.
|
|
|
|
The order is based on the priority attributes of the subclasses, in order to ensure the automagics are listed in
|
|
an appropriate order.
|
|
|
|
:param context: The context that will contain any automagic configuration values.
|
|
:type context: volatility.framework.interfaces.context.ContextInterface
|
|
"""
|
|
import_files(sys.modules[__name__])
|
|
config_path = 'automagic'
|
|
return sorted([clazz(context, interfaces.configuration.path_join(config_path, clazz.__name__)) for clazz in
|
|
class_subclasses(interfaces.automagic.AutomagicInterface)],
|
|
key = lambda x: x.priority)
|
|
|
|
|
|
def run(automagics: typing.List[interfaces.automagic.AutomagicInterface],
|
|
context: interfaces.context.ContextInterface,
|
|
configurable: typing.Union[interfaces.configuration.ConfigurableInterface,
|
|
typing.Type[interfaces.configuration.ConfigurableInterface]],
|
|
config_path: str,
|
|
progress_callback: validity.ProgressCallback = None) -> typing.List[traceback.TracebackException]:
|
|
"""Runs through the list of `automagics` in order, allowing them to make changes to the context
|
|
|
|
:param automagics: A list of :class:`~volatility.framework.interfaces.automagic.AutomagicInterface` objects
|
|
:param context: The context (that inherits from :class:`~volatility.framework.interfaces.context.ContextInterface`) for modification
|
|
:param configurable: An object that inherits from :class:`~volatility.framework.interfaces.configuration.ConfigurableInterface`
|
|
:param config_path: The path within the `context.config` for options required by the `configurable`
|
|
:param progress_callback: A function that takes a percentage (and an optional description) that will be called periodically
|
|
|
|
This is where any automagic is allowed to run, and alter the context in order to satisfy/improve all requirements
|
|
|
|
Returns a list of traceback objects that occurred during the autorun procedure
|
|
|
|
.. note:: The order of the `automagics` list is important. An `automagic` that populates configurations may be necessary
|
|
for an `automagic` that populates the context based on the configuration information.
|
|
"""
|
|
for automagic in automagics:
|
|
if not isinstance(automagic, interfaces.automagic.AutomagicInterface):
|
|
raise TypeError("Automagics must only contain AutomagicInterface subclasses")
|
|
|
|
if (not isinstance(configurable, interfaces.configuration.ConfigurableInterface)
|
|
and not issubclass(configurable, interfaces.configuration.ConfigurableInterface)):
|
|
raise TypeError("Automagic operates on configurables only")
|
|
|
|
# TODO: Fix need for top level config element just because we're using a MultiRequirement to group the
|
|
# configurable's config requirements
|
|
# configurable_class: typing.Type[interfaces.configuration.ConfigurableInterface]
|
|
if isinstance(configurable, interfaces.configuration.ConfigurableInterface):
|
|
configurable_class = configurable.__class__
|
|
else:
|
|
configurable_class = configurable
|
|
requirement = requirements.MultiRequirement(name = configurable_class.__name__)
|
|
for req in configurable.get_requirements():
|
|
requirement.add_requirement(req)
|
|
|
|
exceptions = []
|
|
|
|
for automagic in automagics:
|
|
try:
|
|
vollog.info("Running automagic: {}".format(automagic.__class__.__name__))
|
|
automagic(context, config_path, requirement, progress_callback)
|
|
except Exception as excp:
|
|
exceptions.append(traceback.TracebackException.from_exception(excp))
|
|
return exceptions
|