Advisory Database
  • Advisories
  • Dependency Scanning
  1. gem
  2. ›
  3. concurrent-ruby
  4. ›
  5. CVE-2026-54904

CVE-2026-54904: Concurrent Ruby : `AtomicReference#update` livelocks when the stored value is `Float::NAN`

June 19, 2026

Concurrent::AtomicReference#update can enter a permanent busy retry loop when the current value is Float::NAN.

The issue is caused by the interaction between:

  • AtomicReference#update, which retries until compare_and_set(old_value, new_value) succeeds.
  • Numeric compare_and_set, which checks old == old_value before attempting the underlying atomic swap.
  • Ruby NaN semantics, where Float::NAN == Float::NAN is always false.

As a result, once an AtomicReference contains Float::NAN, calling #update repeatedly evaluates the caller’s block and never returns. In services that store externally derived numeric values in an AtomicReference, this can cause CPU exhaustion or permanent request/job hangs.

References

  • github.com/advisories/GHSA-h8w8-99g7-qmvj
  • github.com/ruby-concurrency/concurrent-ruby/security/advisories/GHSA-h8w8-99g7-qmvj
  • nvd.nist.gov/vuln/detail/CVE-2026-54904

Code Behaviors & Features

Detect and mitigate CVE-2026-54904 with GitLab Dependency Scanning

Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →

Affected versions

All versions before 1.3.7

Fixed versions

  • 1.3.7

Solution

Upgrade to version 1.3.7 or above.

Impact 7.5 HIGH

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Learn more about CVSS

Weakness

  • CWE-835: Loop with Unreachable Exit Condition ('Infinite Loop')

Source file

gem/concurrent-ruby/CVE-2026-54904.yml

Spotted a mistake? Edit the file on GitLab.

  • Site Repo
  • About GitLab
  • Terms
  • Privacy Statement
  • Contact

Page generated Sat, 20 Jun 2026 12:17:14 +0000.