FKIE_CVE-2026-98008
Vulnerability from fkie_nvd - Published: 2026-09-25 11:17 - Updated: 2026-09-25 11:17
Severity
Summary
In the Linux kernel, the following vulnerability has been resolved:
net: macb: fix NULL pointer dereference on unbind with fixed-link
When the device tree describes a fixed-link and has no "mdio" child
node, macb_mii_init() returns early without allocating the MDIO bus,
leaving bp->mii_bus as NULL.
Two cleanup paths then dereference this NULL bus:
1. On driver unbind, macb_remove() unconditionally calls
mdiobus_unregister(bp->mii_bus), which oopses:
Unable to handle kernel NULL pointer dereference at virtual address 00000000000004a8
pc : mdiobus_unregister+0x14/0xa4
lr : macb_remove+0x38/0xa4
Call trace:
mdiobus_unregister+0x14/0xa4 (P)
macb_remove+0x38/0xa4
platform_remove+0x20/0x30
device_release_driver_internal+0x1c8/0x224
unbind_store+0xb4/0xbc
2. On the probe error path in macb_probe(), reached when
macb_mii_init() has succeeded but a subsequent step fails, the
err_out_unregister_mdio label runs the same unconditional cleanup.
mdiobus_unregister() and mdiobus_free() do not guard against a NULL
bus, so guard the calls in both macb_remove() and the probe error
path.
References
Impacted products
| Vendor | Product | Version |
|---|
{
"affected": [
{
"affectedData": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"drivers/net/ethernet/cadence/macb_main.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "f737d999fcb8f276d77b01ea4c2016ee01dad19b",
"status": "affected",
"version": "d0c3601f2c4e12e7689b0f46ebc17525250ea8c3",
"versionType": "git"
},
{
"lessThan": "5710f6a74f63cbba0e15cd75917234916181c9d4",
"status": "affected",
"version": "d0c3601f2c4e12e7689b0f46ebc17525250ea8c3",
"versionType": "git"
},
{
"lessThan": "edb39c7666bb3924da761dfb417db85c1e5d8ad3",
"status": "affected",
"version": "d0c3601f2c4e12e7689b0f46ebc17525250ea8c3",
"versionType": "git"
},
{
"lessThan": "38b6be101006d3e7af972999f45d4f1e8250587a",
"status": "affected",
"version": "d0c3601f2c4e12e7689b0f46ebc17525250ea8c3",
"versionType": "git"
},
{
"status": "affected",
"version": "cafa5942bd2df3d80e3eeb2deb4bc050f7761f3d",
"versionType": "git"
},
{
"status": "affected",
"version": "c81dcaa9cd0b66816c2ecb6c5df0b6afde9c7da5",
"versionType": "git"
},
{
"status": "affected",
"version": "831e19e565b5210930fa183730071f8290c61263",
"versionType": "git"
},
{
"status": "affected",
"version": "81db1e52848694761a1aa162ce76198af9964ed8",
"versionType": "git"
},
{
"status": "affected",
"version": "19088c5378c9fea54e552d8bc7418a3aa1e06990",
"versionType": "git"
},
{
"lessThan": "5.11",
"status": "affected",
"version": "5.10.228",
"versionType": "semver"
},
{
"lessThan": "5.16",
"status": "affected",
"version": "5.15.169",
"versionType": "semver"
},
{
"lessThan": "6.2",
"status": "affected",
"version": "6.1.114",
"versionType": "semver"
},
{
"lessThan": "6.7",
"status": "affected",
"version": "6.6.58",
"versionType": "semver"
},
{
"lessThan": "6.12",
"status": "affected",
"version": "6.11.5",
"versionType": "semver"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"drivers/net/ethernet/cadence/macb_main.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.12"
},
{
"lessThan": "6.12",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.111",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.18.*",
"status": "unaffected",
"version": "6.18.53",
"versionType": "semver"
},
{
"lessThanOrEqual": "7.2.*",
"status": "unaffected",
"version": "7.2.7",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "7.3-rc3",
"versionType": "original_commit_for_fix"
}
]
}
],
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67"
}
],
"cveTags": [],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet: macb: fix NULL pointer dereference on unbind with fixed-link\n\nWhen the device tree describes a fixed-link and has no \"mdio\" child\nnode, macb_mii_init() returns early without allocating the MDIO bus,\nleaving bp-\u003emii_bus as NULL.\n\nTwo cleanup paths then dereference this NULL bus:\n\n1. On driver unbind, macb_remove() unconditionally calls\n mdiobus_unregister(bp-\u003emii_bus), which oopses:\n\n Unable to handle kernel NULL pointer dereference at virtual address 00000000000004a8\n pc : mdiobus_unregister+0x14/0xa4\n lr : macb_remove+0x38/0xa4\n Call trace:\n mdiobus_unregister+0x14/0xa4 (P)\n macb_remove+0x38/0xa4\n platform_remove+0x20/0x30\n device_release_driver_internal+0x1c8/0x224\n unbind_store+0xb4/0xbc\n\n2. On the probe error path in macb_probe(), reached when\n macb_mii_init() has succeeded but a subsequent step fails, the\n err_out_unregister_mdio label runs the same unconditional cleanup.\n\nmdiobus_unregister() and mdiobus_free() do not guard against a NULL\nbus, so guard the calls in both macb_remove() and the probe error\npath."
}
],
"id": "CVE-2026-98008",
"lastModified": "2026-09-25T11:17:29.080",
"metrics": {},
"published": "2026-09-25T11:17:29.080",
"references": [
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/38b6be101006d3e7af972999f45d4f1e8250587a"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/5710f6a74f63cbba0e15cd75917234916181c9d4"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/edb39c7666bb3924da761dfb417db85c1e5d8ad3"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"url": "https://git.kernel.org/stable/c/f737d999fcb8f276d77b01ea4c2016ee01dad19b"
}
],
"sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"vulnStatus": "Received"
}
Loading…
Loading…
Experimental. This forecast is provided for visualization only and may change without notice. Do not use it for operational decisions.
Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
Loading…
Loading…
The MITRE ATT&CK techniques below are AI-generated suggestions, inferred from the description of the
vulnerability by the CIRCL/vulnerability-attack-technique-classification-roberta-base
model, served locally by ML-Gateway.
They have not been verified by an analyst and are provided for guidance only.
The approach is described in our paper Mapping CVEs to MITRE ATT&CK Techniques: A Curated Gold-Set Classifier and the Limits of LLM-Assisted Label Expansion.
Browse all ATT&CK techniques and the vulnerabilities related to each.
The approach is described in our paper Mapping CVEs to MITRE ATT&CK Techniques: A Curated Gold-Set Classifier and the Limits of LLM-Assisted Label Expansion.
Browse all ATT&CK techniques and the vulnerabilities related to each.
Loading…
Related by attack behaviour
Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.
Loading…