From ae2d496ae1ba441b57b4135919d336c55486768b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20GASCOU=20=28Podalirius=29?= Date: Tue, 19 Mar 2024 13:19:58 +0100 Subject: [PATCH] Fixes #41 --- apachetomcatscanner/__main__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apachetomcatscanner/__main__.py b/apachetomcatscanner/__main__.py index 7694b6f..d79b307 100755 --- a/apachetomcatscanner/__main__.py +++ b/apachetomcatscanner/__main__.py @@ -37,6 +37,7 @@ def load_targets(options, config): auth_username=options.auth_user, auth_password=options.auth_password, auth_hashes=options.auth_hashes, + auth_key=None, use_ldaps=options.ldaps, __print=True ) @@ -51,6 +52,7 @@ def load_targets(options, config): auth_username=options.auth_user, auth_password=options.auth_password, auth_hashes=options.auth_hashes, + auth_key=None, use_ldaps=options.ldaps, __print=True ) @@ -65,6 +67,7 @@ def load_targets(options, config): auth_username=options.auth_user, auth_password=options.auth_password, auth_hashes=options.auth_hashes, + auth_key=None, use_ldaps=options.ldaps, __print=True )