mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
99 lines
3.1 KiB
Python
99 lines
3.1 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 os
|
|
import volatility.obj as obj
|
|
import volatility.debug as debug
|
|
import volatility.plugins.linux.netstat as linux_netstat
|
|
import volatility.plugins.linux.common as linux_common
|
|
|
|
class linux_pkt_queues(linux_netstat.linux_netstat):
|
|
"""Writes per-process packet queues out to disk"""
|
|
|
|
def __init__(self, config, *args, **kwargs):
|
|
linux_netstat.linux_netstat.__init__(self, config, *args, **kwargs)
|
|
self._config.add_option('DUMP-DIR', short_option = 'D', default = None, help = 'output directory for recovered packets', action = 'store', type = 'str')
|
|
|
|
def process_queue(self, name, pid, fd_num, queue):
|
|
if queue.qlen == 0:
|
|
return
|
|
|
|
wrote = 0
|
|
|
|
fname = "{0:s}.{1:d}.{2:d}".format(name, pid, fd_num)
|
|
fd = None
|
|
|
|
sk_buff = queue.m("next")
|
|
|
|
while sk_buff and sk_buff != queue.v():
|
|
|
|
pkt_len = sk_buff.len
|
|
|
|
if pkt_len > 0 and pkt_len != 0xffffffff:
|
|
|
|
# only open once we have a packet with data
|
|
# otherwise we get 0 sized files
|
|
if fd == None:
|
|
fd = open(os.path.join(self.edir, fname), "wb")
|
|
|
|
start = sk_buff.data
|
|
data = self.addr_space.zread(start, pkt_len)
|
|
|
|
fd.write(data)
|
|
|
|
wrote = wrote + pkt_len
|
|
|
|
sk_buff = sk_buff.next
|
|
|
|
if wrote:
|
|
yield "Wrote {0:d} bytes to {1:s}".format(wrote, fname)
|
|
|
|
if fd:
|
|
fd.close()
|
|
|
|
def calculate(self):
|
|
linux_common.set_plugin_members(self)
|
|
self.edir = self._config.DUMP_DIR
|
|
|
|
if not self.edir:
|
|
debug.error("No output directory given.")
|
|
|
|
if not os.path.isdir(self.edir):
|
|
debug.error(self.edir + " is not a directory")
|
|
|
|
for (task, fd_num, _, inet_sock) in linux_netstat.linux_netstat(self._config).calculate():
|
|
|
|
sk = inet_sock.sk
|
|
for msg in self.process_queue("receive", task.pid, fd_num, sk.sk_receive_queue):
|
|
yield msg
|
|
|
|
for msg in self.process_queue("write", task.pid, fd_num, sk.sk_write_queue):
|
|
yield msg
|
|
|
|
def render_text(self, outfd, data):
|
|
for msg in data:
|
|
outfd.write(msg + "\n")
|
|
|