mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-08 02:37:39 +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).
104 lines
4.7 KiB
Python
104 lines
4.7 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.
|
|
#
|
|
|
|
import logging
|
|
from typing import List, Iterator, Any
|
|
|
|
from volatility.framework import exceptions, interfaces
|
|
from volatility.framework.objects import utility
|
|
from volatility.framework import renderers, constants, contexts
|
|
from volatility.framework.automagic import mac
|
|
from volatility.framework.configuration import requirements
|
|
from volatility.framework.interfaces import plugins
|
|
from volatility.framework.renderers import format_hints
|
|
from volatility.plugins.mac import lsmod
|
|
|
|
vollog = logging.getLogger(__name__)
|
|
|
|
|
|
class Check_syscall(plugins.PluginInterface):
|
|
"""Check system call table for hooks"""
|
|
|
|
@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 = "darwin", description = "Mac kernel symbols")
|
|
]
|
|
|
|
def _generator(self, mods: Iterator[Any]):
|
|
mac.MacUtilities.aslr_mask_symbol_table(self.context, self.config['darwin'], self.config['primary'])
|
|
|
|
kernel = contexts.Module(self._context, self.config['darwin'], self.config['primary'], 0)
|
|
|
|
policy_list = kernel.object(
|
|
symbol = "_mac_policy_list", symbol_type = constants.SymbolType.SYMBOL).cast("mac_policy_list")
|
|
|
|
entries = kernel.object(
|
|
symbol = "array",
|
|
offset = policy_list.entries.dereference().vol.offset,
|
|
subtype = kernel.get_type('mac_policy_list_element'),
|
|
count = policy_list.staticmax + 1)
|
|
|
|
mask = self.context.layers[self.config['primary']].address_mask
|
|
mods_list = [(mod.name, mod.address & mask, (mod.address & mask) + mod.size) for mod in mods]
|
|
|
|
for i, ent in enumerate(entries):
|
|
# I don't know how this can happen, but the kernel makes this check all over the place
|
|
# the policy isn't useful without any ops so a rootkit can't abuse this
|
|
try:
|
|
mpc = ent.mpc.dereference()
|
|
ops = mpc.mpc_ops.dereference()
|
|
except exceptions.PagedInvalidAddressException:
|
|
continue
|
|
|
|
try:
|
|
ent_name = utility.pointer_to_string(mpc.mpc_name, 255)
|
|
except exceptions.PagedInvalidAddressException:
|
|
ent_name = "N/A"
|
|
|
|
for check in ops.vol.members:
|
|
call_addr = getattr(ops, check)
|
|
|
|
if call_addr is None or call_addr == 0:
|
|
continue
|
|
|
|
found_module = None
|
|
|
|
for mod_name_info, mod_base, mod_end in mods_list:
|
|
if call_addr >= mod_base and call_addr <= mod_end:
|
|
found_module = mod_name_info
|
|
break
|
|
|
|
if found_module:
|
|
symbol_module = utility.array_to_string(found_module)
|
|
else:
|
|
symbol_module = "UNKNOWN"
|
|
|
|
yield (0, (check, ent_name, symbol_module, format_hints.Hex(call_addr)))
|
|
|
|
def run(self):
|
|
return renderers.TreeGrid([("Member", str), ("Policy Name", str), ("Handler Module", str),
|
|
("Handler Address", format_hints.Hex)],
|
|
self._generator(
|
|
lsmod.Lsmod.list_modules(self.context, self.config['primary'],
|
|
self.config['darwin'])))
|