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

Class PluginRunnerContainer

source code


Like a PluginContainer but returns plugin runners.

Instance Methods
 
__getattr__(self, name)
Gets a wrapped active plugin class.
source code
 
GetPluginClass(self, name)
Return the active plugin class that implements plugin name. (Inherited from rekall.session.PluginContainer)
source code
 
Metadata(self, name) (Inherited from rekall.session.PluginContainer) source code
 
__dir__(self)
Enumerate all active plugins in the current configuration. (Inherited from rekall.session.PluginContainer)
source code
 
__init__(self, session)
x.__init__(...) initializes x; see help(type(x)) for signature (Inherited from rekall.session.PluginContainer)
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

__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()

Overrides: PluginContainer.__getattr__
(inherited documentation)