Agent: Fix typo in monkey.py (repoitory -> repository)

This commit is contained in:
Mike Salvatore 2022-03-02 09:13:24 -05:00
parent 145078839d
commit f270a50c00
1 changed files with 2 additions and 2 deletions

View File

@ -200,10 +200,10 @@ class InfectionMonkey:
puppet.load_plugin("smb", SMBFingerprinter(), PluginType.FINGERPRINTER)
puppet.load_plugin("ssh", SSHFingerprinter(), PluginType.FINGERPRINTER)
agent_repoitory = CachingAgentRepository(
agent_repository = CachingAgentRepository(
f"https://{self._default_server}", ControlClient.proxies
)
exploit_wrapper = ExploiterWrapper(self.telemetry_messenger, agent_repoitory)
exploit_wrapper = ExploiterWrapper(self.telemetry_messenger, agent_repository)
puppet.load_plugin(
"SSHExploiter",