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 61c67b6 commit 69e3c7dCopy full SHA for 69e3c7d
volatility3/cli/volshell/generic.py
@@ -636,9 +636,9 @@ def _display_value(self, value: Any) -> str:
636
if self.context.layers[self.current_layer].is_valid(
637
value.vol.offset
638
):
639
- return f"offset: {hex(value.vol.offset)}"
+ return f"offset: 0x{value.vol.offset:x}"
640
else:
641
- return f"offset: {hex(value.vol.offset)} (unreadable)"
+ return f"offset: 0x{value.vol.offset:x} (unreadable)"
642
643
# non volobject
644
if value is None:
0 commit comments