From 53052201d94858e399710e791d6c2f0cb63ab84d Mon Sep 17 00:00:00 2001 From: blockomat2100 Date: Fri, 3 Sep 2021 13:07:22 +0200 Subject: [PATCH] make plugins run that uses match_all_service_names (e.g. sslscan) --- autorecon/plugins.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autorecon/plugins.py b/autorecon/plugins.py index 666bb94..8d5c518 100644 --- a/autorecon/plugins.py +++ b/autorecon/plugins.py @@ -190,6 +190,8 @@ class ServiceScan(Plugin): @final def match_all_service_names(self, boolean): self.match_all_service_names_boolean = boolean + # we need at least one service name to enter loop in autorecon and make plugin finally run + self.match_service_name('.*') class AutoRecon(object):