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

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

Amit Schendel
Amit Schendel
Senior Security Researcher

Sep 12, 2026·6 min read·0 visits

Executive Summary (TL;DR)

Unauthenticated remote attackers with access to Central Dogma's replication ports can take over the cluster by authenticating with the default hard-coded replication secret 'ch4n63m3'.

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.

Vulnerability Overview

Central Dogma is a highly-available, version-controlled service configuration repository developed by LY Corporation. In distributed multi-node environments, the service relies on an embedded ZooKeeper cluster to orchestrate replication logs and ensure state synchronization across replicas. Because the underlying storage layer contains sensitive service configurations, credentials, and cryptographic keys, security within the inter-peer synchronization channel is critical.\n\nPrior to version 0.84.0, the replication mechanism contained a flaw where the failure to explicitly set a replication secret in the configuration file caused the server to fall back to a hard-coded default value. This default credential, "ch4n63m3", was compiled directly into the application server code. Consequently, any deployment that left the replication.secret field unconfigured or null remained accessible using this globally known secret key.\n\nThe vulnerability is classified as CWE-798: Use of Hard-coded Credentials. Because the embedded ZooKeeper peer ports frequently bind to external network interfaces to facilitate multi-host clustering, this configuration flaw exposes a significant network-facing attack surface. Unauthorized entities on an adjacent network can leverage this default secret to authenticate directly to the coordination ensemble.

Root Cause Analysis

The core of this vulnerability lies in how configuration variables are parsed and validated within ZooKeeperReplicationConfig.java. During the initialization of the replication engine, the application is designed to retrieve configuration parameters from the dogma.json file. If the replication.secret parameter is missing or evaluates to null, the parsing logic does not trigger an exception or halt execution.\n\nInstead, the program employs a fallback utility, firstNonNull, to ensure that a non-null string is returned to the JAAS and SASL authentication providers. The code-level configuration parser returns the static constant DEFAULT_SECRET, which is set to the ASCII string "ch4n63m3". This fail-open implementation allows the server to establish an authenticated transport layer using credentials that are publicly visible in the open-source repository.\n\nThis configuration pattern fails to enforce standard cryptographic hygiene during system bootstrap. No automated checks exist in the vulnerable version to verify the entropy, length, or uniqueness of the configuration secret. The system proceeds to open listeners on the configured quorum and election ports, presenting an apparently secure SASL-authenticated channel that is actually protected only by a known default string.

Code Analysis

The transition from vulnerable to patched code in ZooKeeperReplicationConfig.java demonstrates the shift from a passive fallback mechanism to an active validation routine. In the vulnerable version, the retrieval of the replication secret was managed by a single-line fallback statement. This implementation did not inspect the origin or strength of the returned string before passing it to the authentication framework.\n\njava\n// Vulnerable Implementation\nprivate static final String DEFAULT_SECRET = "ch4n63m3";\n\npublic String secret() {\n // If "replication.secret" is null, firstNonNull silently returns "ch4n63m3"\n return firstNonNull(convertValue(secret, "replication.secret"), DEFAULT_SECRET);\n}\n\n\nThe patched implementation introduced in commit a38baa1f162ce7417ee0d7317a036fd52f3cd844 eliminates this silent fallback behavior by enforcing a minimum length of 16 characters during server startup. If the configured secret fails to meet this requirement, the constructor throws an exception and prevents the replication port from binding unless an explicit override parameter is set.\n\njava\n// Patched Implementation\nstatic final int MINIMUM_SECRET_LENGTH = 16;\nprivate static final String DEFAULT_SECRET = "ch4n63m3";\n\npublic String secret() {\n final String resolved = convertValue(secret, "replication.secret");\n if (resolved != null) {\n return resolved;\n }\n // Only reachable when allowInsecureSecret is true and secret is null.\n return DEFAULT_SECRET;\n}\n\n// Validation logic in constructor\nfinal boolean allowInsecureSecret0 = Boolean.TRUE.equals(allowInsecureSecret);\nthis.secret = secret;\nfinal String resolved = secret();\nif (!allowInsecureSecret0) {\n checkArgument(resolved.length() >= MINIMUM_SECRET_LENGTH,\n "'replication.secret' must be at least %s characters long.", MINIMUM_SECRET_LENGTH);\n}\n

Exploitation Methodology

Exploitation of CVE-2026-11746 requires network access to the ports designated for ZooKeeper peer-to-peer communication. An attacker must first perform network-level reconnaissance to identify active listeners on the replication ports, which are defined in the cluster's configuration block. Because the targets are standard TCP sockets used for leader election and quorum synchronization, they are easily distinguished.\n\nOnce the target ports are identified, the attacker configures a standard ZooKeeper client or helper tool to connect using the SASL mechanism. The client's Java Authentication and Authorization Service (JAAS) configuration is defined to supply the username super or a known cluster replica identifier. The password field is populated with the hard-coded default string "ch4n63m3".\n\nUpon successful authentication, the malicious node is accepted into the replication ensemble as a valid peer. The attacker can then issue synchronization commands to read transaction logs or write state modifications. Because the replication protocol trusts authenticated peers implicitly, the database state of the entire cluster can be altered without secondary validation.\n\nmermaid\ngraph LR\n Attacker["Attacker Node"] -->|"Authenticate with 'ch4n63m3'"| Node1["Vulnerable Central Dogma Node"]\n Node1 -->|"Join Consensus"| Quorum["ZooKeeper Quorum"]\n Node2["Legitimate Node"] -->|"Sync State"| Quorum\n

Impact Assessment

The successful exploitation of this vulnerability has direct consequences for the confidentiality, integrity, and availability of the Central Dogma configuration store. Because Central Dogma often houses critical infrastructure secrets, such as API keys, database credentials, and SSL certificates, access to the replication logs allows an attacker to extract these materials in plaintext. This exposure can lead to lateral movement within the target enterprise network.\n\nIn terms of integrity, an attacker acting as an authenticated peer can inject arbitrary configurations or modify existing repository data. These unauthorized changes are automatically propagated to all client applications consuming configurations from Central Dogma. This vector allows for widespread application-level manipulation, potentially facilitating downstream remote code execution on client hosts.\n\nFinally, availability is severely impacted because the malicious peer can disrupt the consensus mechanism. By introducing desynchronized transaction histories or interrupting leader elections, the attacker can break the quorum. This action prevents legitimate nodes from reaching consensus, causing service degradation and denying configuration updates to dependent applications.

Remediation & Patch Verification

Remediation of CVE-2026-11746 requires updating the Central Dogma server deployment to version 0.84.0 or later. This upgrade modifies the configuration engine to enforce strong security policies by default, blocking the use of short or default secrets. Operators should verify that the application logs confirm a successful, secure configuration load following the update.\n\nWhen deploying the patched version, operators must generate a cryptographically secure replication secret of at least 16 characters. A secure hex string can be generated using standard operating system utilities. This secret must then be distributed securely to all participating replicas and defined in each node's dogma.json configuration file under the replication.secret key.\n\nTo provide defense-in-depth, network-level access controls must be implemented to isolate the peer communication ports. Firewall rules or network security groups should restrict connections to the quorumPort and electionPort so that only the IP addresses of authorized cluster replicas are permitted to connect. This isolation prevents exposure even in the event of credential-related misconfigurations.

Technical Appendix

CVSS Score
9.4/ 10
CVSS:4.0/AV:A/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H
EPSS Probability
0.23%
Top 86% most exploited

Affected Systems

Central Dogma Server
AttributeDetail
CWE IDCWE-798
Attack VectorAdjacent Network
CVSS v4.0 Score9.4 (Critical)
EPSS Score0.00229
ImpactComplete Cluster Takeover / Information Disclosure
Exploit StatusProof-of-Concept
CISA KEV StatusNot Listed
CWE-798
Use of Hard-coded Credentials

The software contains hard-coded credentials, such as a password or cryptographic key, which are used for system authentication, transport encryption, or signature verification.

Vulnerability Timeline

Vulnerability Disclosed and Patched in v0.84.0
2026-09-11

References & Sources

  • [1]GitHub Security Advisory GHSA-2j95-gqxf-v3vg
  • [2]Fix Commit
  • [3]v0.84.0 Release Changelog

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

•21 minutes 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
0 views•6 min read
•about 2 hours 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
2 views•7 min read
•about 3 hours 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
3 views•5 min read
•about 4 hours 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
4 views•6 min read
•about 5 hours 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
2 views•7 min read
•about 6 hours ago•CVE-2026-59151
9.6

CVE-2026-59151: Cross-Tenant Account Takeover via Improper SAML Assertion Validation in Prowler

A critical authentication bypass and cross-tenant account takeover vulnerability exists in the Prowler cloud security platform due to improper validation of the SAML Assertion Consumer Service (ACS) flow. An authenticated attacker controlling a custom Identity Provider (IdP) can forge assertions targeting arbitrary user identities across distinct tenants, allowing complete unauthorized access to target tenant-scoped resources.

Amit Schendel
Amit Schendel
3 views•6 min read