Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1020 CNY

100%

CWE-295 (证书验证不恰当) — Vulnerability Class 487

487 vulnerabilities classified as CWE-295 (证书验证不恰当). AI Chinese analysis included.

CWE-295 represents a critical cryptographic weakness where software fails to properly validate digital certificates, undermining the integrity of secure communications. Attackers typically exploit this flaw by performing man-in-the-middle attacks, intercepting traffic between a client and server. By presenting a forged or invalid certificate, adversaries can decrypt sensitive data, inject malicious content, or impersonate legitimate services without detection. This vulnerability is particularly dangerous in applications relying on Transport Layer Security for confidentiality. To prevent such breaches, developers must implement rigorous certificate validation mechanisms, ensuring that the presented certificate is signed by a trusted Certificate Authority and matches the expected hostname. Additionally, enabling Certificate Pinning and strictly rejecting expired or revoked certificates further hardens the application against interception attempts, thereby preserving the authenticity and security of the data exchange.

MITRE CWE Description
The product does not validate, or incorrectly validates, a certificate.
Common Consequences (1)
Integrity, AuthenticationBypass Protection Mechanism, Gain Privileges or Assume Identity
When a certificate is invalid or malicious, it might allow an attacker to spoof a trusted entity by interfering in the communication path between the host and client. The product might connect to a malicious host while believing it is a trusted host, or the product might be deceived into accepting s…
Mitigations (2)
Architecture and Design, ImplementationCertificates should be carefully managed and checked to assure that data are encrypted with the intended owner's public key.
ImplementationIf certificate pinning is being used, ensure that all relevant properties of the certificate are fully validated before the certificate is pinned, including the hostname.
Examples (2)
This code checks the certificate of a connected peer.
if ((cert = SSL_get_peer_certificate(ssl)) && host) foo=SSL_get_verify_result(ssl); if ((X509_V_OK==foo) || X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN==foo)) // certificate looks good, host can be trusted
Bad · C
The following OpenSSL code obtains a certificate and verifies it.
cert = SSL_get_peer_certificate(ssl); if (cert && (SSL_get_verify_result(ssl)==X509_V_OK)) { // do secret things }
Bad · C
CVE IDTitleCVSSSeverityPublished
CVE-2026-1778 TLS disabled by default in select aws/sagemaker-python-sdk configurations — SageMaker Python SDK 5.9 Medium2026-02-02
CVE-2026-1530 Fog-kubevirt: fog-kubevirt: man-in-the-middle vulnerability due to disabled certificate validation — Red Hat Satellite 6.16 for RHEL 8 8.1 High2026-02-02
CVE-2026-1531 Foreman-kubevirt: foreman_kubevirt: man-in-the-middle due to insecure default ssl verification — Red Hat Satellite 6.16 for RHEL 8 8.1 High2026-02-02
CVE-2025-53869 Brother Industries Brother MFPs 信任管理问题漏洞 — Multiple MFPs 3.7 Low2026-01-29
CVE-2025-32057 Misconfigured SSL/TLS communication of Redbend service for Infotainment ECU — Infotainment system ECU 6.5 Medium2026-01-22
CVE-2025-27377 Missing Validation of Self-Signed Certificates in Altium Designer Allows Man-in-the-Middle Attacks — Altium Designer 5.3 Medium2026-01-22
CVE-2025-11043 Improper Server Certificate Validation in Automation Studio — B&R Automation Studio 7.4 High2026-01-19
CVE-2026-22250 wlc can skip SSL verification — wlc 2.5 Low2026-01-12
CVE-2025-71063 Errands 信任管理问题漏洞 — Errands 8.2 High2026-01-12
CVE-2025-66001 NeuVector OpenID Connect is vulnerable to man-in-the-middle (MITM) — neuvector 8.8 High2026-01-08
CVE-2025-69412 messagelib 信任管理问题漏洞 — messagelib 3.4 Low2025-12-31
CVE-2025-52598 Insufficient certificate validation — QNV-C8012 9.8 -2025-12-26
CVE-2025-13052 An improper certificates validation vulnerability was found in the Notification settings of ADM — ADM 5.3AIMediumAI2025-12-12
CVE-2025-40801 Siemens多款产品 信任管理问题漏洞 — COMOS V10.6 8.1 High2025-12-09
CVE-2025-40800 Siemens多款产品 信任管理问题漏洞 — COMOS V10.6 7.4 High2025-12-09
CVE-2025-66491 Traefik has Inverted TLS Verification Logic in its ingress-nginx Provider — traefik 5.9 Medium2025-12-09
CVE-2025-12893 Improper Certificate Validation May Allow Successful TLS Handshaking Despite Invalid Extended Key Usage Fields in MongoDB Server — MongoDB Server 4.2 Medium2025-11-25
CVE-2025-44018 GL-Inet GL-AXT1800 安全漏洞 — GL-AXT1800 8.3 High2025-11-24
CVE-2025-60022 KDDI デジラアプリ App for iOS 信任管理问题漏洞 — 'デジラアプリ' App for iOS 7.4AIHighAI2025-11-17
CVE-2025-65083 GoSign Desktop 信任管理问题漏洞 — GoSign Desktop 3.2 Low2025-11-17
CVE-2025-30669 Zoom Workplace Clients - Improper Certificate Validation — Zoom Workplace Clients 4.8 Medium2025-11-13
CVE-2025-12047 Lenovo Scanner Pro 安全漏洞 — Scanner Pro 5.3 Medium2025-11-12
CVE-2025-10495 Lenovo多款产品 安全漏洞 — App Store 7.5 High2025-11-12
CVE-2025-40744 Siemens Solid Edge SE2025 信任管理问题漏洞 — Solid Edge SE2025 7.5 High2025-11-11
CVE-2025-12943 Improper certificate validation in firmware update logic in NETGEAR RAX30 and RAXE300 — RAX30 9.8 -2025-11-11
CVE-2025-64685 JetBrains YouTrack 信任管理问题漏洞 — YouTrack 8.1 High2025-11-10
CVE-2025-54470 NeuVector telemetry sender is vulnerable to MITM and DoS — neuvector 8.6 High2025-10-30
CVE-2025-11619 Devolutions Server 安全漏洞 — Devolutions Server 5.9AIMediumAI2025-10-15
CVE-2025-62375 go-witness Improper Verification of AWS EC2 Identity Documents — go-witness 9.1 -2025-10-15
CVE-2025-62371 OpenSearch Data Prepper plugins trusts all SSL certificates by default — data-prepper 7.4 High2025-10-15

Vulnerabilities classified as CWE-295 (证书验证不恰当) represent 487 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.