mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
82 lines
3.0 KiB
Python
82 lines
3.0 KiB
Python
# Volatility
|
|
# Copyright (C) 2007-2013 Volatility Foundation
|
|
#
|
|
# This file is part of Volatility.
|
|
#
|
|
# Volatility is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Volatility is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Volatility. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
"""
|
|
@author: Andrew Case
|
|
@license: GNU General Public License 2.0
|
|
@contact: atcuno@gmail.com
|
|
@organization:
|
|
"""
|
|
|
|
import sys
|
|
import volatility.obj as obj
|
|
import volatility.plugins.mac.common as common
|
|
|
|
from lsmod import mac_lsmod as mac_lsmod
|
|
|
|
class mac_trustedbsd(mac_lsmod):
|
|
""" Lists malicious trustedbsd policies """
|
|
|
|
def get_members(self):
|
|
h = self.profile.types['mac_policy_ops']
|
|
return h.keywords["members"]
|
|
|
|
def calculate(self):
|
|
common.set_plugin_members(self)
|
|
|
|
# get all the members of 'mac_policy_ops' so that we can check them (they are all function ptrs)
|
|
ops_members = self.get_members()
|
|
|
|
# get the symbols need to check for if rootkit or not
|
|
(kernel_symbol_addresses, kmods) = common.get_kernel_addrs(self)
|
|
|
|
list_addr = self.addr_space.profile.get_symbol("_mac_policy_list")
|
|
|
|
plist = obj.Object("mac_policy_list", offset = list_addr, vm = self.addr_space)
|
|
parray = obj.Object('Array', offset = plist.entries, vm = self.addr_space, targetType = 'mac_policy_list_element', count = plist.staticmax + 1)
|
|
|
|
for ent in parray:
|
|
# 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
|
|
if ent.mpc == None:
|
|
continue
|
|
|
|
name = ent.mpc.mpc_name.dereference()
|
|
|
|
ops = obj.Object("mac_policy_ops", offset = ent.mpc.mpc_ops, vm = self.addr_space)
|
|
|
|
# walk each member of the struct
|
|
for check in ops_members:
|
|
ptr = ops.__getattr__(check)
|
|
|
|
if ptr.v() != 0 and ptr.is_valid():
|
|
(good, module) = common.is_known_address_name(ptr, kernel_symbol_addresses, kmods)
|
|
|
|
yield (good, check, module, name, ptr)
|
|
|
|
def render_text(self, outfd, data):
|
|
self.table_header(outfd, [("Check", "40"), ("Name", "20"), ("Pointer", "[addrpad]"), ("Module", ""), ("Status", "")])
|
|
for (good, check, module, name, ptr) in data:
|
|
if good:
|
|
status = "OK"
|
|
else:
|
|
status = "HOOKED"
|
|
|
|
self.table_row(outfd, check, name, ptr, module, status)
|