Package rekall :: Module session :: Class PluginContainer
[frames] | no frames]

Class PluginContainer

source code


A container for plugins.

Dynamically figures out which plugins are active given the current session state (profile, image file etc).

Instance Methods
 
__init__(self, session)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
GetPluginClass(self, name)
Return the active plugin class that implements plugin name.
source code
 
Metadata(self, name) source code
 
__getattr__(self, name)
Gets a wrapped active plugin class.
source code
 
__dir__(self)
Enumerate all active plugins in the current configuration.
source code

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

Properties

Inherited from object: __class__

Method Details

__init__(self, session)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

GetPluginClass(self, name)

source code 

Return the active plugin class that implements plugin name.

Plugins may not be active depending on the current configuration.

__getattr__(self, name)
(Qualification operator)

source code 

Gets a wrapped active plugin class.

A convenience function that returns a curry wrapping the plugin class with the session parameter so users do not need to explicitly pass the session.

This makes it easy to use in the interactive console:

pslist_plugin = plugins.pslist()