mirror of
				https://github.com/drwetter/testssl.sh.git
				synced 2025-11-04 07:45:27 +01:00 
			
		
		
		
	Merge branch '2.9dev' into generate_html
Conflicts: testssl.sh
This commit is contained in:
		
							
								
								
									
										10
									
								
								testssl.sh
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								testssl.sh
									
									
									
									
									
								
							@@ -10442,7 +10442,7 @@ run_logjam() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
     # now the final test for common primes
 | 
					     # now the final test for common primes
 | 
				
			||||||
     if [[ -n "$key_bitstring" ]]; then
 | 
					     if [[ -n "$key_bitstring" ]]; then
 | 
				
			||||||
          dh_p="$($OPENSSL pkey -pubin -text -noout <<< "$key_bitstring" | awk '/prime:/,/generator:/' | tail -n +2 | head -n -1)"
 | 
					          dh_p="$($OPENSSL pkey -pubin -text -noout <<< "$key_bitstring" | awk '/prime:/,/generator:/' | egrep -v "prime|generator")"
 | 
				
			||||||
          dh_p="$(strip_spaces "$(colon_to_spaces "$(newline_to_spaces "$dh_p")")")"
 | 
					          dh_p="$(strip_spaces "$(colon_to_spaces "$(newline_to_spaces "$dh_p")")")"
 | 
				
			||||||
          [[ "${dh_p:0:2}" == "00" ]] && dh_p="${dh_p:2}"
 | 
					          [[ "${dh_p:0:2}" == "00" ]] && dh_p="${dh_p:2}"
 | 
				
			||||||
          len_dh_p="$((4*${#dh_p}))"
 | 
					          len_dh_p="$((4*${#dh_p}))"
 | 
				
			||||||
@@ -12416,7 +12416,7 @@ determine_service() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
display_rdns_etc() {
 | 
					display_rdns_etc() {
 | 
				
			||||||
     local ip
 | 
					     local ip further_ip_addrs=""
 | 
				
			||||||
     local nodeip="$(tr -d '[]' <<< $NODEIP)"     # for displaying IPv6 addresses we don't need []
 | 
					     local nodeip="$(tr -d '[]' <<< $NODEIP)"     # for displaying IPv6 addresses we don't need []
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -12430,9 +12430,10 @@ display_rdns_etc() {
 | 
				
			|||||||
               if [[ "$ip" == "$NODEIP" ]] || [[ "[$ip]" == "$NODEIP" ]]; then
 | 
					               if [[ "$ip" == "$NODEIP" ]] || [[ "[$ip]" == "$NODEIP" ]]; then
 | 
				
			||||||
                    continue
 | 
					                    continue
 | 
				
			||||||
               else
 | 
					               else
 | 
				
			||||||
                    out " $ip"
 | 
					                    further_ip_addrs+="$ip "
 | 
				
			||||||
               fi
 | 
					               fi
 | 
				
			||||||
          done
 | 
					          done
 | 
				
			||||||
 | 
					          out_row_aligned_max_width "$further_ip_addrs" "                         $CORRECT_SPACES" $TERM_WIDTH out
 | 
				
			||||||
          outln
 | 
					          outln
 | 
				
			||||||
     fi
 | 
					     fi
 | 
				
			||||||
     if "$LOCAL_A"; then
 | 
					     if "$LOCAL_A"; then
 | 
				
			||||||
@@ -12441,7 +12442,8 @@ display_rdns_etc() {
 | 
				
			|||||||
          outln " A record via           $CORRECT_SPACES supplied IP \"$CMDLINE_IP\""
 | 
					          outln " A record via           $CORRECT_SPACES supplied IP \"$CMDLINE_IP\""
 | 
				
			||||||
     fi
 | 
					     fi
 | 
				
			||||||
     if [[ -n "$rDNS" ]]; then
 | 
					     if [[ -n "$rDNS" ]]; then
 | 
				
			||||||
          out "$(printf " %-23s %s" "rDNS ($nodeip):" "$rDNS")"
 | 
					          out "$(printf " %-23s %s" "rDNS ($nodeip):")"
 | 
				
			||||||
 | 
					          out_row_aligned_max_width "$rDNS" "                         $CORRECT_SPACES" $TERM_WIDTH out
 | 
				
			||||||
     fi
 | 
					     fi
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user