mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-24 23:22:23 +02:00
Note this now requires the file to be specified with single-location, it also requires a specific ordering of parameters.
70 lines
3.8 KiB
Python
70 lines
3.8 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
|
|
|
|
from volatility.framework import class_subclasses, import_files, interfaces
|
|
from volatility.framework.automagic import construct_layers, stacker, windows, pdbscan
|
|
from volatility.framework.configuration import requirements
|
|
|
|
vollog = logging.getLogger(__name__)
|
|
|
|
|
|
def available(context):
|
|
"""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, context, configurable, config_path, progress_callback = None):
|
|
"""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
|
|
|
|
.. 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 = configurable
|
|
if isinstance(configurable, interfaces.configuration.ConfigurableInterface):
|
|
configurable_class = configurable.__class__
|
|
requirement = requirements.MultiRequirement(name = configurable_class.__name__)
|
|
for req in configurable.get_requirements():
|
|
requirement.add_requirement(req)
|
|
|
|
for automagic in automagics:
|
|
vollog.info("Running automagic: {}".format(automagic.__class__.__name__))
|
|
automagic(context, config_path, requirement, progress_callback)
|