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.
2 parents 4149c55 + d38a69f commit c13c76cCopy full SHA for c13c76c
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