CWE-599Missing Validation of OpenSSL Certificate

PUBLISHEDweakness record
released 2006-12-15 · last modified 2026-04-30
CWE-599 - Missing Validation of OpenSSL Certificate - Diagram

Metadata

CWE ID:
CWE-599
摘要:
Variant
结构:
Simple
状态:
Incomplete
发布日期:
2006-12-15
更新日期:
2026-04-30

名称

Missing Validation of OpenSSL Certificate

描述

The product uses OpenSSL and trusts or uses a certificate without using the SSL_get_verify_result() function to ensure that the certificate satisfies all necessary security requirements.

常见后果

范围:
Confidentiality
影响:
Read Application Data
注释:
The data read may not be properly secured - it might be viewed by an attacker.
范围:
Access Control
影响:
Bypass Protection Mechanism, Gain Privileges or Assume Identity
注释:
Trust afforded to the system in question may allow for spoofing or redirection attacks.
范围:
Access Control
影响:
Gain Privileges or Assume Identity
注释:
If the certificate is not checked, it may be possible for a redirection or spoofing attack to allow a malicious host with a valid certificate to provide data under the guise of a trusted host. While the attacker in question may have a valid certificate, it may simply be a valid certificate for a different site. This could allow an attacker to use an invalid certificate to claim to be a trusted host, use expired certificates, or conduct other attacks that could be detected if the certificate is properly validated. In order to ensure data integrity, we must check that the certificate is valid, and that it pertains to the site we wish to access.

相关 CWE