Merge pull request #459 from AsafEitani/match-pid-result-fields

changing PID field names
This commit is contained in:
ikelos
2021-02-25 01:29:54 +00:00
committed by GitHub
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())