Package rekall :: Package plugins :: Package common :: Package efilter_plugins :: Module helpers
[frames] | no frames]

Module helpers

source code

Classes
  GeneratorRunner
  EfilterRunner
An easy to use class for using Efilter.
  ListFilter
A helper to filter a list of dicts using efilter.
Functions
 
hex_function(value)
A Function to format the output as a hex string.
source code
 
str_function(value) source code
 
int_function(value) source code
 
noncase_search_function(regex, value)
Case insensitive regex search function.
source code
 
substitute(pattern, repl, target) source code
Variables
  EFILTER_SCOPES = dict(hex= api.user_func(hex_function, arg_typ...
  __package__ = 'rekall.plugins.common.efilter_plugins'
Variables Details

EFILTER_SCOPES

Value:
dict(hex= api.user_func(hex_function, arg_types= [int], return_type= [\
str]), str= api.user_func(str_function, arg_types= [], return_type= [u\
nicode]), int= api.user_func(int_function, arg_types= [], return_type=\
 [int]), regex_search= api.user_func(noncase_search_function, arg_type\
s= [unicode, unicode], return_type= [bool]), concat= api.user_func(lam\
bda* args: "".join(args)), sub= api.user_func(substitute),)