CVE-2026-53327
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 · uneditedIn the Linux kernel, the following vulnerability has been resolved: debugobjects: Do not fill_pool() if pi_blocked_on On RT enabled kernels, fill_pool() ends up calling rtlock_lock(), which asserts if current::pi_blocked_on is set, because a task can obviously only block on one lock as otherwise the priority inheritenace chain gets corrupted. Prevent this by expanding the conditional to take current::pi_blocked_on into account.
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 confidenceIn the Linux kernel's debugobjects subsystem, the fill_pool() function calls rtlock_lock() on RT-enabled kernels. rtlock_lock() asserts that current::pi_blocked_on is not set, since a task can only block on one lock to avoid corrupting the priority inheritance chain. When debugobjects triggers fill_pool() while a task is already blocked on a lock (pi_blocked_on set), the assertion fails, causing a kernel panic or crash.
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>= 5.15, < 6.1.177>= 6.2, < 6.6.144>= 6.7, < 6.12.95>= 6.13, < 6.18.37>= 6.19, < 7.0.13= 7.1CVSS 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
- None
- Integrity
- None
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
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 checksWork through these to decide whether this CVE applies to you.
-
Check kernel versionRun `uname -r` to obtain the running kernel version. Compare this version against the affected ranges: >= 5.15 and < 6.1.177; >= 6.2 and < 6.6.144; >= 6.7 and < 6.12.95; >= 6.13 and < 6.18.37; >= 6.19 and < 7.0.13; = 7.1Affected if The kernel version falls within any of the listed affected version ranges
-
Verify RT kernel variantDetermine if the kernel is a Real-Time (RT) variant. Inspect the output of `uname -r` for 'rt' or 'PREEMPT_RT' in the version string, or check /proc/version, or examine /boot/config-$(uname -r) for CONFIG_PREEMPT_RT if availableAffected if The system is running an RT-enabled kernel (the version string contains 'rt' or 'PREEMPT_RT' or CONFIG_PREEMPT_RT is set in the kernel config)
-
Confirm debugobjects availabilityThe debugobjects subsystem is built into the kernel by default. Verify it exists by checking if /sys/kernel/debug/debug_objects is accessible (requires debugfs mounted at /sys/kernel/debug), or check /boot/config-$(uname -r) for CONFIG_DEBUG_OBJECTSAffected if The kernel has CONFIG_DEBUG_OBJECTS enabled and debugfs is mounted, making the debugobjects subsystem accessible
The system is affected only if it is running an RT-enabled kernel with a version that falls within the affected ranges AND has the debugobjects subsystem available (which is the default configuration).
Generated from the published advisory. Verify against your own configuration.
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 · scoped6.1.1776.6.1446.12.95
This is a kernel bug requiring a code fix that expands the conditional in fill_pool() to check current::pi_blocked_on before calling rtlock_lock(). No user-configurable mitigation exists; the fix must be applied at the kernel level.
6.1.177 (for 5.15-6.1.x branch), 6.6.144 (for 6.2-6.6.x branch), 6.12.95 (for 6.7-6.12.x branch), or 6.18.37 (for 6.13+ branch)
- 1. Identify the current running kernel version using 'uname -r'
- 2. Determine which kernel branch your current version belongs to (5.15-6.1, 6.2-6.6, 6.7-6.12, or 6.13+)
- 3. Upgrade the kernel to the appropriate fixed version for your branch: For 5.15/6.1.x branch, upgrade to >= 6.1.177; For 6.2-6.6.x branch, upgrade to >= 6.6.144; For 6.7-6.12.x branch, upgrade to >= 6.12.95; For 6.13+ branch, upgrade to >= 6.18.37
- 4. Use your distribution's package manager to install the updated kernel (e.g., 'apt update && apt upgrade' on Debian/Ubuntu, 'yum update' on RHEL/CentOS, or 'pacman -Syu' on Arch)
- 5. Reboot the system to load the fixed kernel
- 6. Verify the new kernel version is running with 'uname -r'
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation1.0 h
- Testing3.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,224.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-53327 — 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 sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-53327 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
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.
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.
- 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