mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
62 lines
2.3 KiB
Python
62 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 Version 2 as
|
|
# published by the Free Software Foundation. You may not use, modify or
|
|
# distribute this program under any other version of the GNU General
|
|
# Public License.
|
|
#
|
|
# 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 os
|
|
|
|
import volatility.obj as obj
|
|
import volatility.debug as debug
|
|
import volatility.plugins.linux.common as linux_common
|
|
import volatility.plugins.linux.pslist as linux_pslist
|
|
|
|
class linux_procdump(linux_pslist.linux_pslist):
|
|
"""Dumps a process's executable image to disk"""
|
|
|
|
def __init__(self, config, *args, **kwargs):
|
|
linux_pslist.linux_pslist.__init__(self, config, *args, **kwargs)
|
|
self._config.add_option('DUMP-DIR', short_option = 'D', default = None, help = 'Output directory', action = 'store', type = 'str')
|
|
|
|
def render_text(self, outfd, data):
|
|
if not self._config.DUMP_DIR:
|
|
debug.error("-D/--dump-dir must given that specifies an existing directory")
|
|
|
|
self.table_header(outfd, [("Offset", "[addrpad]"),
|
|
("Name", "20"),
|
|
("Pid", "15"),
|
|
("Address", "[addrpad]"),
|
|
("Output File", "")])
|
|
for task in data:
|
|
if not task.mm:
|
|
continue
|
|
|
|
file_path = linux_common.write_elf_file(self._config.DUMP_DIR, task, task.mm.start_code)
|
|
|
|
self.table_row(outfd, task.obj_offset,
|
|
task.comm,
|
|
str(task.pid),
|
|
task.mm.start_code,
|
|
file_path)
|
|
|