We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055f2e7 commit d38a69fCopy full SHA for d38a69f
volatility3/framework/interfaces/context.py
@@ -191,6 +191,9 @@ def build_configuration(self) -> "interfaces.configuration.HierarchicalDict":
191
self._native_layer_name
192
].build_configuration()
193
194
+ # Modules are constructable, and therefore require a class configuration variable
195
+ config["class"] = self.__class__.__module__ + "." + self.__class__.__name__
196
+
197
for subconfig in subconfigs:
198
for req in subconfigs[subconfig]:
199
config[interfaces.configuration.path_join(subconfig, req)] = subconfigs[
0 commit comments