mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
change some relative imports to absolute (i.e. import x -> import volatility.plugins.mac.x as x)
This commit is contained in:
@@ -25,9 +25,9 @@ import sys
|
||||
|
||||
import volatility.obj as obj
|
||||
import volatility.plugins.mac.common as common
|
||||
from lsmod import mac_lsmod as mac_lsmod
|
||||
import volatility.plugins.mac.lsmod as lsmod
|
||||
|
||||
class mac_ip_filters(mac_lsmod):
|
||||
class mac_ip_filters(lsmod.mac_lsmod):
|
||||
""" Reports any hooked IP filters """
|
||||
|
||||
def check_filter(self, context, fname, ptr, kernel_symbol_addresses, kmods):
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
|
||||
import volatility.obj as obj
|
||||
import volatility.plugins.mac.common as common
|
||||
from lsmod import mac_lsmod as mac_lsmod
|
||||
import volatility.plugins.mac.lsmod as lsmod
|
||||
|
||||
class mac_notifiers(mac_lsmod):
|
||||
class mac_notifiers(lsmod.mac_lsmod):
|
||||
""" detects rootkits that add hooks into I/O Kit (e.g. LogKext) """
|
||||
|
||||
def calculate(self):
|
||||
|
||||
Reference in New Issue
Block a user