mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-10 03:37:39 +02:00
#816 - remove extra text from buffer output
This commit is contained in:
@@ -895,7 +895,11 @@ class Consoles(interfaces.plugins.PluginInterface):
|
||||
if console_property["address"] is None
|
||||
else format_hints.Hex(console_property["address"])
|
||||
),
|
||||
str(console_property["data"]),
|
||||
(
|
||||
str(console_property["data"])
|
||||
if console_property["data"]
|
||||
else renderers.NotAvailableValue()
|
||||
),
|
||||
),
|
||||
)
|
||||
else:
|
||||
|
||||
@@ -192,10 +192,6 @@ class SCREEN_INFORMATION(objects.StructType):
|
||||
if truncate_rows:
|
||||
rows = self._truncate_rows(rows)
|
||||
|
||||
if rows:
|
||||
rows = ["=== START OF BUFFER ==="] + rows + ["=== END OF BUFFER ==="]
|
||||
else:
|
||||
rows = ["=== NO BUFFER DATA FOUND ==="]
|
||||
return rows
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user