Skip to content
Snippets Groups Projects
Commit d0a60771 authored by Tiago M. Vieira's avatar Tiago M. Vieira Committed by Andrea Bolognani
Browse files

fix regex to check CN from server certificate

Currently when the script validates the PKI files and
the certificate 'Subject:' field contains RDNs after
the Common Name (CN), these values are also included,
creating a false result that the CN is not correct.

A small change to the sed regex fixes this issue, by
extracting only the value for CN and nothing else. The
regex is replaced with the exact same regex used to
extract the CN value from the client certificate.
parent e19dde1d
No related branches found
No related tags found
No related merge requests found
...@@ -255,7 +255,7 @@ then ...@@ -255,7 +255,7 @@ then
echo CA organization: $ORG echo CA organization: $ORG
echo Server organization: $S_ORG echo Server organization: $S_ORG
fi fi
S_HOST=`"$CERTOOL" -i --infile "$LIBVIRT/servercert.pem" | grep Subject: | sed 's+.*CN=\([a-zA-Z\. _-]*\)+\1+'` S_HOST=`"$CERTOOL" -i --infile "$LIBVIRT/servercert.pem" | grep Subject: | sed 's+.*CN=\(.[a-zA-Z \._-]*\).*+\1+'`
if test "$S_HOST" != "`hostname -s`" && test "$S_HOST" != "`hostname`" if test "$S_HOST" != "`hostname -s`" && test "$S_HOST" != "`hostname`"
then then
echo The server certificate does not seem to match the host name echo The server certificate does not seem to match the host name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment