make plugins run that uses match_all_service_names (e.g. sslscan)

This commit is contained in:
blockomat2100 2021-09-03 13:07:22 +02:00
parent 433776a98f
commit 53052201d9
1 changed files with 2 additions and 0 deletions

View File

@ -190,6 +190,8 @@ class ServiceScan(Plugin):
@final @final
def match_all_service_names(self, boolean): def match_all_service_names(self, boolean):
self.match_all_service_names_boolean = 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): class AutoRecon(object):