Skip to content

Commit

Permalink
Merge pull request #195 from jtesta/removesslv2warning
Browse files Browse the repository at this point in the history
Removed unnecessary warning about SSLv2 not being supported by OpenSSL
  • Loading branch information
rbsec authored Feb 29, 2020
2 parents 7abdd8f + d8c3192 commit 9cd7d61
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions sslscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -4053,12 +4053,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);
Expand Down

0 comments on commit 9cd7d61

Please sign in to comment.