mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-22 22:32:22 +02:00
This replaces all uses of `requirements.PluginRequirements` with `requirements.VersionRequirement`.
163 lines
5.5 KiB
Python
163 lines
5.5 KiB
Python
# This file is Copyright 2019 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
|
|
from typing import Iterable, Callable, Tuple
|
|
|
|
from volatility3.framework import exceptions, renderers, interfaces
|
|
from volatility3.framework.configuration import requirements
|
|
from volatility3.framework.interfaces import plugins
|
|
from volatility3.framework.objects import utility
|
|
from volatility3.framework.renderers import format_hints
|
|
from volatility3.framework.symbols import mac
|
|
from volatility3.plugins.mac import pslist
|
|
|
|
vollog = logging.getLogger(__name__)
|
|
|
|
|
|
class Netstat(plugins.PluginInterface):
|
|
"""Lists all network connections for all processes."""
|
|
|
|
_required_framework_version = (2, 0, 0)
|
|
|
|
@classmethod
|
|
def get_requirements(cls):
|
|
return [
|
|
requirements.ModuleRequirement(
|
|
name="kernel",
|
|
description="Kernel module for the OS",
|
|
architectures=["Intel32", "Intel64"],
|
|
),
|
|
requirements.VersionRequirement(
|
|
name="pslist", component=pslist.PsList, version=(3, 0, 0)
|
|
),
|
|
requirements.VersionRequirement(
|
|
name="macutils", component=mac.MacUtilities, version=(1, 0, 0)
|
|
),
|
|
requirements.ListRequirement(
|
|
name="pid",
|
|
description="Filter on specific process IDs",
|
|
element_type=int,
|
|
optional=True,
|
|
),
|
|
]
|
|
|
|
@classmethod
|
|
def list_sockets(
|
|
cls,
|
|
context: interfaces.context.ContextInterface,
|
|
kernel_module_name: str,
|
|
filter_func: Callable[[int], bool] = lambda _: False,
|
|
) -> Iterable[
|
|
Tuple[
|
|
interfaces.objects.ObjectInterface,
|
|
interfaces.objects.ObjectInterface,
|
|
interfaces.objects.ObjectInterface,
|
|
]
|
|
]:
|
|
"""
|
|
Returns the open socket descriptors of a process
|
|
|
|
Return values:
|
|
A tuple of 3 elements:
|
|
1) The name of the process that opened the socket
|
|
2) The process ID of the processed that opened the socket
|
|
3) The address of the associated socket structure
|
|
"""
|
|
# This is hardcoded, since a change in the default method would change the expected results
|
|
list_tasks = pslist.PsList.get_list_tasks(pslist.PsList.pslist_methods[0])
|
|
for task in list_tasks(context, kernel_module_name, filter_func):
|
|
task_name = utility.array_to_string(task.p_comm)
|
|
pid = task.p_pid
|
|
|
|
for filp, _, _ in mac.MacUtilities.files_descriptors_for_process(
|
|
context, context.modules[kernel_module_name].symbol_table_name, task
|
|
):
|
|
try:
|
|
ftype = filp.f_fglob.get_fg_type()
|
|
except exceptions.InvalidAddressException:
|
|
continue
|
|
|
|
if ftype != "SOCKET":
|
|
continue
|
|
|
|
try:
|
|
socket = filp.f_fglob.fg_data.dereference().cast("socket")
|
|
except exceptions.InvalidAddressException:
|
|
continue
|
|
|
|
if not context.layers[task.vol.native_layer_name].is_valid(
|
|
socket.vol.offset, socket.vol.size
|
|
):
|
|
continue
|
|
|
|
yield task_name, pid, socket
|
|
|
|
def _generator(self):
|
|
filter_func = pslist.PsList.create_pid_filter(self.config.get("pid", None))
|
|
|
|
for task_name, pid, socket in self.list_sockets(
|
|
self.context, self.config["kernel"], filter_func=filter_func
|
|
):
|
|
family = socket.get_family()
|
|
|
|
if family == 1:
|
|
try:
|
|
upcb = socket.so_pcb.dereference().cast("unpcb")
|
|
path = utility.array_to_string(upcb.unp_addr.sun_path)
|
|
except exceptions.InvalidAddressException:
|
|
continue
|
|
|
|
yield (
|
|
0,
|
|
(
|
|
format_hints.Hex(socket.vol.offset),
|
|
"UNIX",
|
|
path,
|
|
0,
|
|
"",
|
|
0,
|
|
"",
|
|
f"{task_name}/{pid:d}",
|
|
),
|
|
)
|
|
|
|
elif family in [2, 30]:
|
|
state = socket.get_state()
|
|
proto = socket.get_protocol_as_string()
|
|
|
|
vals = socket.get_converted_connection_info()
|
|
|
|
if vals:
|
|
(lip, lport, rip, rport) = vals
|
|
|
|
yield (
|
|
0,
|
|
(
|
|
format_hints.Hex(socket.vol.offset),
|
|
proto,
|
|
lip,
|
|
lport,
|
|
rip,
|
|
rport,
|
|
state,
|
|
f"{task_name}/{pid:d}",
|
|
),
|
|
)
|
|
|
|
def run(self):
|
|
return renderers.TreeGrid(
|
|
[
|
|
("Offset", format_hints.Hex),
|
|
("Proto", str),
|
|
("Local IP", str),
|
|
("Local Port", int),
|
|
("Remote IP", str),
|
|
("Remote Port", int),
|
|
("State", str),
|
|
("Process", str),
|
|
],
|
|
self._generator(),
|
|
)
|