CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-4428

CVE-2026-4428: Improper Check for Certificate Revocation in AWS-LC

Alon Barad
Alon Barad
Software Engineer

Mar 19, 2026·7 min read·56 visits

Executive Summary (TL;DR)

A logic error in AWS-LC's CRL validation allows revoked certificates using partitioned CRLs to bypass security checks.

AWS-LC and AWS-LC-FIPS contain a logic error in the validation of X.509 Certificate Revocation Lists (CRLs). When partitioned CRLs with Issuing Distribution Point (IDP) extensions are used, a bug in the distribution point scope evaluation causes the CRL to be improperly rejected. This failure allows revoked certificates to bypass revocation checks and establish trusted sessions.

Vulnerability Overview

AWS-LC provides cryptographic functions, including X.509 certificate validation for applications operating within the AWS ecosystem. When applications explicitly enable certificate revocation list (CRL) checking via the X509_V_FLAG_CRL_CHECK flag, the library parses and evaluates the provided CRLs against the active certificate chain. CVE-2026-4428 manifests as a logic error during this validation phase, specifically when handling partitioned CRLs.

Partitioned CRLs distribute revocation data across multiple lists to reduce file size and bandwidth consumption during validation. These specialized lists employ an Issuing Distribution Point (IDP) extension to define the specific subset of certificates they cover. The vulnerability occurs because AWS-LC incorrectly evaluates the scope of these IDPs, causing valid partitioned CRLs to be erroneously rejected as out of scope.

As a result, the validation routine concludes that no relevant revocation data exists for the evaluated certificate. The library subsequently permits the TLS handshake or certificate acceptance to proceed, treating the revoked certificate as entirely valid. This structural failure in the validation logic creates a direct path for attackers to utilize compromised cryptographic material against affected systems.

Root Cause Analysis

The root cause resides within the crl_crldp_check() function located in crypto/x509/x509_vfy.c. This function is responsible for determining whether a specific CRL contains revocation data applicable to the certificate currently under validation. The logic evaluates the DIST_POINT objects found within the certificate's CRL Distribution Points extension against the CRL's IDP extension.

The implementation contained a flawed conditional statement that mishandled the structural requirements defined in RFC 5280. The standard dictates that if a distribution point specifies reasons or CRLissuer fields, the validation library must apply special handling logic. The vulnerable code utilized a logical AND (&&) operator instead of a logical OR (||) operator when checking for the presence of these fields.

This operator error caused the special handling branch to execute only if both fields were present simultaneously. Furthermore, the logic responsible for executing the core URI matching routine, idp_check_dp(), was nested improperly inside this flawed conditional block. Consequently, standard distribution points containing only a URI completely bypassed the matching routine when evaluated against a CRL containing an IDP extension.

Code Analysis

The exact nature of the vulnerability is evident when examining the specific logic flaw in the crl_crldp_check() function. The pre-patch implementation incorrectly grouped the evaluation of unsupported distribution point fields with the execution of the primary URI matching function. This structural mistake prevented the proper evaluation of standard distribution points.

// Pre-fix logic in crl_crldp_check
if (dp->reasons != NULL && dp->CRLissuer != NULL &&
    (!crl->idp || idp_check_dp(dp->distpoint, crl->idp->distpoint))) {
  return 1;
}

In the vulnerable snippet above, the use of && requires both reasons and CRLissuer to be non-null for the condition to proceed to the idp_check_dp evaluation. Because most certificates omit these fields, prioritizing only a URI, the condition evaluates to false immediately. The function then falls back to default logic that ultimately rejects the CRL as out of scope.

The patch applied in commit 47389586f8aa77c83245173793f4d44ed1d6c3a8 resolves this by decoupling the field checks from the URI matching.

// Fixed logic in crl_crldp_check (Commit 47389586f8aa77c83245173793f4d44ed1d6c3a8)
if (dp->reasons != NULL || dp->CRLissuer != NULL) {
  continue; // Correctly skip DPs that AWS-LC doesn't support in this context
}
 
// RFC 5280 Section 6.3.3 step b.2
if (!crl->idp || idp_check_dp(dp->distpoint, crl->idp->distpoint)){
  return 1; // Properly match clean DPs against the CRL's IDP
}

The corrected code utilizes a logical OR (||) to correctly identify and skip distribution points requiring unsupported features via the continue statement. The idp_check_dp() function is then called unconditionally for all standard distribution points, ensuring proper scope validation against the CRL's IDP extension.

Exploitation and Attack Vector

Exploitation of CVE-2026-4428 requires an attacker to possess a valid certificate that has been formally revoked by the issuing Certificate Authority (CA). The attacker must possess the corresponding private key to complete the cryptographic proofs required during a TLS handshake or authentication protocol. The target system must be actively utilizing a vulnerable version of AWS-LC to perform X.509 certificate validation.

The victim application must be configured to enforce revocation checking by explicitly setting the X509_V_FLAG_CRL_CHECK flag. Additionally, the CA responsible for the attacker's certificate must utilize partitioned CRLs featuring the Issuing Distribution Point extension. If the CA issues standard, complete CRLs without this extension, the vulnerable code path is not triggered, and the revocation is processed correctly.

When the victim system connects to the attacker or processes the attacker's payload, AWS-LC attempts to validate the certificate chain. The library fetches the partitioned CRL, but the flawed logic in crl_crldp_check() incorrectly marks the CRL as out of scope. The validation routine completes without enforcing the revocation, and the application grants the attacker trusted access.

Impact Assessment

The primary impact of CVE-2026-4428 is the complete bypass of certificate revocation controls under specific configuration states. This failure permits an adversary to utilize compromised, stolen, or otherwise invalidated cryptographic identities. The vulnerability fundamentally undermines the trust model established by the Public Key Infrastructure (PKI) for the affected application.

The CVSS v3.1 base score of 7.4 reflects the high severity of the confidentiality and integrity impacts. An attacker successfully exploiting this flaw can establish an Adversary in the Middle (AitM) position, intercepting sensitive data, or bypass client-certificate authentication mechanisms. The vulnerability scores High for Attack Complexity (AC:H) due to the strict prerequisites regarding the CA's CRL configuration and the victim's application flags.

Systems that do not explicitly enable CRL checking, or those interacting with CAs that issue monolithic CRLs, are not exposed to this vulnerability. However, for organizations operating in environments where partitioned CRLs are standard, such as specific government or high-security enterprise PKIs, the risk of unauthorized access via revoked material is substantial.

Remediation and Mitigation Guidance

The definitive remediation for CVE-2026-4428 is upgrading the AWS-LC library to version 1.71.0 or later. For environments utilizing the FIPS-validated branch, administrators must deploy AWS-LC-FIPS version 3.3.0 or later. These updates contain the logic corrections required to properly evaluate partitioned CRLs and enforce revocation status.

> [!NOTE] > Recompilation of statically linked applications is required to apply this fix. Applications dynamically linking to the library must be restarted after the shared objects are updated.

Organizations unable to immediately apply the patch can implement a temporary workaround at the CA level, provided they control the PKI infrastructure. Reconfiguring the Certificate Authority to issue complete, non-partitioned CRLs without the Issuing Distribution Point extension prevents the vulnerable code path from executing. This configuration ensures that AWS-LC processes the revocation data using standard validation logic.

Development teams should audit their applications to verify whether the X509_V_FLAG_CRL_CHECK flag is actively utilized. Applications that do not enable this flag are unaffected by this specific vulnerability, though operating without revocation checking presents its own separate security risks. Network administrators should also review TLS termination endpoints to ensure they are not inadvertently relying on vulnerable builds of AWS-LC.

Official Patches

AWSAWS Security Bulletin 2026-010-AWS
AWSAWS-LC Release v1.71.0

Fix Analysis (1)

Technical Appendix

CVSS Score
7.4/ 10
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N

Affected Systems

AWS-LCAWS-LC-FIPSApplications utilizing AWS-LC for X.509 validation

Affected Versions Detail

Product
Affected Versions
Fixed Version
AWS-LC
AWS
1.24.0 to < 1.71.01.71.0
AWS-LC-FIPS
AWS
3.0.0 to < 3.3.03.3.0
AttributeDetail
CWE IDCWE-299
Attack VectorNetwork
CVSS Base Score7.4
ImpactHigh Confidentiality, High Integrity
Exploit StatusProof of Concept
KEV StatusNot Listed

MITRE ATT&CK Mapping

T1557Adversary-in-the-Middle
Credential Access, Collection
CWE-299
Improper Check for Certificate Revocation

The application does not check, or incorrectly checks, the revocation status of a certificate.

Vulnerability Timeline

Fixes for related issues merged into AWS-LC repository
2026-03-11
CVE-2026-4428 officially published
2026-03-19
AWS-LC version 1.71.0 released containing the fix
2026-03-19
AWS Security Bulletin 2026-010-AWS published
2026-03-19

References & Sources

  • [1]AWS Security Bulletin 2026-010-AWS
  • [2]AWS-LC Release v1.71.0
  • [3]CVE-2026-4428 Record

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•about 1 hour ago•CVE-2026-71308
8.1

CVE-2026-71308: Missing Authorization and Lifecycle Hijacking in Netflix Lemur

Netflix Lemur before 1.9.3 contains a missing authorization vulnerability (CWE-862, CWE-639) when handling certificate creation, upload, or modification. Authenticated non-read-only users can manipulate the replaces parameter to silence expiration notifications and hijack certificate rotation tasks for arbitrary targets, leading to unauthorized TLS certificate deployment and traffic interception.

Alon Barad
Alon Barad
2 views•7 min read
•about 2 hours ago•CVE-2026-71317
6.5

CVE-2026-71317: Missing Authorization in Netflix Lemur Allows Unauthorized Subordinate CA Creation

CVE-2026-71317 is a critical Broken Object-Level Authorization (BOLA) / Missing Authorization vulnerability in Netflix Lemur versions prior to 1.9.3. When the self-service authority creation option is enabled (ADMIN_ONLY_AUTHORITY_CREATION = False), Lemur allows authenticated non-read-only users to request the creation of a subordinate Certificate Authority (sub-CA) chained to any internal parent authority, even if the requesting user lacks administrative or usage permissions over that parent CA. This allows attackers to generate subordinate CAs signed by trusted root certificates, exposing private keys and compromising the organizational PKI trust chain.

Alon Barad
Alon Barad
3 views•7 min read
•about 3 hours ago•CVE-2026-71322
4.3

CVE-2026-71322: Missing Authorization Check in Netflix Lemur Certificate Export

Netflix Lemur, a TLS/SSL certificate management framework, contains a missing authorization check in its certificate export endpoint. Prior to version 1.9.3, the validation logic verifying whether a user had permission to export a certificate was incorrectly placed inside a block that executed only if the selected plugin required a private key. When an authenticated user attempted to export a certificate using a plugin that did not require the private key, the authorization check was bypassed, allowing unauthorized access to the public portions of the certificate and producing misleading audit logs.

Alon Barad
Alon Barad
3 views•6 min read
•about 4 hours ago•GHSA-JF24-8G2H-2WG7
7.2

GHSA-JF24-8G2H-2WG7: Remote Code Execution in LibreNMS AboutController via Binary Path Substitution

A critical security flaw in LibreNMS allows authenticated administrators to execute arbitrary commands by modifying the configured binary path for snmpget and accessing the About page. This occurs due to insufficient verification of the executable file's identity and integrity prior to executing it with shell_exec.

Amit Schendel
Amit Schendel
2 views•6 min read
•about 5 hours ago•GHSA-7CJ5-V4PP-V632
4.8

GHSA-7cj5-v4pp-v632: Stored Cross-Site Scripting in LibreNMS Graph Descriptions

LibreNMS versions prior to 26.7.0 are vulnerable to a stored Cross-Site Scripting (XSS) vulnerability. An authenticated administrator can inject arbitrary HTML or JavaScript into graph descriptions via specific administrative configuration endpoints. When another authenticated user views the affected graph, the unescaped payload executes within their browser context.

Alon Barad
Alon Barad
3 views•5 min read
•about 6 hours ago•GHSA-7GWW-X7FH-JF9J
8.1

GHSA-7GWW-X7FH-JF9J: SSRF-Driven Stored Cross-Site Scripting in LibreNMS Oxidized Integration

An injection vulnerability in LibreNMS's Oxidized integration component allows administrative or network-positioned attackers to achieve stored cross-site scripting (XSS). By setting a malicious oxidized.url endpoint, the server makes outbound queries and processes returned JSON fields containing malicious HTML or JavaScript. These payloads are outputted directly in the web UI without appropriate output encoding.

Amit Schendel
Amit Schendel
2 views•6 min read