From 6f4c6717255d8b553cb6b5f1f09c7d989505d385 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Mon, 15 Nov 2021 13:09:49 -0500 Subject: [PATCH] Agent: Remove unused NOP _banner_match() from HTTPFinder --- monkey/infection_monkey/network/httpfinger.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/monkey/infection_monkey/network/httpfinger.py b/monkey/infection_monkey/network/httpfinger.py index 3939fc7c6..99e9deaab 100644 --- a/monkey/infection_monkey/network/httpfinger.py +++ b/monkey/infection_monkey/network/httpfinger.py @@ -17,10 +17,6 @@ class HTTPFinger(HostFinger): self._config = infection_monkey.config.WormConfiguration self.HTTP = [(port, str(port)) for port in self._config.HTTP_PORTS] - @staticmethod - def _banner_match(service, host, banner): - pass - def get_host_fingerprint(self, host): from contextlib import closing