CVE-2026-53343
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: ARM: 9475/1: entry: use byte load for KASAN VMAP stack shadow Commit 44e9a3bb76e5 ("ARM: 9430/1: entry: Do a dummy read from VMAP shadow") added a dummy read from the KASAN VMAP stack shadow in __switch_to(). The read uses ldr, but the KASAN shadow address is byte-granular and is not guaranteed to be word aligned. ARMv5 faults unaligned word loads. With CONFIG_KASAN_VMALLOC and CONFIG_VMAP_STACK enabled, ARM926/VersatilePB crashes in __switch_to() with an alignment exception before reaching init. Use ldrb for the dummy shadow access. The code only needs to fault in the shadow mapping if the stack shadow is missing, so a byte load is sufficient and matches the granularity of KASAN shadow memory.
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 confidenceOn ARM, the __switch_to() function performs a dummy read from KASAN VMAP stack shadow using 'ldr' (word load). However, KASAN shadow addresses are byte-granular and not word-aligned. ARMv5 processors like ARM926 fault on unaligned word loads when CONFIG_KASAN_VMALLOC and CONFIG_VMAP_STACK are enabled, causing a crash before init.
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>= 6.1.120, < 6.1.176>= 6.6.64, < 6.6.143>= 6.12.4, < 6.12.94>= 6.13, < 6.18.36>= 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' or 'cat /proc/version' to get the installed kernel versionAffected if Version falls within >= 6.1.120 && < 6.1.176, OR >= 6.6.64 && < 6.6.143, OR >= 6.12.4 && < 6.12.94, OR >= 6.13 && < 6.18.36, OR >= 6.19 && < 7.0.13, OR == 7.1
-
Confirm ARMv5 architectureCheck /proc/cpuinfo for 'Processor' or 'CPU architecture' showing ARMv5 or ARM926, or check device treeAffected if Running on ARMv5 (ARM926) processor
-
Verify CONFIG_KASAN_VMALLOC is enabledCheck kernel config file (e.g., /boot/config-* or /proc/config.gz) for 'CONFIG_KASAN_VMALLOC=y'Affected if CONFIG_KASAN_VMALLOC is set to y in the kernel configuration
-
Verify CONFIG_VMAP_STACK is enabledCheck kernel config file for 'CONFIG_VMAP_STACK=y'Affected if CONFIG_VMAP_STACK is set to y in the kernel configuration
-
Inspect __switch_to() for ldr instructionExamine the arch/arm/kernel/entry-armv.S or equivalent source file in __switch_to() function where KASAN shadow is accessed; search for 'ldr' accessing KASAN shadow in the stack switching codeAffected if The code uses 'ldr' (word load) instead of 'ldrb' (byte load) to access KASAN shadow memory in __switch_to()
User is affected if running an affected kernel version on ARMv5 with both CONFIG_KASAN_VMALLOC and CONFIG_VMAP_STACK enabled, and the __switch_to() function still uses 'ldr' instead of 'ldrb' for KASAN shadow access.
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.1766.6.1436.12.94
Replace the 'ldr' instruction with 'ldrb' (byte load) in __switch_to() to match KASAN's byte-granular shadow memory. This is a single-instruction change in arch/arm/kernel/entry-armv.S.
Linux Kernel 6.1.176, 6.6.143, 6.12.94, or 6.18.36 and later
- Identify the file containing the __switch_to() function for ARM (typically arch/arm/kernel/entry.S or similar)
- Locate the dummy read from KASAN VMAP stack shadow that uses 'ldr' instruction
- Change 'ldr' to 'ldrb' for the KASAN shadow access to use byte-granular load instead of word-aligned load
- Rebuild the kernel with CONFIG_KASAN_VMALLOC and CONFIG_VMAP_STACK enabled for ARM targets
- Test on ARM926/VersatilePB hardware or QEMU emulation to verify the alignment fault is resolved
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation1.0 h
- Implementation1.0 h
- Testing2.0 h
- Review / QA1.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $1,376.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-53343 — 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-53343 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