From 964c438480772b425b7a7dfdaaa239901fe6cc95 Mon Sep 17 00:00:00 2001 From: Tib3rius <48113936+Tib3rius@users.noreply.github.com> Date: Mon, 30 Aug 2021 13:46:26 -0400 Subject: [PATCH] Update http.py Fixed pattern. --- plugins/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/http.py b/plugins/http.py index 97b5b89..2abad5e 100644 --- a/plugins/http.py +++ b/plugins/http.py @@ -48,7 +48,7 @@ class Curl(ServiceScan): self.add_option("path", default="/", help="The path on the web server to curl. Default: %(default)s") self.match_service_name('^http') self.match_service_name('^nacn_http$', negative_match=True) - self.add_pattern('(?i)Powered by [^\n]+') + self.add_pattern('(?i)powered[ -]by[^\n]+') async def run(self, service): if service.protocol == 'tcp':