The Volatility Framework
volatility.plugins.tcaudit.TrueCryptMaster Class Reference

Recover TrueCrypt 7.1a Master Keys. More...

Inheritance diagram for volatility.plugins.tcaudit.TrueCryptMaster:
volatility.plugins.common.AbstractWindowsCommand volatility.commands.Command

Public Member Functions

def __init__ (self, config, args, kwargs)
 
def calculate (self)
 
def render_text (self, outfd, data)
 
- Public Member Functions inherited from volatility.commands.Command
def __init__ (self, config, _args, _kwargs)
 Constructor uses args as an initializer. More...
 
def help (cls)
 This function returns a string that will be displayed when a user lists available plugins.
 
def calculate (self)
 This function is responsible for performing all calculations. More...
 
def execute (self)
 Executes the plugin command. More...
 
def format_value (self, value, fmt)
 Formats an individual field using the table formatting codes.
 
def table_header
 Table header renders the title row of a table. More...
 
def table_row (self, outfd, args)
 Outputs a single row of a table.
 
def text_cell_renderers (self, columns)
 Returns default renderers for the columns listed.
 
def unified_output (self, data)
 
def render_text (self, outfd, data)
 
def render_greptext (self, outfd, data)
 
def render_json (self, outfd, data)
 
def render_sqlite (self, outfd, data)
 
def render_dot (self, outfd, data)
 
def render_html (self, outfd, data)
 
def render_xlsx (self, outfd, data)
 

Static Public Member Functions

def apply_types (addr_space, ver)
 Apply the TrueCrypt types for a specific version of TC. More...
 
- Static Public Member Functions inherited from volatility.plugins.common.AbstractWindowsCommand
def is_valid_profile (profile)
 
- Static Public Member Functions inherited from volatility.commands.Command
def register_options (config)
 Registers options into a config object provided.
 
def is_valid_profile (profile)
 

Static Public Attributes

dictionary version_map
 
- Static Public Attributes inherited from volatility.commands.Command
string op = ""
 
string opts = ""
 
string args = ""
 
string cmdname = ""
 
dictionary meta_info = {}
 
 elide_data = True
 
string tablesep = " "
 
 text_sort_column = None
 
dictionary text_stock_renderers
 

Detailed Description

Recover TrueCrypt 7.1a Master Keys.

Member Function Documentation

def volatility.plugins.tcaudit.TrueCryptMaster.apply_types (   addr_space,
  ver 
)
static

Apply the TrueCrypt types for a specific version of TC.

Parameters
addr_space<volatility.BaseAddressSpace>
ver<string> version

Member Data Documentation

dictionary volatility.plugins.tcaudit.TrueCryptMaster.version_map
static
Initial value:
1 = {
2  # the most recent - released feb 2012
3  '7.1a' : {'32bit': tc_71a_vtypes_x86, '64bit': tc_71a_vtypes_x64},
4  # released july 2010. also supports 6.3a from
5  # november 2009, so its likely all versions between
6  # 6.3a and 7.0a are supported by these vtypes
7  '7.0a' : {'32bit': tc_70a_vtypes_x86, '64bit': tc_70a_vtypes_x64},
8  }

The documentation for this class was generated from the following file: