mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-17 20:35:40 +02:00
volshell: inform user that value displayed is only an offset for types like embedded structs
This commit is contained in:
@@ -622,7 +622,7 @@ class Volshell(interfaces.plugins.PluginInterface):
|
||||
elif isinstance(value, objects.Array):
|
||||
return repr([self._display_value(val) for val in value])
|
||||
else:
|
||||
return hex(value.vol.offset)
|
||||
return f"offset: {hex(value.vol.offset)}"
|
||||
else:
|
||||
# non volobject
|
||||
if value is None:
|
||||
|
||||
Reference in New Issue
Block a user