mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-29 03:09:48 +02:00
Context.object accepts a template or a string name (and now a type flag). Module.object only accepts a string (because a template already has most of the stuff built in and might as well be passed to the Context.object constructor). The gotcha here is the absolute flag, which must now be set appropriately in all cases *except* where the module is constructed with an offset of 0 (whereby it will have no impact).
110 lines
5.0 KiB
Python
110 lines
5.0 KiB
Python
# This file was contributed to the Volatility Framework Version 3.
|
|
# Copyright (C) 2018 Volatility Foundation.
|
|
#
|
|
# THE LICENSED WORK IS PROVIDED UNDER THE TERMS OF THE Volatility Contributors
|
|
# Public License V1.0("LICENSE") AS FIRST COMPLETED BY: Volatility Foundation,
|
|
# Inc. ANY USE, PUBLIC DISPLAY, PUBLIC PERFORMANCE, REPRODUCTION OR DISTRIBUTION
|
|
# OF, OR PREPARATION OF SUBSEQUENT WORKS, DERIVATIVE WORKS OR DERIVED WORKS BASED
|
|
# ON, THE LICENSED WORK CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS LICENSE AND ITS
|
|
# TERMS, WHETHER OR NOT SUCH RECIPIENT READS THE TERMS OF THE LICENSE. "LICENSED
|
|
# WORK,” “RECIPIENT" AND “DISTRIBUTOR" ARE DEFINED IN THE LICENSE. A COPY OF THE
|
|
# LICENSE IS LOCATED IN THE TEXT FILE ENTITLED "LICENSE.txt" ACCOMPANYING THE
|
|
# CONTENTS OF THIS FILE. IF A COPY OF THE LICENSE DOES NOT ACCOMPANY THIS FILE, A
|
|
# COPY OF THE LICENSE MAY ALSO BE OBTAINED AT THE FOLLOWING WEB SITE:
|
|
# https://www.volatilityfoundation.org/license/vcpl_v1.0
|
|
#
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
|
|
# specific language governing rights and limitations under the License.
|
|
#
|
|
"""A module containing a collection of plugins that produce data
|
|
typically found in Linux's /proc file system.
|
|
"""
|
|
import logging
|
|
from typing import List
|
|
|
|
from volatility.framework import exceptions, interfaces, contexts
|
|
from volatility.framework import renderers
|
|
from volatility.framework.automagic import linux
|
|
from volatility.framework.configuration import requirements
|
|
from volatility.framework.interfaces import plugins
|
|
from volatility.framework.renderers import format_hints
|
|
|
|
vollog = logging.getLogger(__name__)
|
|
|
|
|
|
class Check_afinfo(plugins.PluginInterface):
|
|
"""Verifies the operation function pointers of network protocols"""
|
|
|
|
@classmethod
|
|
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]:
|
|
return [
|
|
requirements.TranslationLayerRequirement(
|
|
name = 'primary', description = 'Memory layer for the kernel', architectures = ["Intel32", "Intel64"]),
|
|
requirements.SymbolTableRequirement(name = "vmlinux", description = "Linux kernel symbols")
|
|
]
|
|
|
|
# returns whether the symbol is found within the kernel (system.map) or not
|
|
def _is_known_address(self, handler_addr):
|
|
symbols = list(self.context.symbol_space.get_symbols_by_location(handler_addr))
|
|
|
|
return len(symbols) > 0
|
|
|
|
def _check_members(self, var_ops, var_name, members):
|
|
for check in members:
|
|
# redhat-specific garbage
|
|
if check.startswith("__UNIQUE_ID_rh_kabi_hide"):
|
|
continue
|
|
|
|
if check == "write":
|
|
addr = var_ops.member(attr = 'write')
|
|
else:
|
|
addr = getattr(var_ops, check)
|
|
|
|
if addr and addr != 0 and not self._is_known_address(addr):
|
|
yield check, addr
|
|
|
|
def _check_afinfo(self, var_name, var, op_members, seq_members):
|
|
for hooked_member, hook_address in self._check_members(var.seq_fops, var_name, op_members):
|
|
yield var_name, hooked_member, hook_address
|
|
|
|
# newer kernels
|
|
if var.has_member("seq_ops"):
|
|
for hooked_member, hook_address in self._check_members(var.seq_ops, var_name, seq_members):
|
|
yield var_name, hooked_member, hook_address
|
|
|
|
# this is the most commonly hooked member by rootkits, so a force a check on it
|
|
elif not self._is_known_address(var.seq_show):
|
|
yield var_name, "show", var.seq_show
|
|
|
|
def _generator(self):
|
|
linux.LinuxUtilities.aslr_mask_symbol_table(self.context, self.config['vmlinux'], self.config['primary'])
|
|
|
|
vmlinux = contexts.Module(
|
|
self.context, self.config['vmlinux'], self.config['primary'], 0, absolute_symbol_addresses = True)
|
|
|
|
op_members = vmlinux.get_type('file_operations').members
|
|
seq_members = vmlinux.get_type('seq_operations').members
|
|
|
|
tcp = ("tcp_seq_afinfo", ["tcp6_seq_afinfo", "tcp4_seq_afinfo"])
|
|
udp = ("udp_seq_afinfo", ["udplite6_seq_afinfo", "udp6_seq_afinfo", "udplite4_seq_afinfo", "udp4_seq_afinfo"])
|
|
protocols = [tcp, udp]
|
|
|
|
for (struct_type, global_vars) in protocols:
|
|
for global_var_name in global_vars:
|
|
# this will lookup fail for the IPv6 protocols on kernels without IPv6 support
|
|
try:
|
|
global_var = vmlinux.get_symbol(global_var_name)
|
|
except exceptions.SymbolError:
|
|
continue
|
|
|
|
global_var = vmlinux.object(symbol = struct_type, offset = global_var.address)
|
|
|
|
for name, member, address in self._check_afinfo(global_var_name, global_var, op_members, seq_members):
|
|
yield 0, (name, member, format_hints.Hex(address))
|
|
|
|
def run(self):
|
|
|
|
return renderers.TreeGrid([("Symbol Name", str), ("Member", str), ("Handler Address", format_hints.Hex)],
|
|
self._generator())
|