Agent: Rename SendAllAgentEventsToIsland -> AgentEventForwarder

This commit is contained in:
Shreya Malviya 2022-09-14 19:47:53 +05:30
parent 4eabf6e77b
commit 0775beda7a
2 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ from infection_monkey.post_breach.actions.use_signed_scripts import SignedScript
from infection_monkey.post_breach.actions.use_trap_command import TrapCommand from infection_monkey.post_breach.actions.use_trap_command import TrapCommand
from infection_monkey.post_breach.custom_pba import CustomPBA from infection_monkey.post_breach.custom_pba import CustomPBA
from infection_monkey.puppet.puppet import Puppet from infection_monkey.puppet.puppet import Puppet
from infection_monkey.send_all_events_to_island import SendAllAgentEventsToIsland from infection_monkey.send_all_events_to_island import AgentEventForwarder
from infection_monkey.system_singleton import SystemSingleton from infection_monkey.system_singleton import SystemSingleton
from infection_monkey.telemetry.attack.t1106_telem import T1106Telem from infection_monkey.telemetry.attack.t1106_telem import T1106Telem
from infection_monkey.telemetry.attack.t1107_telem import T1107Telem from infection_monkey.telemetry.attack.t1107_telem import T1107Telem
@ -259,7 +259,7 @@ class InfectionMonkey:
), ),
) )
event_queue.subscribe_all_events( event_queue.subscribe_all_events(
SendAllAgentEventsToIsland(server_address, agent_event_serializer_registry).send_event AgentEventForwarder(server_address, agent_event_serializer_registry).send_event
) )
@staticmethod @staticmethod

View File

@ -18,7 +18,7 @@ DEFAULT_TIME_PERIOD_SECONDS = 5
EVENTS_API_URL = "https://%s/api/events" EVENTS_API_URL = "https://%s/api/events"
class SendAllAgentEventsToIsland: class AgentEventForwarder:
""" """
Sends information about the events carried out by the Agent to the Island in batches Sends information about the events carried out by the Agent to the Island in batches
""" """