CVE-2026-33210: Ruby JSON has a format string injection vulnerability
Ruby JSON is a JSON implementation for Ruby. From version 2.14.0 to before versions 2.15.2.1, 2.17.1.2, and 2.19.2, a format string injection vulnerability can lead to denial of service attacks or information disclosure, when the allow_duplicate_key: false parsing option is used to parse user supplied documents. This issue has been patched in versions 2.15.2.1, 2.17.1.2, and 2.19.2.
Security readout for executives and security teams
Plain-English summary
A vulnerable Ruby JSON library version can mishandle attacker-supplied JSON when duplicate-key rejection is enabled. In affected applications, this can crash service or expose sensitive process information. The issue is patched, but exposure depends on a specific parsing option and untrusted input path.
Executive priority
Treat this as urgent for internet-facing Ruby services that parse customer-supplied JSON. The vulnerability is rated critical and patched, but actual business risk is concentrated in code paths using duplicate-key rejection on untrusted input.
Technical view
CVE-2026-33210 is a CWE-134 format string injection in Ruby json versions 2.14.0 through affected 2.15, 2.17, and 2.19 branches. It applies when JSON.parse-style handling uses allow_duplicate_key: false on user-supplied documents. CVSS 3.1 is 9.1 with high confidentiality and availability impact.
Likely exposure
Likely exposure is Ruby applications or packaged products using the vulnerable json gem versions and parsing externally supplied JSON with allow_duplicate_key: false. Dependency managers, bundled gems, containers, and Red Hat packages should be checked. Applications not using that option may not meet the described trigger condition.
Exploitation context
The source bundle does not show CISA KEV listing or cited active exploitation. Public sources describe network-reachable, unauthenticated exploitation potential only where the vulnerable parser path processes attacker-controlled JSON with the affected option enabled.
Researcher notes
The key research question is reachability: vulnerable version alone is insufficient without the allow_duplicate_key: false parsing option and attacker-controlled documents. Sources identify denial of service and information disclosure, but do not provide evidence of active exploitation in the supplied bundle.
Mitigation direction
Upgrade ruby/json to 2.15.2.1, 2.17.1.2, 2.19.2, or later.
Apply applicable Red Hat security advisories for packaged Ruby JSON components.
Prioritize services that parse untrusted JSON with allow_duplicate_key: false.
Check vendor guidance before relying on configuration-only workarounds.
Rebuild and redeploy containers or packages that vendor the vulnerable gem.
Validation and detection
Inventory json gem versions in application manifests, lockfiles, images, and runtime environments.
Search code for allow_duplicate_key: false in JSON parsing paths.
Map those parser paths to public APIs, webhooks, uploads, and message consumers.
Confirm runtime loads the patched json version after deployment.
Review Red Hat errata applicability for managed operating system packages.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-134: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-134 · source CWE mapping
Use of Externally-Controlled Format String
Use of Externally-Controlled Format String represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.