Files
2014-06-21 09:48:59 -05:00

85 lines
3.3 KiB
Python

# Volatility
#
# Authors:
# Mike Auty <mike.auty@gmail.com>
#
# 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/>.
#
import os
import volatility.debug as debug
import volatility.utils as utils
import volatility.commands as commands
class ImageCopy(commands.Command):
"""Copies a physical address space out as a raw DD image"""
def __init__(self, *args, **kwargs):
commands.Command.__init__(self, *args, **kwargs)
self._config.add_option("BLOCKSIZE", short_option = "b", default = 1024 * 1024 * 5,
help = "Size (in bytes) of blocks to copy",
action = 'store', type = 'int')
self._config.add_option("OUTPUT-IMAGE", short_option = "O", default = None,
help = "Writes a raw DD image out to OUTPUT-IMAGE",
action = 'store', type = 'str')
def calculate(self):
blocksize = self._config.BLOCKSIZE
addr_space = utils.load_as(self._config, astype = 'physical')
available_addresses = list(addr_space.get_available_addresses())
if not available_addresses:
debug.error("Cannot find any memory ranges to convert. Make sure to specify --profile")
for s, l in available_addresses:
for i in range(s, s + l, blocksize):
yield i, addr_space.zread(i, min(blocksize, s + l - i))
def human_readable(self, value):
for i in ['B', 'KB', 'MB', 'GB']:
if value < 800:
return "{0:0.2f} {1:s}".format(value, i)
value = value / 1024.0
return "{0:0.2f} TB".format(value)
def render_text(self, outfd, data):
"""Renders the file to disk"""
if self._config.OUTPUT_IMAGE is None:
debug.error("Please provide -O/--output-image=FILENAME")
if os.path.exists(self._config.OUTPUT_IMAGE) and (os.path.getsize(self._config.OUTPUT_IMAGE) > 1):
debug.error("Refusing to overwrite an existing file, please remove it before continuing")
outfd.write("Writing data (" + self.human_readable(self._config.BLOCKSIZE) + " chunks): |")
f = file(self._config.OUTPUT_IMAGE, "wb+")
progress = 0
try:
for o, block in data:
f.seek(o)
f.write(block)
f.flush()
outfd.write(".")
outfd.flush()
progress = o
except TypeError, why:
debug.error("Error when reading from address space: {0}".format(why))
except BaseException, e:
debug.error("Unexpected error ({1}) during copy, recorded data up to offset {0:0x}".format(progress, str(e)))
finally:
f.close()
outfd.write("|\n")