Skip to content

Commit

Permalink
Changes to fix Windows services analysis plugin #3145 (#3146)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Jul 2, 2020
1 parent 167370f commit 7cc2567
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plaso/analysis/windows_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ def ExamineEvent(self, mediator, event, event_data, event_data_stream):
service_event_data = services.WindowsRegistryServiceEventData()
service_event_data.CopyFromDict(event_data_attributes)

service = WindowsService.FromEventData(event_data, event_data_stream)
service = WindowsService.FromEventData(
service_event_data, event_data_stream)
self._service_collection.AddService(service)

def SetOutputFormat(self, output_format):
Expand Down

0 comments on commit 7cc2567

Please sign in to comment.