# Volatility # Copyright (C) 2008 Volatile Systems # # 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 # import volatility.plugins.linux.pslist as pslist import volatility.plugins.volshell as volshell import volatility.obj as obj class linux_volshell(volshell.volshell): """Shell in the memory image""" @staticmethod def is_valid_profile(profile): return profile.metadata.get('os', 'Unknown').lower() == 'linux' def getpidlist(self): return pslist.linux_pslist(self._config).calculate() def ps(self, procs = None): print "{0:16} {1:6} {2:8}".format("Name", "PID", "Offset") for proc in procs or self.getpidlist(): print "{0:16} {1:<6} {2:#08x}".format(proc.comm, proc.pid, proc.obj_offset) def context_display(self): dtb = self.addrspace.vtop(self.proc.mm.pgd) or self.proc.mm.pgd print "Current context: process {0}, pid={1} DTB={2:#x}".format(self.proc.comm, self.proc.pid, dtb) def set_context(self, offset = None, pid = None, name = None): if pid is not None: offsets = [] for p in self.getpidlist(): if p.pid.v() == pid: offsets.append(p) if not offsets: print "Unable to find process matching pid {0}".format(pid) return elif len(offsets) > 1: print "Multiple processes match {0}, please specify by offset".format(pid) print "Matching processes:" self.ps(offsets) return else: offset = offsets[0].v() elif name is not None: offsets = [] for p in self.getpidlist(): if p.comm.find(name) >= 0: offsets.append(p) if not offsets: print "Unable to find process matching name {0}".format(name) return elif len(offsets) > 1: print "Multiple processes match name {0}, please specify by PID or offset".format(name) print "Matching processes:" self.ps(offsets) return else: offset = offsets[0].v() elif offset is None: print "Must provide one of: offset, name, or pid as a argument." return self.proc = obj.Object("task_struct", offset = offset, vm = self.addrspace) self.context_display()