下面是SSLScan输出,它对SSLcerf衣版本2意味着什么?SSLv3和2不一样吗?
=======================================================================
Prefered Server Cipher(s):
SSLv3 256 bits AES256-SHA
TLSv1 256 bits AES256-SHA
SSL Certificate:
Version: 2
Serial Number: -4294967295
Signature Algorithm: sha1WithRSAEncryption
Issuer: /O=VMware Installer
Not valid before: Apr 18 09:21:53 2011 GMT
Not valid after: Oct 17 09:21:53 2022 GMT
Subject: /C=US/ST=California/L=Palo Alto/O=VMware, Inc/OU=VMware ESX Server Default Certificate/emailAddress=ssl-certificate...
Public Key Algorithm: rsaEncryption
RSA Public Key: (2048 bit)
Modulus (2048 bit):
****************************************...
****************************************...
Exponent: 65537 (0x10001)
X509v3 Extensions:
X509v3 Basic Constraints:
CA:FALSE
X509v3 Key Usage:
Digital Signature, Key Encipherment, Data Encipherment
X509v3 Extended Key Usage:
TLS Web Server Authentication, TLS Web Client Authentication
X509v3 Subject Alternative Name:
DNS:localhost.test.com.sg
Verify Certificate:
unable to get local issuer certificate 发布于 2013-11-25 08:54:58
如果我正确地解释了你的答案,你指的是输出的这一部分:
SSL Certificate:
Version: 2此版本字符串与SSL版本不相同。它显示了使用了哪个版本的X.509。SSL证书使用X.509。X.509有三个不同的版本。证书必须声明它使用的版本。因此,您将在证书中找到这个Version:字段。最近的版本是3,这是最常用的版本。X.509版本3定义扩展。例如,它们用于证书链。有关格式的进一步解释,请参见X.509上的维基百科页面。
https://security.stackexchange.com/questions/45996
复制相似问题