@@ -3605,7 +3605,7 @@ int main(int argc, char *argv[])
36053605 sslOptions .compression = true;
36063606 sslOptions .heartbleed = true;
36073607 sslOptions .groups = true;
3608- sslOptions .signature_algorithms = true ;
3608+ sslOptions .signature_algorithms = false ;
36093609 sslOptions .starttls_ftp = false;
36103610 sslOptions .starttls_imap = false;
36113611 sslOptions .starttls_irc = false;
@@ -3782,13 +3782,13 @@ int main(int argc, char *argv[])
37823782 else if (strcmp ("--no-heartbleed" , argv [argLoop ]) == 0 )
37833783 options -> heartbleed = false;
37843784
3785- // Should we check for key exchange groups?
3786- else if (strcmp ("--no-groups" , argv [argLoop ]) == 0 )
3785+ // Should we check for key exchange groups?
3786+ else if (strcmp ("--no-groups" , argv [argLoop ]) == 0 )
37873787 options -> groups = false;
37883788
3789- // Should we check for signature algorithms?
3790- else if (strcmp ("--no -sigs" , argv [argLoop ]) == 0 )
3791- options -> signature_algorithms = false ;
3789+ // Should we check for signature algorithms?
3790+ else if (strcmp ("--show -sigs" , argv [argLoop ]) == 0 )
3791+ options -> signature_algorithms = true ;
37923792
37933793 // StartTLS... FTP
37943794 else if (strcmp ("--starttls-ftp" , argv [argLoop ]) == 0 )
@@ -4080,7 +4080,7 @@ int main(int argc, char *argv[])
40804080 printf (" %s--no-groups%s Do not enumerate key exchange groups\n" , COL_GREEN , RESET );
40814081 printf (" %s--no-heartbleed%s Do not check for OpenSSL Heartbleed (CVE-2014-0160)\n" , COL_GREEN , RESET );
40824082 printf (" %s--no-renegotiation%s Do not check for TLS renegotiation\n" , COL_GREEN , RESET );
4083- printf (" %s--no -sigs%s Do not enumerate signature algorithms\n" , COL_GREEN , RESET );
4083+ printf (" %s--show -sigs%s Enumerate signature algorithms\n" , COL_GREEN , RESET );
40844084 printf ("\n" );
40854085 printf (" %s--starttls-ftp%s STARTTLS setup for FTP\n" , COL_GREEN , RESET );
40864086 printf (" %s--starttls-imap%s STARTTLS setup for IMAP\n" , COL_GREEN , RESET );
0 commit comments