We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 156aac1 commit a8adcdaCopy full SHA for a8adcda
modules/auxiliary/scanner/http/f5_bigip_virtual_server.rb
@@ -73,13 +73,18 @@ def run_host(ip)
73
end
74
75
ports.each do |port|
76
- if bigip_http?(ip, port, false)
77
- print_good("#{ip}:#{port} - BigIP HTTP virtual server found")
78
- next
+
+ unless port == 443 # Skip http check for 443
+ if bigip_http?(ip, port, false)
79
+ print_good("#{ip}:#{port} - BigIP HTTP virtual server found")
80
+ next
81
+ end
82
83
- if bigip_http?(ip, port, true)
- print_good("#{ip}:#{port} - BigIP HTTPS virtual server found")
84
+ unless port == 80 # Skip https check for 80
85
+ if bigip_http?(ip, port, true)
86
+ print_good("#{ip}:#{port} - BigIP HTTPS virtual server found")
87
88
89
90
0 commit comments