mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
68 lines
2.3 KiB
Python
68 lines
2.3 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 volatility.obj as obj
|
|
import volatility.plugins.mac.pstasks as pstasks
|
|
import volatility.plugins.mac.common as common
|
|
|
|
class mac_lsof(pstasks.mac_tasks):
|
|
""" Lists per-process opened files """
|
|
def calculate(self):
|
|
common.set_plugin_members(self)
|
|
|
|
procs = pstasks.mac_tasks(self._config).calculate()
|
|
|
|
for proc in procs:
|
|
num_fds = proc.p_fd.fd_lastfile
|
|
if proc.p_fd.fd_nfiles > num_fds:
|
|
num_fds = proc.p_fd.fd_nfiles
|
|
|
|
fds = obj.Object('Array', offset = proc.p_fd.fd_ofiles, vm = self.addr_space, targetType = 'Pointer', count = proc.p_fd.fd_nfiles)
|
|
|
|
for i, fd in enumerate(fds):
|
|
f = fd.dereference_as("fileproc")
|
|
if f:
|
|
ftype = f.f_fglob.fg_type
|
|
if ftype == 'DTYPE_VNODE':
|
|
vnode = f.f_fglob.fg_data.dereference_as("vnode")
|
|
path = vnode.full_path()
|
|
else:
|
|
path = ""
|
|
|
|
yield proc, i, f, path
|
|
|
|
def render_text(self, outfd, data):
|
|
self.table_header(outfd, [("PID","8"),
|
|
("File Descriptor", "6"),
|
|
("File Path", ""),
|
|
])
|
|
|
|
for proc, i, f, path in data:
|
|
if path:
|
|
self.table_row(outfd, proc.p_pid, i, path)
|
|
|
|
|