Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
devops-tools
ssl-certificate-utils
Commits
50fe937c
Commit
50fe937c
authored
Aug 22, 2018
by
Xueshan Feng
Browse files
Added host validation.
parent
25da2a28
Changes
1
Hide whitespace changes
Inline
Side-by-side
check-cert.sh
View file @
50fe937c
#!/bin/sh
fqdn
=
$1
port
=
${
2
:-
443
}
[
-x
$fqdn
]
&&
echo
"FQDN of the site is required."
&&
exit
1
echo
""
| openssl s_client
-servername
$fqdn
-connect
$fqdn
:443 2>/dev/null | openssl x509
-text
!
host
$fqdn
>
/dev/null
&&
echo
"
$fqdn
is not a vaild host."
&&
exit
1
echo
""
| openssl s_client
-servername
$fqdn
-connect
$fqdn
:
$port
2>/dev/null | openssl x509
-text
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment