mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-25 23:52:23 +02:00
Catch symbolerror for when a kernel does not have ns_common #1594
This commit is contained in:
@@ -276,7 +276,7 @@ class LinuxUtilities(interfaces.configuration.VersionableInterface):
|
||||
ns_ops = ns_common.ops
|
||||
|
||||
pre_name = utility.pointer_to_string(ns_ops.name, 255)
|
||||
except IndexError:
|
||||
except (exceptions.SymbolError, IndexError):
|
||||
pre_name = "<unsupported ns_dname implementation>"
|
||||
else:
|
||||
pre_name = f"<unsupported d_op symbol> {sym}"
|
||||
|
||||
Reference in New Issue
Block a user