mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-02 14:28:58 +02:00
Merge pull request #459 from AsafEitani/match-pid-result-fields
changing PID field names
This commit is contained in:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user