mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
58 lines
1.8 KiB
Python
58 lines
1.8 KiB
Python
# This file is part of Volatility.
|
|
# Copyright (C) 2007-2013 Volatility Foundation
|
|
#
|
|
# 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.plugins.linux.pslist as linux_pslist
|
|
|
|
class linux_pstree(linux_pslist.linux_pslist):
|
|
'''Shows the parent/child relationship between processes'''
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
self.procs = {}
|
|
linux_pslist.linux_pslist.__init__(self, *args, **kwargs)
|
|
|
|
def render_text(self, outfd, data):
|
|
|
|
self.procs = {}
|
|
outfd.write("{0:20s} {1:15s} {2:15s}\n".format("Name", "Pid", "Uid"))
|
|
for task in data:
|
|
self.recurse_task(outfd, task, 0)
|
|
|
|
def recurse_task(self, outfd, task, level):
|
|
|
|
if task.pid in self.procs:
|
|
return
|
|
|
|
if task.mm:
|
|
proc_name = task.comm
|
|
else:
|
|
proc_name = "[" + task.comm + "]"
|
|
|
|
proc_name = "." * level + proc_name
|
|
outfd.write("{0:20s} {1:15s} {2:15s}\n".format(proc_name, str(task.pid), str(task.uid or '')))
|
|
self.procs[task.pid] = 1
|
|
|
|
for child in task.children.list_of_type("task_struct", "sibling"):
|
|
self.recurse_task(outfd, child, level + 1)
|
|
|