CVE-2026-63984

CRITICALPre-NVD 9.89.8
EchelonGraph scoreMEDIUM confidence

Score 9.8 from GitHub Security Advisory (severity: CRITICAL) published 2026-07-19. the CNA's CVSS baseline 9.8; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: cna:linux, epss, ghsa
Trending — 4 sources updated this week
9.8EG
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS PROB: 1%CVSS: 9.8Exploit: None knownExposed: 0

A fix is available — apply it.

In the Linux kernel, the following vulnerability has been resolved:

ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress()

ipv6_rpl_srh_decompress() computes:

outhdr->hdrlen = (((n + 1) * sizeof(struct in6_addr)) >> 3);

hdrlen is __u8. For n >= 127 the result exceeds 255 and silently truncates. With n=127 (cmpri=15, cmpre=15, pad=0, hdrlen=16):

(128 * 16) >> 3 = 256, truncated to 0 as __u8

The caller in ipv6_rpl_srh_rcv() then places the compressed header at buf + ((ohdr->hdrlen + 1) << 3). With hdrlen=0 this is buf + 8, but the decompressed region occupies buf[0..2055] (8-byte header plus 128 full addresses). The compressed header overlaps the decompressed data, and ipv6_rpl_srh_compress() writes into this overlap, corrupting the routing header of the forwarded packet.

The existing guard at exthdrs.c:546 checks (n + 1) > 255, which prevents n+1 from overflowing unsigned char (the segments_left field), but does not prevent the computed hdrlen from overflowing __u8. n=127 passes because 128 <= 255, yet hdrlen=256 does not fit.

Tighten the bound to (n + 1) > 127. This caps n at 126, giving hdrlen = (127 * 16) >> 3 = 254, which fits in __u8. The compressed header then lands at buf + ((254 + 1) << 3) = buf + 2040, exactly past the decompressed region (buf[0..2039]). No overlap. 127 segments is well beyond any realistic RPL deployment.

CVSS v3
9.8
EG Score
9.8(medium)
EG Risk
49(Track)
EG Risk 49/100SSVC: Track

EG Risk is EchelonGraph's 0–100 priority score: it fuses intrinsic severity with real-world exploitation and automatability so you can rank equal-severity CVEs and fix the most dangerous first. Higher = act sooner. Distinct from the 0–10 EG Score (severity).

How it’s computed
Severity98% × 45%
Exploitation1% × 40%
Automatability30% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
1%
EPSS %ILE
42%
KEV
Not listed

Published

July 19, 2026

Last Modified

August 5, 2026

Advisory Details (8)

Auto-updated Aug 26, 2026
No patch confirmed yet.
generic

ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/9d5e7a46a9f6d8f503b41bfefef70659845f1679
generic

ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/c0487a9c1e116cf349e2d1f302d9019670460858
generic

ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/6fe1cb312038516cb4d9fa089d700af7059f1a64
generic

ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/de02fc049352af5a9595f015511222d0a85c326b
generic

ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/97e06791368c01f0ad2a4b3269c2abe19485ca32
generic

ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/3618b34942b76471d044369bfd30d58c39068bf1
generic

ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/fd238c51b0fa5390cceca9f1ac5a9ffda8063eed
generic

ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/75b3680047bf09af8e7e471a7a6ddf2ce5847f56

Vendor Advisories for CVE-2026-63984(1)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Patch Availability(5)

Patches are aggregated from vendor advisories (Red Hat, Microsoft, Cisco, GitHub) and package ecosystems (OSV, GHSA). Multiple rows for the same upstream release have been deduplicated.

Affected Packages

(4 across 4 ecosystems)
Debian:11(1)
PackageVulnerable rangeFixed inDependents
linux5.10.103-1 ... 5.10.92-2 (54 versions)5.10.259-1
Debian:12(1)
PackageVulnerable rangeFixed inDependents
linux6.1.106-1 ... 6.1.99-1 (53 versions)6.1.176-1
Debian:13(1)
PackageVulnerable rangeFixed inDependents
linux6.12.38-1 ... 6.12.94-1~bpo12+1 (27 versions)6.12.94-1
Debian:14(1)
PackageVulnerable rangeFixed inDependents
linux6.12.100-1 ... 7.0.9-1~bpo13+1 (138 versions)7.0.12-1

All Vendor Advisories

(5)

Data Freshness Timeline

(refreshed 61× in last 7d / 371× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

Showing the most recent 100 of 445 total refreshes for this CVE.

  1. 2026-08-30 06:48 UTCGHSA enrichment
  2. 2026-08-30 02:53 UTCEG score recompute
  3. 2026-08-30 02:53 UTCVendor advisory
  4. 2026-08-30 02:53 UTCGHSA enrichment
  5. 2026-08-30 01:22 UTCEPSS rescore
  6. 2026-08-28 21:42 UTCEPSS rescore
  7. 2026-08-28 01:43 UTCVendor advisory
  8. 2026-08-28 01:43 UTCGHSA enrichment
  9. 2026-08-27 21:23 UTCEG score recompute
  10. 2026-08-27 21:23 UTCVendor advisory
  11. 2026-08-27 21:23 UTCGHSA enrichment
  12. 2026-08-27 14:25 UTCEPSS rescore
  13. 2026-08-27 11:52 UTCVendor advisory
  14. 2026-08-27 11:52 UTCGHSA enrichment
  15. 2026-08-27 02:20 UTCVendor advisory
  16. 2026-08-27 02:20 UTCGHSA enrichment
  17. 2026-08-26 22:25 UTCEG score recompute
  18. 2026-08-26 22:25 UTCVendor advisory
  19. 2026-08-26 22:25 UTCGHSA enrichment
  20. 2026-08-26 14:46 UTCEPSS rescore
  21. 2026-08-26 11:42 UTCVendor advisory
  22. 2026-08-26 11:42 UTCGHSA enrichment
  23. 2026-08-26 07:24 UTCVendor advisory
  24. 2026-08-26 07:24 UTCGHSA enrichment
  25. 2026-08-26 02:39 UTCVendor advisory
Show 75 more
  1. 2026-08-26 02:39 UTCGHSA enrichment
  2. 2026-08-25 22:44 UTCVendor advisory
  3. 2026-08-25 22:44 UTCGHSA enrichment
  4. 2026-08-25 18:48 UTCGHSA enrichment
  5. 2026-08-25 14:41 UTCEG score recompute
  6. 2026-08-25 14:41 UTCVendor advisory
  7. 2026-08-25 14:41 UTCGHSA enrichment
  8. 2026-08-25 13:49 UTCEPSS rescore
  9. 2026-08-25 10:47 UTCVendor advisory
  10. 2026-08-25 10:47 UTCGHSA enrichment
  11. 2026-08-25 06:52 UTCVendor advisory
  12. 2026-08-25 06:52 UTCGHSA enrichment
  13. 2026-08-25 02:58 UTCVendor advisory
  14. 2026-08-25 02:58 UTCGHSA enrichment
  15. 2026-08-24 23:04 UTCVendor advisory
  16. 2026-08-24 23:03 UTCGHSA enrichment
  17. 2026-08-24 19:09 UTCEG score recompute
  18. 2026-08-24 19:09 UTCVendor advisory
  19. 2026-08-24 19:09 UTCGHSA enrichment
  20. 2026-08-24 13:02 UTCEG score recompute
  21. 2026-08-24 13:02 UTCVendor advisory
  22. 2026-08-24 13:02 UTCGHSA enrichment
  23. 2026-08-24 09:07 UTCVendor advisory
  24. 2026-08-24 09:07 UTCGHSA enrichment
  25. 2026-08-24 04:55 UTCVendor advisory
  26. 2026-08-24 04:55 UTCGHSA enrichment
  27. 2026-08-24 01:01 UTCVendor advisory
  28. 2026-08-24 01:01 UTCGHSA enrichment
  29. 2026-08-23 21:04 UTCVendor advisory
  30. 2026-08-23 21:04 UTCGHSA enrichment
  31. 2026-08-23 17:10 UTCVendor advisory
  32. 2026-08-23 17:10 UTCGHSA enrichment
  33. 2026-08-23 13:16 UTCVendor advisory
  34. 2026-08-23 13:16 UTCGHSA enrichment
  35. 2026-08-23 09:12 UTCVendor advisory
  36. 2026-08-23 09:12 UTCGHSA enrichment
  37. 2026-08-23 05:18 UTCVendor advisory
  38. 2026-08-23 05:18 UTCGHSA enrichment
  39. 2026-08-23 01:24 UTCEG score recompute
  40. 2026-08-23 01:24 UTCVendor advisory
  41. 2026-08-23 01:24 UTCGHSA enrichment
  42. 2026-08-23 00:19 UTCEPSS rescore
  43. 2026-08-22 21:29 UTCVendor advisory
  44. 2026-08-22 21:29 UTCGHSA enrichment
  45. 2026-08-22 17:32 UTCVendor advisory
  46. 2026-08-22 17:32 UTCGHSA enrichment
  47. 2026-08-22 13:38 UTCVendor advisory
  48. 2026-08-22 13:38 UTCGHSA enrichment
  49. 2026-08-22 09:44 UTCVendor advisory
  50. 2026-08-22 09:44 UTCGHSA enrichment
  51. 2026-08-22 05:50 UTCVendor advisory
  52. 2026-08-22 05:50 UTCGHSA enrichment
  53. 2026-08-22 01:56 UTCEG score recompute
  54. 2026-08-22 01:56 UTCVendor advisory
  55. 2026-08-22 01:56 UTCGHSA enrichment
  56. 2026-08-21 23:49 UTCEPSS rescore
  57. 2026-08-21 22:02 UTCVendor advisory
  58. 2026-08-21 22:02 UTCGHSA enrichment
  59. 2026-08-21 18:07 UTCVendor advisory
  60. 2026-08-21 18:07 UTCGHSA enrichment
  61. 2026-08-21 14:09 UTCVendor advisory
  62. 2026-08-21 14:09 UTCGHSA enrichment
  63. 2026-08-21 10:15 UTCVendor advisory
  64. 2026-08-21 10:15 UTCGHSA enrichment
  65. 2026-08-21 06:21 UTCVendor advisory
  66. 2026-08-21 06:21 UTCGHSA enrichment
  67. 2026-08-21 02:27 UTCEG score recompute
  68. 2026-08-21 02:27 UTCVendor advisory
  69. 2026-08-21 02:27 UTCGHSA enrichment
  70. 2026-08-20 22:55 UTCEPSS rescore
  71. 2026-08-20 22:33 UTCVendor advisory
  72. 2026-08-20 22:33 UTCGHSA enrichment
  73. 2026-08-20 18:39 UTCVendor advisory
  74. 2026-08-20 18:39 UTCGHSA enrichment
  75. 2026-08-20 14:45 UTCVendor advisory

Frequently asked(5)

What is CVE-2026-63984?
CVE-2026-63984 is a critical vulnerability published on July 19, 2026. In the Linux kernel, the following vulnerability has been resolved: ipv6: rpl: fix hdrlen overflow in ipv6rplsrh_decompress() ipv6rplsrh_decompress() computes: outhdr->hdrlen = (((n + 1) * sizeof(struct in6_addr)) >> 3); hdrlen is u8. For n >= 127 the result exceeds 255 and silently truncates. With…
When was CVE-2026-63984 disclosed?
CVE-2026-63984 was first published in the National Vulnerability Database on July 19, 2026, with the most recent update on August 5, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-63984 actively exploited?
CVE-2026-63984 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 1% probability of exploitation in the next 30 days, which ranks it in the top 58.4% of all scored CVEs.
What is the CVSS score of CVE-2026-63984?
CVE-2026-63984 has a CVSS v4.0 base score of 9.8 (CNA self-assessment; NVD's own analysis pending).
How do I remediate CVE-2026-63984?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-63984, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

See which npm, PyPI, Go, and Maven packages are affected by CVE-2026-63984

Explore →

Is Your Infrastructure Affected by CVE-2026-63984?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.