From d8c319221fe3891678511ef10870c8e5535c8dc2 Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Thu, 27 Feb 2020 17:02:15 -0500 Subject: [PATCH] Removed unnecessary warning about SSLv2 not being supported by OpenSSL. --- sslscan.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sslscan.c b/sslscan.c index e55de20..b4e5797 100644 --- a/sslscan.c +++ b/sslscan.c @@ -4058,12 +4058,8 @@ int main(int argc, char *argv[]) case mode_help: // Program version banner... printf("%s%s%s\n", COL_BLUE, program_banner, RESET); - printf("%s\t\t%s\n\t\t%s\n%s", COL_BLUE, VERSION, + printf("%s\t\t%s\n\t\t%s\n%s\n\n", COL_BLUE, VERSION, SSLeay_version(SSLEAY_VERSION), RESET); -#ifdef OPENSSL_NO_SSL2 - printf("%sOpenSSL version does not support SSLv2%s\n", COL_RED, RESET); - printf("%sSSLv2 ciphers will not be detected%s\n\n", COL_RED, RESET); -#endif printf("%sCommand:%s\n", COL_BLUE, RESET); printf(" %s%s [Options] [host:port | host]%s\n\n", COL_GREEN, argv[0], RESET); printf("%sOptions:%s\n", COL_BLUE, RESET);