mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-31 20:29:46 +02:00
update lsof to print name properly
This commit is contained in:
@@ -26,7 +26,7 @@ class Lsof(plugins.PluginInterface):
|
||||
|
||||
def _generator(self, tasks):
|
||||
for task in tasks:
|
||||
name = str(task.comm)
|
||||
name = utility.array_to_string(task.comm)
|
||||
pid = int(task.pid)
|
||||
|
||||
for fd_num, _, full_path in linux.LinuxUtilities.files_descriptors_for_process(self.config, self.context, task):
|
||||
|
||||
Reference in New Issue
Block a user