CVE-2026-43330 (GCVE-0-2026-43330)
Vulnerability from cvelistv5 – Published: 2026-05-08 13:31 – Updated: 2026-05-08 13:31
VLAI?
Title
crypto: caam - fix overflow on long hmac keys
Summary
In the Linux kernel, the following vulnerability has been resolved:
crypto: caam - fix overflow on long hmac keys
When a key longer than block size is supplied, it is copied and then
hashed into the real key. The memory allocated for the copy needs to
be rounded to DMA cache alignment, as otherwise the hashed key may
corrupt neighbouring memory.
The copying is performed using kmemdup, however this leads to an overflow:
reading more bytes (aligned_len - keylen) from the keylen source buffer.
Fix this by replacing kmemdup with kmalloc, followed by memcpy.
Severity ?
No CVSS data available.
Assigner
References
Impacted products
| Vendor | Product | Version | ||
|---|---|---|---|---|
| Linux | Linux |
Affected:
199354d7fb6eaa2cc5bb650af0bca624baffee35 , < 31022cfde5235c45fa765f0aabeff5f0652852f2
(git)
Affected: 199354d7fb6eaa2cc5bb650af0bca624baffee35 , < c2fb4984fe09fc176fe4c12d5e3edf626df6511d (git) Affected: 199354d7fb6eaa2cc5bb650af0bca624baffee35 , < aa545df011338df13f0833fc1fabcb15c0521959 (git) Affected: 199354d7fb6eaa2cc5bb650af0bca624baffee35 , < cebc5ebd958346195b77f42d0cd5141b4e448fae (git) Affected: 199354d7fb6eaa2cc5bb650af0bca624baffee35 , < 80688afb9c35b3934ce2d6be9973758915e2e0ef (git) |
||
{
"containers": {
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"drivers/crypto/caam/caamalg_qi2.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "31022cfde5235c45fa765f0aabeff5f0652852f2",
"status": "affected",
"version": "199354d7fb6eaa2cc5bb650af0bca624baffee35",
"versionType": "git"
},
{
"lessThan": "c2fb4984fe09fc176fe4c12d5e3edf626df6511d",
"status": "affected",
"version": "199354d7fb6eaa2cc5bb650af0bca624baffee35",
"versionType": "git"
},
{
"lessThan": "aa545df011338df13f0833fc1fabcb15c0521959",
"status": "affected",
"version": "199354d7fb6eaa2cc5bb650af0bca624baffee35",
"versionType": "git"
},
{
"lessThan": "cebc5ebd958346195b77f42d0cd5141b4e448fae",
"status": "affected",
"version": "199354d7fb6eaa2cc5bb650af0bca624baffee35",
"versionType": "git"
},
{
"lessThan": "80688afb9c35b3934ce2d6be9973758915e2e0ef",
"status": "affected",
"version": "199354d7fb6eaa2cc5bb650af0bca624baffee35",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"drivers/crypto/caam/caamalg_qi2.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.3"
},
{
"lessThan": "6.3",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.6.*",
"status": "unaffected",
"version": "6.6.134",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.81",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.18.*",
"status": "unaffected",
"version": "6.18.22",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.19.*",
"status": "unaffected",
"version": "6.19.12",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "7.0",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.6.134",
"versionStartIncluding": "6.3",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12.81",
"versionStartIncluding": "6.3",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.18.22",
"versionStartIncluding": "6.3",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.19.12",
"versionStartIncluding": "6.3",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "7.0",
"versionStartIncluding": "6.3",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\ncrypto: caam - fix overflow on long hmac keys\n\nWhen a key longer than block size is supplied, it is copied and then\nhashed into the real key. The memory allocated for the copy needs to\nbe rounded to DMA cache alignment, as otherwise the hashed key may\ncorrupt neighbouring memory.\n\nThe copying is performed using kmemdup, however this leads to an overflow:\nreading more bytes (aligned_len - keylen) from the keylen source buffer.\nFix this by replacing kmemdup with kmalloc, followed by memcpy."
}
],
"providerMetadata": {
"dateUpdated": "2026-05-08T13:31:18.133Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/31022cfde5235c45fa765f0aabeff5f0652852f2"
},
{
"url": "https://git.kernel.org/stable/c/c2fb4984fe09fc176fe4c12d5e3edf626df6511d"
},
{
"url": "https://git.kernel.org/stable/c/aa545df011338df13f0833fc1fabcb15c0521959"
},
{
"url": "https://git.kernel.org/stable/c/cebc5ebd958346195b77f42d0cd5141b4e448fae"
},
{
"url": "https://git.kernel.org/stable/c/80688afb9c35b3934ce2d6be9973758915e2e0ef"
}
],
"title": "crypto: caam - fix overflow on long hmac keys",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2026-43330",
"datePublished": "2026-05-08T13:31:18.133Z",
"dateReserved": "2026-05-01T14:12:56.002Z",
"dateUpdated": "2026-05-08T13:31:18.133Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-43330",
"date": "2026-05-09",
"epss": "0.00018",
"percentile": "0.04917"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-43330\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-05-08T14:16:42.650\",\"lastModified\":\"2026-05-08T14:16:42.650\",\"vulnStatus\":\"Received\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\ncrypto: caam - fix overflow on long hmac keys\\n\\nWhen a key longer than block size is supplied, it is copied and then\\nhashed into the real key. The memory allocated for the copy needs to\\nbe rounded to DMA cache alignment, as otherwise the hashed key may\\ncorrupt neighbouring memory.\\n\\nThe copying is performed using kmemdup, however this leads to an overflow:\\nreading more bytes (aligned_len - keylen) from the keylen source buffer.\\nFix this by replacing kmemdup with kmalloc, followed by memcpy.\"}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/31022cfde5235c45fa765f0aabeff5f0652852f2\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/80688afb9c35b3934ce2d6be9973758915e2e0ef\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/aa545df011338df13f0833fc1fabcb15c0521959\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/c2fb4984fe09fc176fe4c12d5e3edf626df6511d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/cebc5ebd958346195b77f42d0cd5141b4e448fae\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}"
}
}
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…