File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/auxiliary/scanner/http Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,13 +57,13 @@ def run_host(ip)
57
57
caissuer = ( /CA Issuers - URI:(.*?),/i ) . match ( cert . extensions . to_s )
58
58
59
59
if caissuer . to_s . empty?
60
- print_good ( "Certificate contains no CA Issuers extension... possible self signed certificate" )
60
+ print_good ( "#{ ip } : #{ rport } Certificate contains no CA Issuers extension... possible self signed certificate" )
61
61
else
62
62
print_status ( "#{ ip } :#{ rport } " +caissuer . to_s [ 0 ..-2 ] )
63
63
end
64
64
65
65
if cert . issuer . to_s == cert . subject . to_s
66
- print_good ( "Certificate Subject and Issuer match... possible self signed certificate" )
66
+ print_good ( "#{ ip } : #{ rport } Certificate Subject and Issuer match... possible self signed certificate" )
67
67
end
68
68
69
69
alg = cert . signature_algorithm
You can’t perform that action at this time.
0 commit comments