changing PID field names

Changing the pid name field of the result to match the PID of all other plugins
This commit is contained in:
AsafEitani
2021-02-23 12:28:17 +02:00
parent 8b6c6b604d
commit cf3ad1a6eb
2 changed files with 2 additions and 2 deletions
@@ -160,7 +160,7 @@ class SvcScan(interfaces.plugins.PluginInterface):
return renderers.TreeGrid([
('Offset', format_hints.Hex),
('Order', int),
('Pid', int),
('PID', int),
('Start', str),
('State', str),
('Type', str),
@@ -83,5 +83,5 @@ class VadYaraScan(interfaces.plugins.PluginInterface):
yield (start, end - start)
def run(self):
return renderers.TreeGrid([('Offset', format_hints.Hex), ('Pid', int), ('Rule', str), ('Component', str),
return renderers.TreeGrid([('Offset', format_hints.Hex), ('PID', int), ('Rule', str), ('Component', str),
('Value', bytes)], self._generator())