Agent: Load the HTTPFingerprinter using the new name, "http"

This commit is contained in:
Mike Salvatore 2022-02-07 13:05:10 -05:00
parent 207a65e2a9
commit 479627c71e
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ class InfectionMonkey:
@staticmethod @staticmethod
def _build_puppet() -> IPuppet: def _build_puppet() -> IPuppet:
puppet = Puppet() puppet = Puppet()
puppet.load_plugin("HTTPFinger", HTTPFingerprinter(), PluginType.FINGERPRINTER) puppet.load_plugin("http", HTTPFingerprinter(), PluginType.FINGERPRINTER)
puppet.load_plugin("ransomware", RansomwarePayload(), PluginType.PAYLOAD) puppet.load_plugin("ransomware", RansomwarePayload(), PluginType.PAYLOAD)
return puppet return puppet