Concurrent RubyApplication · Rubyconcurrency

CVE-2026-54905

MEDIUM · 5.5 CVSS v3.1 Published 2026-06-24
Fix available
A fix is available. Upgrade to 1.3.7 or later.
See remediation →
57/100
Remediation priority · Elevated
Zero-click 8 weeks old

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
concurrent-ruby is a modern concurrency tools for Ruby. Prior to 1.3.7, Concurrent::ReentrantReadWriteLock can incorrectly grant a write lock after one thread acquires the read lock 32,768 times. The lock stores a thread's local read and write hold counts in one integer. The low 15 bits are used for the read hold count, and bit 15 is used as WRITE_LOCK_HELD. After 32,768 reentrant read acquisitions, the local read count crosses into the write-lock bit. try_write_lock then treats the thread as already holding a write lock and returns true without setting the global RUNNING_WRITER bit. This breaks the core mutual-exclusion guarantee: the caller is told it has a write lock, but other threads can still hold or acquire read locks at the same time. This vulnerability is fixed in 1.3.7.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · high confidence

In concurrent-ruby versions prior to 1.3.7, the ReentrantReadWriteLock uses a single integer where the low 15 bits store the read hold count and bit 15 serves as the WRITE_LOCK_HELD flag. After 32,768 reentrant read acquisitions by a single thread, the read count overflows into the write-lock bit, causing try_write_lock to incorrectly return true without setting the global RUNNING_WRITER bit. This breaks mutual exclusion by allowing false write-lock claims while read locks can still be held or acquired by other threads.

MitigationUpgrade concurrent-ruby to version 1.3.7 or later to receive the fix that properly separates read hold counts from the write-lock flag.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.

NVD · CPE data
Concurrent RubyApplication
Affected:< 1.3.7

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Local
Complexity
Low
Privileges
Low
User interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
None
Availability
None

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

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Identify if concurrent-ruby is used
    Check your Gemfile, gemspec, or run `gem list concurrent-ruby` to see if the concurrent-ruby gem is installed
    Affected if The gem is not installed or the version cannot be determined
  2. Determine installed version of concurrent-ruby
    Run `gem list concurrent-ruby` or check your Gemfile.lock for the exact version number
    Affected if The installed version is lower than 1.3.7 (e.g., 1.3.6, 1.3.0, etc.)
  3. Check for ReentrantReadWriteLock usage
    Search your codebase for references to ReentrantReadWriteLock, typically in files requiring concurrent-ruby synchronization features
    Affected if Your code uses ReentrantReadWriteLock from the concurrent-ruby library
  4. Identify high-volume read lock scenarios
    Review code paths where read_lock or try_read_lock is called repeatedly in loops or recursively by a single thread, as this could trigger the overflow
    Affected if The application has code paths that could result in more than 32,768 reentrant read acquisitions by a single thread

You are affected if you use concurrent-ruby version below 1.3.7 AND your application uses ReentrantReadWriteLock in scenarios where a single thread could acquire read locks more than 32,768 times, causing write-lock detection to fail and break mutual exclusion.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

dbcve · scoped
Upgrade available Upgrade to 1.3.7 or later
Fixed in 1.3.7
Interim mitigation

Upgrade concurrent-ruby to version 1.3.7 or later to receive the fix that properly separates read hold counts from the write-lock flag.

Recommended fix High confidence

concurrent-ruby version 1.3.7

  1. Check the current version of the concurrent-ruby gem in your project by running `gem list concurrent-ruby` or checking your Gemfile
  2. Update the concurrent-ruby gem to version 1.3.7 or later by running `gem install concurrent-ruby -v '~> 1.3.7'` for system-wide install, or update your Gemfile with `gem 'concurrent-ruby', '~> 1.3.7'` and run `bundle update concurrent-ruby`
  3. Verify the upgrade was successful by running `gem list concurrent-ruby` and confirming the installed version is 1.3.7 or higher
  4. Run your test suite to ensure the upgrade does not break existing functionality

Generated from the published advisory — verify against the referenced sources before acting.

Fix this in Concurrent Ruby Scoped from the published advisory
  • Consultation1.0 h
  • Implementation2.0 h
  • Testing3.0 h
  • Review / QA1.0 h
7.0 hours of engineering $1,190
Get the upgrade done

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $1,904.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2026-54905 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2026-54905 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data