CVE-2026-93203
Last modified
CVE-2026-93203 is a high-severity vulnerability rated 7.1/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: batman-adv: bla: avoid CRC corruption due to parallel claim add batadv_bla_add_claim() is used to add claims and modify the backbone of claims for CLAIM frames from remote backbones and local packets. When it handles a claim, it needs to either * add the new claim's CRC to the backbone CRC * remove the already existing claim's CRC from the old backbone and add it to the new backbone But when the "new" claim code was running in parallel to the "change backbone" code, it can happen that the CRC was invalid because the backbone_gw of the claim was changed twice in the "new" claim code path: * CPU0 creates the claim for gateway A and publishes it in the claim hash.
Description
In the Linux kernel, the following vulnerability has been resolved: batman-adv: bla: avoid CRC corruption due to parallel claim add batadv_bla_add_claim() is used to add claims and modify the backbone of claims for CLAIM frames from remote backbones and local packets. When it handles a claim, it needs to either * add the new claim's CRC to the backbone CRC * remove the already existing claim's CRC from the old backbone and add it to the new backbone But when the "new" claim code was running in parallel to the "change backbone" code, it can happen that the CRC was invalid because the backbone_gw of the claim was changed twice in the "new" claim code path: * CPU0 creates the claim for gateway A and publishes it in the claim hash. The crc16 of the address has not yet been added to A's crc at this point. * CPU1 processes a claim frame of gateway B for the same client, finds the just published claim, and performs the ownership change: it switches the pointer to B, removes the crc16 from A's crc - which never contained it - and adds it to B's crc. * CPU0 continues behind the creation branch, unconditionally switches the pointer back to A without compensating B's crc (its remove_crc is false for the creation path), and finally adds the crc16 to A's crc The CRC is then wrong for both: * claim belongs to A: but CRC is not part of backbone A's CRC * claim doesn't belong to B: CRC is still part of backbone B's CRC This wrong CRC is never recomputated from the stored claims. For local backbone claims, this can also not recovered using syncs. To avoid this, split the functionality in clear separate parts: * new claim which always adds claim CRC to the backbone CRC (but never changes the already set backbone_gw of the claim back) * update of existing claim which automatically changes the backbone_gw entry and only updates both backbone CRCs when there was an actual change
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 23721387c409087fd3b97e274f34d3ddc0970b74, < 3d4a9ae2c69c0fe4c3c69587288241243bb7a39b; >= 23721387c409087fd3b97e274f34d3ddc0970b74, < ad982d925f00d860d2467811256ffadcccd9e4a7; >= 23721387c409087fd3b97e274f34d3ddc0970b74, < d5b0e7574da5a485f4dbec32a15911900a4487c2; >= 23721387c409087fd3b97e274f34d3ddc0970b74, < a3e07db74f22a85aeeb51c600da5c98b9cbca11f; >= 23721387c409087fd3b97e274f34d3ddc0970b74, < 1d390db003cbb52cdd86837608bff3794501a5ea; >= 23721387c409087fd3b97e274f34d3ddc0970b74, < 8bcfa58c4277bff1882a23547c37ab08aa1de12f; >= 23721387c409087fd3b97e274f34d3ddc0970b74, < e54602d9e38db8573f2097d60c7ea8be0a5af1fa; >= 23721387c409087fd3b97e274f34d3ddc0970b74, < 08645ab95768b88e2ff85a89211994651710465b |
| Linux | Linux | 3.5 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-93203?
How severe is CVE-2026-93203?
How do I fix CVE-2026-93203?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-93198In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93199In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9320IBM WebSphere Application Server 9.0, and 8.5 and IBM WebSph…7.5
- CVE-2026-93200In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93201In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-93202In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93204In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9321Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2026-9322IBM WebSphere Application Server 9.0, and 8.5 and IBM WebSph…7.5
- CVE-2026-9323The urwid web display backend (urwid/display/web.py) generat…8.1
- CVE-2026-9324Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2026-9327IBM WebSphere Application Server 9.0, and 8.5 could allow an…8.1
Are you affected by CVE-2026-93203?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
