mirror of
				https://github.com/drwetter/testssl.sh.git
				synced 2025-10-31 13:55:25 +01:00 
			
		
		
		
	run_protocols() bug fix
Since the test for TLS 1.2 in `run_protocols()` now uses `tls_sockets()` whenever `$ssl_native` is `true` (i.e., there is no longer a requirement for `$EXPERIMENTAL` to be true as well), the `$EXPERIMENTAL` flag should no longer be checked if the return value is 1.
This commit is contained in:
		| @@ -4506,7 +4506,7 @@ run_protocols() { | ||||
|                ;;                                  # GCM cipher in TLS 1.2: very good! | ||||
|           1) | ||||
|                pr_svrty_mediumln "not offered" | ||||
|                if ! "$using_sockets" || ! "$EXPERIMENTAL" || [[ -z $latest_supported ]]; then | ||||
|                if ! "$using_sockets" || [[ -z $latest_supported ]]; then | ||||
|                     fileout "tls1_2" "MEDIUM" "TLSv1.2 is not offered" # no GCM, penalty | ||||
|                else | ||||
|                     pr_svrty_criticalln " -- connection failed rather than downgrading to $latest_supported_string" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 David Cooper
					David Cooper