mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-10 11:47:38 +02:00
Volshell: Add a convenience display symbols function.
This commit is contained in:
@@ -56,3 +56,9 @@ class Volshell(generic.Volshell):
|
||||
if constants.BANG not in object:
|
||||
object = self.config['vmlinux'] + constants.BANG + object
|
||||
return super().display_type(object)
|
||||
|
||||
def display_symbols(self, symbol_table: str = None):
|
||||
"""Prints an alphabetical list of symbols for a symbol table"""
|
||||
if symbol_table is None:
|
||||
symbol_table = self.config['vmlinux']
|
||||
return super().display_symbols(symbol_table)
|
||||
|
||||
Reference in New Issue
Block a user