mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-27 00:22:23 +02:00
Add first version of regex scanning plugins
This commit is contained in:
@@ -0,0 +1,127 @@
|
||||
# This file is Copyright 2024 Volatility Foundation and licensed under the Volatility Software License 1.0
|
||||
# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0
|
||||
#
|
||||
|
||||
import logging
|
||||
import re
|
||||
|
||||
from volatility3.framework import renderers
|
||||
from volatility3.framework.configuration import requirements
|
||||
from volatility3.framework.interfaces import plugins
|
||||
from volatility3.framework.layers import scanners
|
||||
from volatility3.framework.objects import utility
|
||||
from volatility3.framework.renderers import format_hints
|
||||
from volatility3.plugins.linux import pslist
|
||||
|
||||
vollog = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class VmaRegExScan(plugins.PluginInterface):
|
||||
"""Scans all virtual memory areas for tasks using RegEx."""
|
||||
|
||||
_required_framework_version = (2, 0, 0)
|
||||
_version = (1, 0, 0)
|
||||
MAXSIZE_DEFAULT = 128
|
||||
|
||||
@classmethod
|
||||
def get_requirements(cls):
|
||||
# Since we're calling the plugin, make sure we have the plugin's requirements
|
||||
return [
|
||||
requirements.ModuleRequirement(
|
||||
name="kernel",
|
||||
description="Linux kernel",
|
||||
architectures=["Intel32", "Intel64"],
|
||||
),
|
||||
requirements.PluginRequirement(
|
||||
name="pslist", plugin=pslist.PsList, version=(2, 0, 0)
|
||||
),
|
||||
requirements.ListRequirement(
|
||||
name="pid",
|
||||
description="Filter on specific process IDs",
|
||||
element_type=int,
|
||||
optional=True,
|
||||
),
|
||||
requirements.StringRequirement(
|
||||
name="pattern", description="RegEx pattern", optional=False
|
||||
),
|
||||
requirements.IntRequirement(
|
||||
name="maxsize",
|
||||
description="Maximum size in bytes for displayed context",
|
||||
default=cls.MAXSIZE_DEFAULT,
|
||||
optional=True,
|
||||
),
|
||||
]
|
||||
|
||||
def _generator(self, regex_pattern, tasks):
|
||||
regex_pattern = bytes(regex_pattern, "UTF-8")
|
||||
vollog.debug(f"RegEx Pattern: {regex_pattern}")
|
||||
|
||||
for task in tasks:
|
||||
|
||||
if not task.mm:
|
||||
continue
|
||||
name = utility.array_to_string(task.comm)
|
||||
|
||||
# attempt to create a process layer for each task and skip those
|
||||
# that cannot (e.g. kernel threads)
|
||||
proc_layer_name = task.add_process_layer()
|
||||
if not proc_layer_name:
|
||||
continue
|
||||
|
||||
# get the proc_layer object from the context
|
||||
proc_layer = self.context.layers[proc_layer_name]
|
||||
|
||||
# get process sections for scanning
|
||||
sections = [
|
||||
(start, size) for (start, size) in task.get_process_memory_sections()
|
||||
]
|
||||
|
||||
for offset in proc_layer.scan(
|
||||
context=self.context,
|
||||
scanner=scanners.RegExScanner(regex_pattern),
|
||||
sections=sections,
|
||||
progress_callback=self._progress_callback,
|
||||
):
|
||||
result_data = proc_layer.read(offset, self.MAXSIZE_DEFAULT, pad=True)
|
||||
|
||||
# reapply the regex in order to extact just the match
|
||||
regex_result = re.match(regex_pattern, result_data)
|
||||
|
||||
if regex_result:
|
||||
# the match is within the results_data (e.g. it fits within MAXSIZE_DEFAULT)
|
||||
# extract just the match itself
|
||||
regex_match = regex_result.group(0)
|
||||
text_result = str(regex_match, encoding="UTF-8", errors="replace")
|
||||
bytes_result = regex_match
|
||||
else:
|
||||
# the match is not with the results_data (e.g. it doesn't fit within MAXSIZE_DEFAULT)
|
||||
text_result = str(result_data, encoding="UTF-8", errors="replace")
|
||||
bytes_result = result_data
|
||||
|
||||
user_pid = task.tgid
|
||||
yield 0, (
|
||||
user_pid,
|
||||
name,
|
||||
format_hints.Hex(offset),
|
||||
text_result,
|
||||
bytes_result,
|
||||
)
|
||||
|
||||
def run(self):
|
||||
filter_func = pslist.PsList.create_pid_filter(self.config.get("pid", None))
|
||||
|
||||
return renderers.TreeGrid(
|
||||
[
|
||||
("PID", int),
|
||||
("Process", str),
|
||||
("Offset", format_hints.Hex),
|
||||
("Text", str),
|
||||
("Hex", bytes),
|
||||
],
|
||||
self._generator(
|
||||
self.config.get("pattern"),
|
||||
pslist.PsList.list_tasks(
|
||||
self.context, self.config["kernel"], filter_func=filter_func
|
||||
),
|
||||
),
|
||||
)
|
||||
@@ -0,0 +1,77 @@
|
||||
# This file is Copyright 2024 Volatility Foundation and licensed under the Volatility Software License 1.0
|
||||
# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0
|
||||
#
|
||||
|
||||
import logging
|
||||
import re
|
||||
|
||||
from volatility3.framework import interfaces, renderers
|
||||
from volatility3.framework.configuration import requirements
|
||||
from volatility3.framework.interfaces import plugins
|
||||
from volatility3.framework.layers import scanners
|
||||
from volatility3.framework.renderers import format_hints
|
||||
|
||||
vollog = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class RegExScan(plugins.PluginInterface):
|
||||
"""Scans kernel memory using RegEx patterns."""
|
||||
|
||||
_required_framework_version = (2, 0, 0)
|
||||
_version = (1, 0, 0)
|
||||
MAXSIZE_DEFAULT = 128
|
||||
|
||||
@classmethod
|
||||
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]:
|
||||
return [
|
||||
requirements.TranslationLayerRequirement(
|
||||
name="primary",
|
||||
description="Memory layer for the kernel",
|
||||
architectures=["Intel32", "Intel64"],
|
||||
),
|
||||
requirements.StringRequirement(
|
||||
name="pattern", description="RegEx pattern", optional=False
|
||||
),
|
||||
requirements.IntRequirement(
|
||||
name="maxsize",
|
||||
description="Maximum size in bytes for displayed context",
|
||||
default=cls.MAXSIZE_DEFAULT,
|
||||
optional=True,
|
||||
),
|
||||
]
|
||||
|
||||
def _generator(self, regex_pattern):
|
||||
regex_pattern = bytes(regex_pattern, "UTF-8")
|
||||
vollog.debug(f"RegEx Pattern: {regex_pattern}")
|
||||
|
||||
layer = self.context.layers[self.config["primary"]]
|
||||
for offset in layer.scan(
|
||||
context=self.context, scanner=scanners.RegExScanner(regex_pattern)
|
||||
):
|
||||
result_data = layer.read(offset, self.MAXSIZE_DEFAULT, pad=True)
|
||||
|
||||
# reapply the regex in order to extact just the match
|
||||
regex_result = re.match(regex_pattern, result_data)
|
||||
|
||||
if regex_result:
|
||||
# the match is within the results_data (e.g. it fits within MAXSIZE_DEFAULT)
|
||||
# extract just the match itself
|
||||
regex_match = regex_result.group(0)
|
||||
text_result = str(regex_match, encoding="UTF-8", errors="replace")
|
||||
bytes_result = regex_match
|
||||
else:
|
||||
# the match is not with the results_data (e.g. it doesn't fit within MAXSIZE_DEFAULT)
|
||||
text_result = str(result_data, encoding="UTF-8", errors="replace")
|
||||
bytes_result = result_data
|
||||
|
||||
yield 0, (format_hints.Hex(offset), text_result, bytes_result)
|
||||
|
||||
def run(self):
|
||||
return renderers.TreeGrid(
|
||||
[
|
||||
("Offset", format_hints.Hex),
|
||||
("Text", str),
|
||||
("Hex", bytes),
|
||||
],
|
||||
self._generator(self.config.get("pattern")),
|
||||
)
|
||||
@@ -0,0 +1,128 @@
|
||||
# This file is Copyright 2024 Volatility Foundation and licensed under the Volatility Software License 1.0
|
||||
# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0
|
||||
#
|
||||
|
||||
import logging
|
||||
import re
|
||||
|
||||
from volatility3.framework import interfaces, renderers
|
||||
from volatility3.framework.configuration import requirements
|
||||
from volatility3.framework.interfaces import plugins
|
||||
from volatility3.framework.layers import scanners
|
||||
from volatility3.framework.renderers import format_hints
|
||||
from volatility3.plugins.windows import pslist, vadyarascan
|
||||
|
||||
vollog = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class VadRegExScan(plugins.PluginInterface):
|
||||
"""Scans all virtual memory areas for tasks using RegEx."""
|
||||
|
||||
_required_framework_version = (2, 0, 0)
|
||||
_version = (1, 0, 0)
|
||||
MAXSIZE_DEFAULT = 128
|
||||
|
||||
@classmethod
|
||||
def get_requirements(cls):
|
||||
# Since we're calling the plugin, make sure we have the plugin's requirements
|
||||
return [
|
||||
requirements.ModuleRequirement(
|
||||
name="kernel",
|
||||
description="Windows kernel",
|
||||
architectures=["Intel32", "Intel64"],
|
||||
),
|
||||
requirements.PluginRequirement(
|
||||
name="pslist", plugin=pslist.PsList, version=(2, 0, 0)
|
||||
),
|
||||
requirements.PluginRequirement(
|
||||
name="vadyarascan", plugin=vadyarascan.VadYaraScan, version=(1, 0, 0)
|
||||
),
|
||||
requirements.ListRequirement(
|
||||
name="pid",
|
||||
description="Filter on specific process IDs",
|
||||
element_type=int,
|
||||
optional=True,
|
||||
),
|
||||
requirements.StringRequirement(
|
||||
name="pattern", description="RegEx pattern", optional=False
|
||||
),
|
||||
requirements.IntRequirement(
|
||||
name="maxsize",
|
||||
description="Maximum size in bytes for displayed context",
|
||||
default=cls.MAXSIZE_DEFAULT,
|
||||
optional=True,
|
||||
),
|
||||
]
|
||||
|
||||
def _generator(self, regex_pattern, procs):
|
||||
regex_pattern = bytes(regex_pattern, "UTF-8")
|
||||
vollog.debug(f"RegEx Pattern: {regex_pattern}")
|
||||
|
||||
for proc in procs:
|
||||
|
||||
# attempt to create a process layer for each proc
|
||||
proc_layer_name = proc.add_process_layer()
|
||||
if not proc_layer_name:
|
||||
continue
|
||||
|
||||
# get the proc_layer object from the context
|
||||
proc_layer = self.context.layers[proc_layer_name]
|
||||
|
||||
# get process sections for scanning
|
||||
sections = sections = vadyarascan.VadYaraScan.get_vad_maps(proc)
|
||||
|
||||
for offset in proc_layer.scan(
|
||||
context=self.context,
|
||||
scanner=scanners.RegExScanner(regex_pattern),
|
||||
sections=sections,
|
||||
progress_callback=self._progress_callback,
|
||||
):
|
||||
result_data = proc_layer.read(offset, self.MAXSIZE_DEFAULT, pad=True)
|
||||
|
||||
# reapply the regex in order to extact just the match
|
||||
regex_result = re.match(regex_pattern, result_data)
|
||||
|
||||
if regex_result:
|
||||
# the match is within the results_data (e.g. it fits within MAXSIZE_DEFAULT)
|
||||
# extract just the match itself
|
||||
regex_match = regex_result.group(0)
|
||||
text_result = str(regex_match, encoding="UTF-8", errors="replace")
|
||||
bytes_result = regex_match
|
||||
else:
|
||||
# the match is not with the results_data (e.g. it doesn't fit within MAXSIZE_DEFAULT)
|
||||
text_result = str(result_data, encoding="UTF-8", errors="replace")
|
||||
bytes_result = result_data
|
||||
|
||||
proc_id = proc.UniqueProcessId
|
||||
process_name = proc.ImageFileName.cast(
|
||||
"string",
|
||||
max_length=proc.ImageFileName.vol.count,
|
||||
errors="replace",
|
||||
)
|
||||
yield 0, (
|
||||
proc_id,
|
||||
process_name,
|
||||
format_hints.Hex(offset),
|
||||
text_result,
|
||||
bytes_result,
|
||||
)
|
||||
|
||||
def run(self):
|
||||
filter_func = pslist.PsList.create_pid_filter(self.config.get("pid", None))
|
||||
kernel = self.context.modules[self.config["kernel"]]
|
||||
procs = pslist.PsList.list_processes(
|
||||
self.context,
|
||||
kernel.layer_name,
|
||||
kernel.symbol_table_name,
|
||||
filter_func=filter_func,
|
||||
)
|
||||
return renderers.TreeGrid(
|
||||
[
|
||||
("PID", int),
|
||||
("Process", str),
|
||||
("Offset", format_hints.Hex),
|
||||
("Text", str),
|
||||
("Hex", bytes),
|
||||
],
|
||||
self._generator(self.config.get("pattern"), procs),
|
||||
)
|
||||
Reference in New Issue
Block a user