CVE-2026-31431
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: crypto: algif_aead - Revert to operating out-of-place This mostly reverts commit 72548b093ee3 except for the copying of the associated data. There is no benefit in operating in-place in algif_aead since the source and destination come from different mappings. Get rid of all the complexity added for in-place operation and just copy the AD directly.
In the news
Third-party coverage- Exploitation of 'Copy Fail' Linux Vulnerability Begins - SecurityWeek
- Linux Kernel Dirty Frag LPE Exploit Enables Root Access Across Major ...
- Nine-year-old Linux kernel flaw enables reliable local privilege ...
- CISA Adds Actively Exploited Linux Root Access Bug CVE-2026-31431 ...
- Another AI-Assisted Software Scan Yields 9-Year-Old Linux Bug
Surfaced from public web coverage — external links open in a new tab.
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 confidenceThe Linux kernel's algif_aead cryptographic algorithm implementation contains a vulnerability stemming from a previous optimization commit (72548b093ee3) that attempted in-place operation. Since source and destination buffers originate from different memory mappings, this in-place optimization created a security flaw. The fix reverts to out-of-place operation by removing the added complexity and directly copying the associated data.
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>= 4.14, < 5.10.254>= 5.11, < 5.15.204>= 5.16, < 6.1.170>= 6.2, < 6.6.137>= 6.7, < 6.12.85>= 6.13, < 6.18.22>= 6.19, < 6.19.12= 7.0>= 4.12, < 4.12.89>= 4.13, < 4.13.66>= 4.14, < 4.14.65>= 4.15, < 4.15.64>= 4.16, < 4.16.61>= 4.17, < 4.17.53>= 4.18, < 4.18.40>= 4.19, < 4.19.30>= 4.20, < 4.20.21>= 4.21, < 4.21.14= 4.0= 8.0= 9.0= 10.0= 8.4= 8.6= 8.4= 9.4= 9.6= 10.0= 8.6= 8.8= 8.6= 8.8= 9.0= 9.2all versions= 14.04= 16.04= 18.04= 20.04= 22.04= 24.04= 25.10CVSS 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
- High
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/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.
-
Identify the running kernel versionRun `uname -r` or `cat /proc/version` to get the exact kernel version stringAffected if The kernel version falls within any of these ranges: >= 4.14 and < 5.10.254; >= 5.11 and < 5.15.204; >= 5.16 and < 6.1.170; >= 6.2 and < 6.6.137; >= 6.7 and < 6.12.85; >= 6.13 and < 6.18.22; >= 6.19 and < 6.19.12; or equals exactly 7.0. For Ubuntu, all versions listed (14.04, 16.04, 18.04, 20.04, 22
-
Confirm the algif_aead kernel interface is presentCheck if the AF_ALG kernel crypto interface is available by looking in /proc/crypto for 'algif_aead' entries, or attempt to load the module with `modprobe algif_aead` and verify successAffected if The algif_aead interface is loaded or loadable (the vulnerability only applies when this interface exists and can be used)
-
Detect active AF_ALG sockets using aeadUse `ss -x | grep alg` to list AF_ALG sockets, or check for processes that may be using the AF_ALG interface with `lsof 2>/dev/null | grep -i alg` or by examining /proc/*/fd for socket:[alg] entriesAffected if Any process is actively using AF_ALG sockets with aead operations (the in-place memory handling flaw triggers during actual crypto operations with mismatched source/destination buffers)
-
Check for RHEL/CentOS/RHEL-based distribution specific versionFor Red Hat systems, also run `rpm -q kernel` to list all installed kernel packages and compare against the specific RHEL version ranges: RHEL 8.0, 8.4, 8.6, 9.0, 10.0 and their EUS/AUS/TUS variants are listed as affectedAffected if Running a Red Hat Enterprise Linux version exactly matching 8.0, 9.0, 10.0, 8.4, 8.6, 9.4, 9.6 or related update variants
The system is affected if the kernel version is within any of the vulnerable version ranges AND the algif_aead crypto interface is present and actively being used by applications, as the flaw only triggers during specific async AEAD operations with mismatched memory mappings.
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 · scoped4.12.894.13.664.14.65
Apply the kernel patch that reverts algif_aead to out-of-place operation, or update to a kernel version containing this fix.
Linux kernel 5.10.254+ / 5.15.204+ / 6.1.170+ / 6.6.137+ (depending on branch); RHEL/CentOS Stream or appropriate vendor update; Ubuntu HWE or vendor kernel update
- 1. Identify the current running kernel version using 'uname -r' or 'hostnamectl'
- 2. Determine which kernel branch (5.10, 5.15, 6.1, or 6.6) your current version belongs to
- 3. For systems on kernel 5.10.x: upgrade to kernel version 5.10.254 or later
- 4. For systems on kernel 5.11.x through 5.15.x: upgrade to kernel version 5.15.204 or later
- 5. For systems on kernel 5.16.x through 6.1.x: upgrade to kernel version 6.1.170 or later
- 6. For systems on kernel 6.2.x through 6.6.x: upgrade to kernel version 6.6.137 or later
- 7. For Red Hat Enterprise Linux systems: apply the vendor-supplied kernel security update via 'yum update' or 'dnf update'
- 8. For Ubuntu systems: apply updates via 'apt update && apt upgrade' or 'apt-get dist-upgrade'
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation4.0 h
- Testing8.0 h
- Review / QA4.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $4,864.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-31431 — 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- git.kernel.org
- www.openwall.com
- lore.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- git.kernel.org
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- xint.io
- websec.net
- www.kb.cert.org
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- bugzilla.redhat.com
- cert-portal.siemens.com
- cert-portal.siemens.com
- cert-portal.siemens.com
- security.access.redhat.com
- www.openwall.com
- copy.fail
- github.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.openwall.com
- www.cisa.gov
- nvd.nist.gov
Practitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-31431 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