volatility3 package

Volatility 3 - An open-source memory forensics framework

class WarningFindSpec[source]

Bases: importlib.abc.MetaPathFinder

Checks import attempts and throws a warning if the name shouldn’t be used.

find_module(fullname, path)

Return a loader for the module.

If no module is found, return None. The fullname is a str and the path is a list of strings or None.

This method is deprecated since Python 3.4 in favor of finder.find_spec(). If find_spec() exists then backwards-compatible functionality is provided for this method.

static find_spec(fullname, path, target=None, **kwargs)[source]

Mock find_spec method that just checks the name, this must go first.

Return type

None

invalidate_caches()

An optional method for clearing the finder’s cache, if any. This method is used by importlib.invalidate_caches().

class classproperty(func)[source]

Bases: property

Class property decorator.

Note this will change the return type

deleter()

Descriptor to change the deleter on a property.

fdel
fget
fset
getter()

Descriptor to change the getter on a property.

setter()

Descriptor to change the setter on a property.