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-70666

CVE-2026-70666: Server-Side Request Forgery in Netflix Lemur ACME Authority Management

Alon Barad
Alon Barad
Software Engineer

Aug 19, 2026·5 min read·17 visits

Executive Summary (TL;DR)

An SSRF vulnerability in Netflix Lemur allows lower-privileged users with authority roles to update authority settings to point to a rogue ACME server. The Lemur ACME client then trusts server-supplied dynamic URLs, enabling attackers to query private internal endpoints and retrieve cloud instance credentials.

CVE-2026-70666 is a critical Server-Side Request Forgery (SSRF) vulnerability in Netflix Lemur's ACME certificate management integration. Prior to version 1.9.3, the system allowed authority-role users to bypass initial ACME URL allowlist validations when updating an existing authority. Additionally, the underlying ACME network client blindly parsed and connected to dynamic endpoint URLs supplied in JSON responses from the configured ACME directory, allowing attackers to route arbitrary JWS-signed requests to internal services or cloud metadata endpoints.

Vulnerability Overview

Netflix Lemur functions as an orchestration framework designed to manage and automate TLS certificates across complex enterprise environments. Its ACME integration plugin (lemur_acme) handles communication with Automated Certificate Management Environment providers like Let's Encrypt to validate ownership and issue certificates.

The attack surface exists in how Lemur handles internal authority administrative actions and parses ACME directory parameters. A vulnerability in both the validation logic and the networking client allows an authenticated authority-role user to hijack outbound requests. This creates an exploitation path targeting internal networks, microservices, and metadata endpoints.

Root Cause Analysis

The vulnerability consists of two distinct software defects that work in tandem. The first defect involves an authentication-by-role privilege escalation within the authority update paths. During authority creation, Lemur enforces the ACME_DIRECTORY_HOST_ALLOWLIST filter. However, the update endpoints PUT /api/1/authorities/{id} and PUT /api/1/authorities/{id}/options failed to re-validate modified configurations, permitting arbitrary ACME directory URL changes.

The second defect is an unvalidated endpoint trust issue. RFC 8555 specifies that an ACME client must first fetch a directory resource to obtain active endpoint links (e.g., newOrder, newNonce). The standard Python acme dependency class ClientNetwork retrieves and connects to these links automatically. Because Lemur did not verify that these dynamically returned hostnames matched the original trusted ACME directory domain, a malicious directory server could redirect outbound Lemur API calls to internal system targets.

Code Analysis

To address the bypass, the patch implements strict hostname validation within the update pathways inside lemur/authorities/service.py and creates a custom client class to restrict HTTP network traffic.

The updated validation routine extracts and verifies the hostname of any updated ACME URL:

# lemur/authorities/service.py
def _validate_acme_url(url: str) -> None:
    allowed_hosts = current_app.config.get(
        'ACME_DIRECTORY_HOST_ALLOWLIST',
        {
            'acme-v02.api.letsencrypt.org',
            'acme-staging-v02.api.letsencrypt.org',
            'dv.acme-v02.api.pki.goog',
        },
    )
    parsed = urlparse(url)
    if parsed.scheme != 'https' or parsed.hostname not in allowed_hosts:
        raise InvalidConfiguration(
            f'acme_url host not in ACME_DIRECTORY_HOST_ALLOWLIST: {parsed.hostname}'
        )

Additionally, the patch replaces the default networking component with a pinned-hostname implementation to prevent redirect attacks:

# lemur/plugins/lemur_acme/acme_handlers.py
class _PinnedClientNetwork(ClientNetwork):
    def __init__(self, *args, pinned_hostname: str, **kwargs):
        super().__init__(*args, **kwargs)
        self._pinned_hostname = pinned_hostname
 
    def _send_request(self, method: str, url: str, *args, **kwargs) -> requests.Response:
        parsed = urlparse(url)
        # Enforce hostname equality for all dynamic requests
        if parsed.hostname != self._pinned_hostname:
            raise InvalidConfiguration(
                f'ACME client attempted request to disallowed host {parsed.hostname!r}; ' 
                f'expected {self._pinned_hostname!r}'
            )
        return super()._send_request(method, url, *args, **kwargs)

Exploitation & Methodology

Exploiting this flaw requires the attacker to possess credentials with sufficient authorization to modify a Lemur authority configuration. The attacker hosts a malicious server configured to return an ACME-compatible JSON payload that substitutes internal network resources for normal ACME protocol endpoints.

Once the rogue server is online, the attacker targets the authority update endpoint using a JSON payload containing the rogue acme_url. Because the validation routines are missing from the update path, the backend database stores the modified configuration directly without error.

When a certificate generation process is subsequently initialized, Lemur queries the rogue ACME server directory. The rogue server sends a response that maps standard paths like newOrder to internal targets such as http://169.254.169.254/latest/meta-data/iam/security-credentials/. The Lemur client processes this response and immediately transmits JWS-signed requests to the internal cloud metadata service, exposing IAM credentials to the attacker through system responses or error outputs.

Impact Assessment

The security impact of CVE-2026-70666 is significant due to the critical infrastructure role Lemur serves. By pivoting through the trusted Lemur server, an attacker bypasses perimeter defenses, firewalls, and network access control lists. This provides direct network access to otherwise isolated management plane APIs and local container network environments.

In environments deployed on Amazon Web Services (AWS), Google Cloud Platform (GCP), or Microsoft Azure, accessing the instance metadata service allows the attacker to extract short-term cloud provider credentials. If the instance runs with overly permissive IAM roles, the attacker can leverage these credentials to escalate privileges across the cloud account.

Furthermore, because the SSRF payload transmits JWS-signed JSON POST requests, it can be used to interact with raw key-value stores, database endpoints, or orchestration systems (such as Kubernetes Kubelet APIs) that accept unauthenticated or poorly authenticated JSON inputs over local interfaces.

Remediation & Detection

Remediation requires upgrading Netflix Lemur instances to version 1.9.3 or higher. The update fixes the flaw by validating configurations during updates and restricting the network client to the pinned hostname of the ACME directory.

Until a patch is applied, administrators should deploy egress firewall filters on Lemur hosts. These filters must restrict outgoing HTTP/HTTPS traffic exclusively to recognized, public ACME endpoints. Additionally, cloud metadata service protections should be enforced by configuring IMDSv2 with a strict hop limit of 1.

Administrators can identify historical exploitation attempts by querying their databases for unauthorized values in the authority option configurations. The following query helps identify non-standard ACME URLs stored in the authority table:

SELECT id, name, options FROM authority WHERE options LIKE '%acme_url%';

Fix Analysis (1)

Technical Appendix

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

Affected Systems

Netflix Lemur

Affected Versions Detail

Product
Affected Versions
Fixed Version
Lemur
Netflix
< 1.9.31.9.3
AttributeDetail
CWE IDCWE-918
Attack VectorNetwork
CVSS v3.1 Score7.4
Privileges RequiredLow (Tenant Authority Role)
ImpactServer-Side Request Forgery & Information Disclosure
Exploit StatusProof of Concept available
KEV StatusNot Listed

MITRE ATT&CK Mapping

T1190Exploit Public-Facing Application
Initial Access
T1005Data from Local System
Collection
CWE-918
Server-Side Request Forgery (SSRF)

The web application receives a URL or similar vector from an upstream component and retrieves the resource without validating the destination host.

Known Exploits & Detection

GitHub Security AdvisoryVulnerability details, reproduction vectors, and remediation patches detailed inside the official security advisory repository.

Vulnerability Timeline

Netflix remediates the SSRF vulnerabilities in Lemur commit 6dcb19b6
2026-06-29
GitHub Security Advisory GHSA-xpmj-wjcp-6pww is published
2026-08-18
CVE-2026-70666 is published to the National Vulnerability Database
2026-08-18

References & Sources

  • [1]GitHub Security Advisory GHSA-xpmj-wjcp-6pww
  • [2]NVD Record Details
  • [3]CVE.org Authority Record
  • [4]Netflix Lemur Remediation Commit
  • [5]Netflix Lemur Release v1.9.3

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

•1 day ago•CVE-2026-11748
6.9

CVE-2026-11748: Unauthenticated LDAP Injection in Central Dogma Server Authentication

An LDAP injection vulnerability exists in the centraldogma-server-auth-shiro module of LY Corporation Central Dogma before version 0.84.0. The search logic dynamically constructs LDAP search filters by interpolating user-provided usernames without escaping RFC 4515 metacharacters. Unauthenticated remote attackers can leverage this flaw to bypass authentication, enumerate directory hierarchies, and access unauthorized resources.

Alon Barad
Alon Barad
9 views•6 min read
•1 day ago•CVE-2026-11746
9.4

CVE-2026-11746: Use of Hard-coded ZooKeeper Replication Secret 'ch4n63m3' in Central Dogma Server

CVE-2026-11746 is a critical vulnerability in Central Dogma Server prior to version 0.84.0, where an embedded ZooKeeper replication secret silently falls back to a publicly known, hard-coded default string ('ch4n63m3'). Remote attackers with access to the replication network can authenticate as legitimate cluster peers, potentially leading to unauthorized data exposure, state manipulation, or complete cluster takeover.

Amit Schendel
Amit Schendel
7 views•6 min read
•1 day ago•CVE-2026-56665
4.2

CVE-2026-56665: Logical Validation Bypass in ZITADEL External JWT Identity Provider

A logical verification flaw in ZITADEL's external JWT Identity Provider validation allows attackers to bypass session expiration checks. If an incoming JWT lacks the 'exp' claim, the system skips validation entirely, creating an indefinitely valid session. This issue has been addressed in versions 3.4.12 and 4.15.2.

Alon Barad
Alon Barad
6 views•7 min read
•1 day ago•CVE-2026-59149
6.5

CVE-2026-59149: Sibling Directory Path Traversal in Mockoon Backend Server

CVE-2026-59149 identifies a directory traversal vulnerability in `@mockoon/commons-server`, the backend mock-server library powering the Mockoon application. The flaw occurs in the path containment validation logic used during raw file response generation. An unauthenticated attacker can exploit this weakness to retrieve arbitrary files from sibling directories sharing a common prefix with the designated static base directory.

Amit Schendel
Amit Schendel
9 views•5 min read
•1 day ago•CVE-2026-59148
8.8

CVE-2026-59148: Unauthenticated Administrative API and CORS Misconfiguration in Mockoon

An in-depth analysis of CVE-2026-59148, a high-severity flaw in Mockoon where unauthenticated administrative endpoints and a wildcard Cross-Origin Resource Sharing (CORS) policy allow remote execution, state poisoning, and credential theft.

Alon Barad
Alon Barad
11 views•6 min read
•1 day ago•CVE-2026-56666
4.8

CVE-2026-56666: Account Takeover via Improper Email Verification in ZITADEL Federated Identity Handler

An improper authentication vulnerability (CWE-287) in ZITADEL's external identity provider handler before version 4.15.3 allows remote attackers to perform complete account takeover. When auto-linking by email is enabled, ZITADEL verifies that the local target account has a verified email address but fails to verify if the external provider confirmed ownership of that same email. Attackers can exploit this by registering an unverified account with a victim's email address on a permissive external provider, leading to unauthorized account binding and persistent access.

Amit Schendel
Amit Schendel
7 views•7 min read