mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
196 lines
7.4 KiB
Python
196 lines
7.4 KiB
Python
# Volatility
|
|
# Copyright (C) 2008 Volatile Systems
|
|
# Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu>
|
|
#
|
|
# This program 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.
|
|
#
|
|
# This program 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 this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
|
|
"""
|
|
This module implements the fast module scanning
|
|
|
|
@author: AAron Walters and Brendan Dolan-Gavitt
|
|
@license: GNU General Public License 2.0 or later
|
|
@contact: awalters@volatilesystems.com,bdolangavitt@wesleyan.edu
|
|
@organization: Volatile Systems
|
|
"""
|
|
|
|
#pylint: disable-msg=C0111
|
|
|
|
import common
|
|
import volatility.plugins.filescan as filescan
|
|
import volatility.scan as scan
|
|
import volatility.utils as utils
|
|
import volatility.obj as obj
|
|
import volatility.debug as debug #pylint: disable-msg=W0611
|
|
|
|
class PoolScanModuleFast(scan.PoolScanner):
|
|
|
|
def object_offset(self, found, address_space):
|
|
return found + (address_space.profile.get_obj_size("_POOL_HEADER") -
|
|
address_space.profile.get_obj_offset("_POOL_HEADER", "PoolTag"))
|
|
|
|
checks = [ ('PoolTagCheck', dict(tag = 'MmLd')),
|
|
('CheckPoolSize', dict(condition = lambda x: x > 0x4c)),
|
|
('CheckPoolType', dict(paged = True, non_paged = True, free = True)),
|
|
('CheckPoolIndex', dict(value = 0)),
|
|
]
|
|
|
|
class ModScan(filescan.FileScan):
|
|
""" Scan Physical memory for _LDR_DATA_TABLE_ENTRY objects
|
|
"""
|
|
|
|
# Declare meta information associated with this plugin
|
|
meta_info = dict(
|
|
author = 'Brendan Dolan-Gavitt',
|
|
copyright = 'Copyright (c) 2007,2008 Brendan Dolan-Gavitt',
|
|
contact = 'bdolangavitt@wesleyan.edu',
|
|
license = 'GNU General Public License 2.0 or later',
|
|
url = 'http://moyix.blogspot.com/',
|
|
os = 'WIN_32_XP_SP2',
|
|
version = '1.0',
|
|
)
|
|
|
|
def calculate(self):
|
|
## Here we scan the physical address space
|
|
address_space = utils.load_as(self._config, astype = 'physical')
|
|
|
|
## We need the kernel_address_space later
|
|
kernel_as = utils.load_as(self._config)
|
|
|
|
scanner = PoolScanModuleFast()
|
|
for offset in scanner.scan(address_space):
|
|
ldr_entry = obj.Object('_LDR_DATA_TABLE_ENTRY', vm = address_space,
|
|
offset = offset, native_vm = kernel_as)
|
|
yield ldr_entry
|
|
|
|
def render_text(self, outfd, data):
|
|
self.table_header(outfd,
|
|
[("Offset(P)", "[addrpad]"),
|
|
('Name', "20"),
|
|
('Base', "[addrpad]"),
|
|
('Size', "[addr]"),
|
|
('File', "")
|
|
])
|
|
for ldr_entry in data:
|
|
self.table_row(outfd,
|
|
ldr_entry.obj_offset,
|
|
str(ldr_entry.BaseDllName or ''),
|
|
ldr_entry.DllBase,
|
|
ldr_entry.SizeOfImage,
|
|
str(ldr_entry.FullDllName or ''))
|
|
|
|
class CheckThreads(scan.ScannerCheck):
|
|
""" Check sanity of _ETHREAD """
|
|
kernel = 0x80000000
|
|
|
|
def check(self, found):
|
|
|
|
pool_base = found - self.address_space.profile.get_obj_offset(
|
|
'_POOL_HEADER', 'PoolTag')
|
|
|
|
pool_obj = obj.Object("_POOL_HEADER", vm = self.address_space,
|
|
offset = pool_base)
|
|
|
|
## We work out the _ETHREAD from the end of the
|
|
## allocation (bottom up).
|
|
pool_alignment = obj.VolMagic(self.address_space).PoolAlignment.v()
|
|
thread = obj.Object("_ETHREAD", vm = self.address_space,
|
|
offset = pool_base + pool_obj.BlockSize * pool_alignment -
|
|
common.pool_align(self.address_space, '_ETHREAD', pool_alignment))
|
|
|
|
#if (thread.Cid.UniqueProcess.v() != 0 and
|
|
# thread.ThreadsProcess.v() <= self.kernel):
|
|
# return False
|
|
|
|
## check the start address
|
|
if thread.Cid.UniqueProcess.v() != 0 and thread.StartAddress == 0:
|
|
return False
|
|
|
|
## Check the Semaphores
|
|
if (thread.Tcb.SuspendSemaphore.Header.Size != 0x05 and
|
|
thread.Tcb.SuspendSemaphore.Header.Type != 0x05):
|
|
return False
|
|
|
|
if (thread.KeyedWaitSemaphore.Header.Size != 0x05 and
|
|
thread.KeyedWaitSemaphore.Header.Type != 0x05):
|
|
return False
|
|
|
|
return True
|
|
|
|
class PoolScanThreadFast(scan.PoolScanner):
|
|
""" Carve out thread objects using the pool tag """
|
|
|
|
def object_offset(self, found, address_space):
|
|
""" This returns the offset of the object contained within
|
|
this pool allocation.
|
|
"""
|
|
|
|
## The offset of the object is determined by subtracting the offset
|
|
## of the PoolTag member to get the start of Pool Object
|
|
|
|
pool_base = found - self.buffer.profile.get_obj_offset('_POOL_HEADER', 'PoolTag')
|
|
|
|
pool_obj = obj.Object("_POOL_HEADER", vm = address_space,
|
|
offset = pool_base)
|
|
|
|
## We work out the _ETHREAD from the end of the
|
|
## allocation (bottom up).
|
|
pool_alignment = obj.VolMagic(address_space).PoolAlignment.v()
|
|
|
|
object_base = (pool_base + pool_obj.BlockSize * pool_alignment -
|
|
common.pool_align(address_space, '_ETHREAD', pool_alignment))
|
|
|
|
return object_base
|
|
|
|
checks = [ ('PoolTagCheck', dict(tag = '\x54\x68\x72\xe5')),
|
|
('CheckPoolSize', dict(condition = lambda x: x >= 0x278)),
|
|
('CheckPoolType', dict(paged = True, non_paged = True, free = True)),
|
|
('CheckPoolIndex', dict(value = 0)),
|
|
('CheckThreads', {}),
|
|
]
|
|
|
|
class ThrdScan(ModScan):
|
|
"""Scan physical memory for _ETHREAD objects"""
|
|
def calculate(self):
|
|
## Here we scan the physical address space
|
|
address_space = utils.load_as(self._config, astype = 'physical')
|
|
kernel_as = utils.load_as(self._config)
|
|
|
|
scanner = PoolScanThreadFast()
|
|
for found in scanner.scan(address_space):
|
|
thread = obj.Object('_ETHREAD', vm = address_space,
|
|
native_vm = kernel_as, offset = found)
|
|
|
|
yield thread
|
|
|
|
def render_text(self, outfd, data):
|
|
self.table_header(outfd,
|
|
[("Offset(P)", "[addrpad]"),
|
|
("PID", ">6"),
|
|
("TID", ">6"),
|
|
("Start Address", "[addr]"),
|
|
("Create Time", "25"),
|
|
("Exit Time", "25"),
|
|
])
|
|
|
|
for thread in data:
|
|
self.table_row(outfd, thread.obj_offset,
|
|
thread.Cid.UniqueProcess,
|
|
thread.Cid.UniqueThread,
|
|
thread.StartAddress,
|
|
thread.CreateTime or '',
|
|
thread.ExitTime or '',
|
|
)
|