mirror of
				https://github.com/drwetter/testssl.sh.git
				synced 2025-11-04 09:31:08 +01:00 
			
		
		
		
	run_{rp,application}_banner(): Fix unassigned variables.
This commit fixes the following two instances of referenced but not assigned
variables:
```
In testssl.sh line 1159:
               rp_banners="$rp_bannersline"
                           ^-- SC2154: rp_bannersline is referenced but not assigned.
In testssl.sh line 1193:
               app_banners="$app_bannersline"
                            ^-- SC2154: app_bannersline is referenced but not assigned.
```
Found by ShellCheck.
			
			
This commit is contained in:
		
							parent
							
								
									10b3e7db55
								
							
						
					
					
						commit
						beae0ce195
					
				@ -1156,7 +1156,7 @@ run_rp_banner() {
 | 
			
		||||
                    first=false
 | 
			
		||||
               fi
 | 
			
		||||
               emphasize_stuff_in_headers "$line"
 | 
			
		||||
               rp_banners="$rp_bannersline"
 | 
			
		||||
               rp_banners="${rp_banners}${line}"
 | 
			
		||||
          done < $TMPFILE
 | 
			
		||||
          fileout "rp_header" "INFO" "Reverse proxy banner(s) found: $rp_banners"
 | 
			
		||||
     fi
 | 
			
		||||
@ -1190,7 +1190,7 @@ run_application_banner() {
 | 
			
		||||
                    first=false
 | 
			
		||||
               fi
 | 
			
		||||
               emphasize_stuff_in_headers "$line"
 | 
			
		||||
               app_banners="$app_bannersline"
 | 
			
		||||
               app_banners="${app_banners}${line}"
 | 
			
		||||
          done
 | 
			
		||||
          fileout "app_banner" "WARN" "Application Banners found: $app_banners"
 | 
			
		||||
     fi
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user