cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3506
Views
10
Helpful
3
Replies

IETF X.509 certificate signature collision vulnerability

sbdladla1
Level 1
Level 1

Our security scan has pick up this vulnerability  IETF X.509 certificate signature collision vulnerability 

I am using SSL self sign certificate on Cisco ASA firewall.  I want to find out how can I fix this certificate vulnerability if I am not using CA 

1 Accepted Solution

Accepted Solutions

This typically relates to the usage of weak hashing mechanisms that are used for the signature.

Best way: Usa a cert of one of the public CAs. There are also CAs available that only charge a very small amount for that.

Alternative way: Generate a new self-signed certificate with openssl and use the hash-algorithm SHA256:

openssl req -x509 -sha256 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 720

View solution in original post

3 Replies 3

This typically relates to the usage of weak hashing mechanisms that are used for the signature.

Best way: Usa a cert of one of the public CAs. There are also CAs available that only charge a very small amount for that.

Alternative way: Generate a new self-signed certificate with openssl and use the hash-algorithm SHA256:

openssl req -x509 -sha256 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 720

I try to run the command,  but the ASA reject it, maybe I need to be in a subcommand, any help where must I run this command.

No, it's not on the ASA. You have to run it on a PC that has openssl installed. That is Linux or MacOS by default, or even Windows can install it (perhaps through the help of Cygwin).