Merge pull request #102 from blockomat2100/beta

Fix that prevented SSLscan from running.
This commit is contained in:
Tib3rius 2021-09-08 04:08:28 -04:00 committed by GitHub
commit 1f6d16ecf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 Report(Plugin): class Report(Plugin):