You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will fill the renew file buffer, so that further renewal of tct-c1 will require that the renewed certificate for tct-c1 is revoked. This requires use of command revoke-renewed not revoke.
If command revoke-renewed is used now then the correct, old renewed certificate is revoked.
If command revoke is used now then the incorrect, new issued certificate is revoked.
This is caused by command revoke not being specific about the target file.
Command revoke must be changed to revoke-issued, to ensure that the correct certificate is selected.
How to do this effectively ?
The text was updated successfully, but these errors were encountered:
To avoid the unnecessary file checks needed to guard command revoke, I propose this solution:
For batch mode, command revoke will behave exactly as before and all conflicting file checks will be ignored. Using revoke in batch mode suggest that the user has selected the correct command.
For non-batch mode, command revoke will error out. The error message will instruct the user to select the correct revoke-* command.
There exists in
easyrsa
commandrevoke
, the unfortunate possibility to revoke an incorrect certificate, far too easily.To reproduce:
This will fill the
renew
file buffer, so that further renewal oftct-c1
will require that the renewed certificate fortct-c1
is revoked. This requires use of commandrevoke-renewed
notrevoke
.If command
revoke-renewed
is used now then the correct, old renewed certificate is revoked.If command
revoke
is used now then the incorrect, new issued certificate is revoked.This is caused by command
revoke
not being specific about the target file.Command
revoke
must be changed torevoke-issued
, to ensure that the correct certificate is selected.How to do this effectively ?
The text was updated successfully, but these errors were encountered: