Package rekall :: Module plugin :: Class PhysicalASMixin
[frames] | no frames]

Class PhysicalASMixin

source code


A mixin for those plugins which require a valid physical address space.

This class ensures a valid physical AS exists or an exception is raised.

Instance Methods
 
__init__(self, *args, **kwargs)
A mixin for those plugins requiring a physical address space.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Methods
 
args(cls, metadata) source code
Class Variables
  PHYSICAL_AS_REQUIRED = True
Properties

Inherited from object: __class__

Method Details

__init__(self, *args, **kwargs)
(Constructor)

source code 
A mixin for those plugins requiring a physical address space.

Args:
  physical_address_space: The physical address space to use. If not
    specified we use the following options:

    1) session.physical_address_space,

    2) Guess using the load_as() plugin,

    3) Use session.kernel_address_space.base.

Overrides: object.__init__