We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sign-req
--cop-ext
--force-safe-ssl
EasyRSA v3.2.0
v3.2.0
To reproduce: Generate a request with a SAN:
./easyrsa --verbose --nopass --san=DNS:s04.tct.org --san=IP:10.0.0.4 gen-req s04
Sign the request using --copy-ext, to copy the SAN; and --force-safe-ssl, to force here-doc expansion of openssl-easyrsa.cnf:
--copy-ext
here-doc
openssl-easyrsa.cnf
./easyrsa --verbose --nopass --copy-ext --force-safe-ssl sign-req server s04
The forced here-doc expansion over-writes the SSL config in use. This removes "copy_extensions = copy" which has been previously inserted.
"copy_extensions = copy"
The signed certificate does not have the expected SAN.
Link: #1158
The text was updated successfully, but these errors were encountered:
TinCanTech
Successfully merging a pull request may close this issue.
EasyRSA
v3.2.0
To reproduce:
Generate a request with a SAN:
./easyrsa --verbose --nopass --san=DNS:s04.tct.org --san=IP:10.0.0.4 gen-req s04
Sign the request using
--copy-ext
, to copy the SAN; and--force-safe-ssl
, to forcehere-doc
expansion ofopenssl-easyrsa.cnf
:./easyrsa --verbose --nopass --copy-ext --force-safe-ssl sign-req server s04
The forced
here-doc
expansion over-writes the SSL config in use. This removes"copy_extensions = copy"
which has been previously inserted.The signed certificate does not have the expected SAN.
Link: #1158
The text was updated successfully, but these errors were encountered: