Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2025-71072 (GCVE-0-2025-71072)
Vulnerability from cvelistv5 – Published: 2026-01-13 15:31 – Updated: 2026-08-05 12:11| Vendor | Product | Version | |
|---|---|---|---|
| Linux | Linux |
Affected:
a2e459555c5f9da3e619b7e47a63f98574dc75f1 , < 4b0fe71fb3965d0db83cdfc2f4fe0b3227d70113
(git)
Affected: a2e459555c5f9da3e619b7e47a63f98574dc75f1 , < 4642686699a46718d7f2fb5acd1e9d866a9d9cca (git) Affected: a2e459555c5f9da3e619b7e47a63f98574dc75f1 , < e1b4c6a58304fd490124cc2b454d80edc786665c (git) |
|
| Linux | Linux |
Affected:
6.6
Unaffected: 0 , < 6.6 (semver) Unaffected: 6.12.64 , ≤ 6.12.* (semver) Unaffected: 6.18.3 , ≤ 6.18.* (semver) Unaffected: 6.19 , ≤ * (original_commit_for_fix) |
{
"containers": {
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"fs/libfs.c",
"include/linux/fs.h",
"mm/shmem.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "4b0fe71fb3965d0db83cdfc2f4fe0b3227d70113",
"status": "affected",
"version": "a2e459555c5f9da3e619b7e47a63f98574dc75f1",
"versionType": "git"
},
{
"lessThan": "4642686699a46718d7f2fb5acd1e9d866a9d9cca",
"status": "affected",
"version": "a2e459555c5f9da3e619b7e47a63f98574dc75f1",
"versionType": "git"
},
{
"lessThan": "e1b4c6a58304fd490124cc2b454d80edc786665c",
"status": "affected",
"version": "a2e459555c5f9da3e619b7e47a63f98574dc75f1",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"fs/libfs.c",
"include/linux/fs.h",
"mm/shmem.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.6"
},
{
"lessThan": "6.6",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.64",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.18.*",
"status": "unaffected",
"version": "6.18.3",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "6.19",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12.64",
"versionStartIncluding": "6.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.18.3",
"versionStartIncluding": "6.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.19",
"versionStartIncluding": "6.6",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nshmem: fix recovery on rename failures\n\nmaple_tree insertions can fail if we are seriously short on memory;\nsimple_offset_rename() does not recover well if it runs into that.\nThe same goes for simple_offset_rename_exchange().\n\nMoreover, shmem_whiteout() expects that if it succeeds, the caller will\nprogress to d_move(), i.e. that shmem_rename2() won\u0027t fail past the\nsuccessful call of shmem_whiteout().\n\nNot hard to fix, fortunately - mtree_store() can\u0027t fail if the index we\nare trying to store into is already present in the tree as a singleton.\n\nFor simple_offset_rename_exchange() that\u0027s enough - we just need to be\ncareful about the order of operations.\n\nFor simple_offset_rename() solution is to preinsert the target into the\ntree for new_dir; the rest can be done without any potentially failing\noperations.\n\nThat preinsertion has to be done in shmem_rename2() rather than in\nsimple_offset_rename() itself - otherwise we\u0027d need to deal with the\npossibility of failure after successful shmem_whiteout()."
}
],
"metrics": [
{
"cvssV3_1": {
"baseScore": 8.2,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"scenarios": [
{
"lang": "en",
"value": "AV:N - A remote NFS client can invoke ordinary RENAME on a writable tmpfs export through nfsd, reaching shmem_rename2() and the vulnerable offset helpers.\nAC:L - The failure requires severe memory pressure, but an attacker with write access to tmpfs can create files and consume memory while repeatedly attempting renames.\nPR:N - A reasonably configured anonymous writable NFS export can accept AUTH_NULL or mapped AUTH_SYS clients without prior authentication, subject only to directory write and search permissions.\nUI:N - The attacker directly sends rename operations and does not require a victim to perform any action.\nS:U - The corrupted directory state and resulting denial of service remain within the host kernel and filesystem security authority.\nC:N - The failure loses directory-offset mappings but creates no stale freed-object access, out-of-bounds read, or other information-disclosure primitive.\nI:L - A failed insertion can persistently desynchronize a live dentry from its maple-tree mapping, corrupting directory metadata and cookies, but it does not provide arbitrary data modification.\nA:H - The corrupted offsets can make local getdents or NFS READDIR repeat, omit, or fail to progress through entries, potentially rendering the exported directory unavailable to clients."
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-08-05T12:11:52.290Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/4b0fe71fb3965d0db83cdfc2f4fe0b3227d70113"
},
{
"url": "https://git.kernel.org/stable/c/4642686699a46718d7f2fb5acd1e9d866a9d9cca"
},
{
"url": "https://git.kernel.org/stable/c/e1b4c6a58304fd490124cc2b454d80edc786665c"
}
],
"title": "shmem: fix recovery on rename failures",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2025-71072",
"datePublished": "2026-01-13T15:31:26.089Z",
"dateReserved": "2026-01-13T15:30:19.647Z",
"dateUpdated": "2026-08-05T12:11:52.290Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2025-71072",
"date": "2026-08-15",
"epss": "0.0025",
"percentile": "0.16637"
},
"microsoft_vex": {
"current_release_date": "2026-06-28T01:57:44.000Z",
"cve": "CVE-2025-71072",
"id": "msrc_CVE-2025-71072",
"initial_release_date": "2026-01-02T00:00:00.000Z",
"product_status:known_affected": "11",
"source": "Microsoft CSAF VEX",
"status": "final",
"title": "shmem: fix recovery on rename failures",
"url": "https://msrc.microsoft.com/csaf/vex/2026/msrc_cve-2025-71072.json",
"version": "12"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2025-71072\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-01-13T16:16:06.633\",\"lastModified\":\"2026-07-30T06:24:48.857\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nshmem: fix recovery on rename failures\\n\\nmaple_tree insertions can fail if we are seriously short on memory;\\nsimple_offset_rename() does not recover well if it runs into that.\\nThe same goes for simple_offset_rename_exchange().\\n\\nMoreover, shmem_whiteout() expects that if it succeeds, the caller will\\nprogress to d_move(), i.e. that shmem_rename2() won\u0027t fail past the\\nsuccessful call of shmem_whiteout().\\n\\nNot hard to fix, fortunately - mtree_store() can\u0027t fail if the index we\\nare trying to store into is already present in the tree as a singleton.\\n\\nFor simple_offset_rename_exchange() that\u0027s enough - we just need to be\\ncareful about the order of operations.\\n\\nFor simple_offset_rename() solution is to preinsert the target into the\\ntree for new_dir; the rest can be done without any potentially failing\\noperations.\\n\\nThat preinsertion has to be done in shmem_rename2() rather than in\\nsimple_offset_rename() itself - otherwise we\u0027d need to deal with the\\npossibility of failure after successful shmem_whiteout().\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, la siguiente vulnerabilidad ha sido resuelta:\\n\\nshmem: corrige la recuperaci\u00f3n en fallos de renombrado\\n\\nLas inserciones de maple_tree pueden fallar si tenemos una escasez grave de memoria; simple_offset_rename() no se recupera bien si se encuentra con eso. Lo mismo ocurre con simple_offset_rename_exchange().\\n\\nAdem\u00e1s, shmem_whiteout() espera que, si tiene \u00e9xito, el llamador avance a d_move(), es decir, que shmem_rename2() no falle despu\u00e9s de la llamada exitosa de shmem_whiteout().\\n\\nNo es dif\u00edcil de arreglar, afortunadamente: mtree_store() no puede fallar si el \u00edndice en el que estamos intentando almacenar ya est\u00e1 presente en el \u00e1rbol como un singleton.\\n\\nPara simple_offset_rename_exchange() eso es suficiente; solo necesitamos tener cuidado con el orden de las operaciones.\\n\\nPara simple_offset_rename() la soluci\u00f3n es preinsertar el objetivo en el \u00e1rbol para new_dir; el resto se puede hacer sin ninguna operaci\u00f3n que pueda fallar.\\n\\nEsa preinserci\u00f3n tiene que hacerse en shmem_rename2() en lugar de en simple_offset_rename() mismo; de lo contrario, necesitar\u00edamos lidiar con la posibilidad de fallo despu\u00e9s de un shmem_whiteout() exitoso.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"fs/libfs.c\",\"include/linux/fs.h\",\"mm/shmem.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"a2e459555c5f9da3e619b7e47a63f98574dc75f1\",\"lessThan\":\"4b0fe71fb3965d0db83cdfc2f4fe0b3227d70113\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"a2e459555c5f9da3e619b7e47a63f98574dc75f1\",\"lessThan\":\"4642686699a46718d7f2fb5acd1e9d866a9d9cca\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"a2e459555c5f9da3e619b7e47a63f98574dc75f1\",\"lessThan\":\"e1b4c6a58304fd490124cc2b454d80edc786665c\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"fs/libfs.c\",\"include/linux/fs.h\",\"mm/shmem.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.6\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.6\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.12.64\",\"lessThanOrEqual\":\"6.12.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.18.3\",\"lessThanOrEqual\":\"6.18.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.19\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H\",\"baseScore\":8.2,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"LOW\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":4.2},{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":5.5,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"NVD-CWE-noinfo\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.6.1\",\"versionEndExcluding\":\"6.12.64\",\"matchCriteriaId\":\"44DC6A0C-1CDA-49FB-A889-9025B3D5827A\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.13\",\"versionEndExcluding\":\"6.18.3\",\"matchCriteriaId\":\"2DC484D8-FB4F-4112-900F-AE333B6FE7A7\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.6:-:*:*:*:*:*:*\",\"matchCriteriaId\":\"E346B162-D566-4E62-ABDE-ECBFB21B8BFD\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.19:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"17B67AA7-40D6-4AFA-8459-F200F3D7CFD1\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.19:rc2:*:*:*:*:*:*\",\"matchCriteriaId\":\"C47E4CC9-C826-4FA9-B014-7FE3D9B318B2\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.19:rc3:*:*:*:*:*:*\",\"matchCriteriaId\":\"F71D92C0-C023-48BD-B3B6-70B638EEE298\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.19:rc4:*:*:*:*:*:*\",\"matchCriteriaId\":\"13580667-0A98-40CC-B29F-D12790B91BDB\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.19:rc5:*:*:*:*:*:*\",\"matchCriteriaId\":\"CAD1FED7-CF48-47BF-AC7D-7B6FA3C065FC\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.19:rc6:*:*:*:*:*:*\",\"matchCriteriaId\":\"3EF854A1-ABB1-4E93-BE9A-44569EC76C0D\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.19:rc7:*:*:*:*:*:*\",\"matchCriteriaId\":\"F5DC0CA6-F0AF-4DDF-A882-3DADB9A886A7\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.19:rc8:*:*:*:*:*:*\",\"matchCriteriaId\":\"EB5B7DFC-C36B-45D8-922C-877569FDDF43\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/4642686699a46718d7f2fb5acd1e9d866a9d9cca\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/4b0fe71fb3965d0db83cdfc2f4fe0b3227d70113\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/e1b4c6a58304fd490124cc2b454d80edc786665c\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}",
"redhat_vex": {
"aggregate_severity": "Low",
"current_release_date": "2026-08-11T15:33:07+00:00",
"cve": "CVE-2025-71072",
"id": "CVE-2025-71072",
"initial_release_date": "2025-01-01T00:00:00+00:00",
"product_status:fixed": "309",
"product_status:known_affected": "14",
"product_status:known_not_affected": "184",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "kernel: shmem: fix recovery on rename failures",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2025/cve-2025-71072.json",
"version": "3"
},
"suse_vex": {
"aggregate_severity": "moderate",
"current_release_date": "2026-08-13T01:35:50Z",
"cve": "CVE-2025-71072",
"id": "CVE-2025-71072",
"initial_release_date": "2026-01-14T00:25:57Z",
"product_status:known_affected": "22",
"product_status:known_not_affected": "333",
"product_status:recommended": "42",
"source": "SUSE CSAF VEX",
"status": "interim",
"title": "SUSE CVE CVE-2025-71072",
"url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2025-71072.json",
"version": "12"
}
}
}
FKIE_CVE-2025-71072
Vulnerability from fkie_nvd - Published: 2026-01-13 16:16 - Updated: 2026-06-17 10:03| Vendor | Product | Version | |
|---|---|---|---|
| linux | linux_kernel | * | |
| linux | linux_kernel | * | |
| linux | linux_kernel | 6.6 | |
| linux | linux_kernel | 6.19 | |
| linux | linux_kernel | 6.19 | |
| linux | linux_kernel | 6.19 | |
| linux | linux_kernel | 6.19 | |
| linux | linux_kernel | 6.19 | |
| linux | linux_kernel | 6.19 | |
| linux | linux_kernel | 6.19 | |
| linux | linux_kernel | 6.19 |
{
"affected": [
{
"affectedData": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"fs/libfs.c",
"include/linux/fs.h",
"mm/shmem.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "4b0fe71fb3965d0db83cdfc2f4fe0b3227d70113",
"status": "affected",
"version": "a2e459555c5f9da3e619b7e47a63f98574dc75f1",
"versionType": "git"
},
{
"lessThan": "4642686699a46718d7f2fb5acd1e9d866a9d9cca",
"status": "affected",
"version": "a2e459555c5f9da3e619b7e47a63f98574dc75f1",
"versionType": "git"
},
{
"lessThan": "e1b4c6a58304fd490124cc2b454d80edc786665c",
"status": "affected",
"version": "a2e459555c5f9da3e619b7e47a63f98574dc75f1",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"fs/libfs.c",
"include/linux/fs.h",
"mm/shmem.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.6"
},
{
"lessThan": "6.6",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.64",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.18.*",
"status": "unaffected",
"version": "6.18.3",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "6.19",
"versionType": "original_commit_for_fix"
}
]
}
],
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67"
}
],
"configurations": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"matchCriteriaId": "44DC6A0C-1CDA-49FB-A889-9025B3D5827A",
"versionEndExcluding": "6.12.64",
"versionStartIncluding": "6.6.1",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"matchCriteriaId": "2DC484D8-FB4F-4112-900F-AE333B6FE7A7",
"versionEndExcluding": "6.18.3",
"versionStartIncluding": "6.13",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:6.6:-:*:*:*:*:*:*",
"matchCriteriaId": "E346B162-D566-4E62-ABDE-ECBFB21B8BFD",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:6.19:rc1:*:*:*:*:*:*",
"matchCriteriaId": "17B67AA7-40D6-4AFA-8459-F200F3D7CFD1",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:6.19:rc2:*:*:*:*:*:*",
"matchCriteriaId": "C47E4CC9-C826-4FA9-B014-7FE3D9B318B2",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:6.19:rc3:*:*:*:*:*:*",
"matchCriteriaId": "F71D92C0-C023-48BD-B3B6-70B638EEE298",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:6.19:rc4:*:*:*:*:*:*",
"matchCriteriaId": "13580667-0A98-40CC-B29F-D12790B91BDB",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:6.19:rc5:*:*:*:*:*:*",
"matchCriteriaId": "CAD1FED7-CF48-47BF-AC7D-7B6FA3C065FC",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:6.19:rc6:*:*:*:*:*:*",
"matchCriteriaId": "3EF854A1-ABB1-4E93-BE9A-44569EC76C0D",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:6.19:rc7:*:*:*:*:*:*",
"matchCriteriaId": "F5DC0CA6-F0AF-4DDF-A882-3DADB9A886A7",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:6.19:rc8:*:*:*:*:*:*",
"matchCriteriaId": "EB5B7DFC-C36B-45D8-922C-877569FDDF43",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"cveTags": [],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nshmem: fix recovery on rename failures\n\nmaple_tree insertions can fail if we are seriously short on memory;\nsimple_offset_rename() does not recover well if it runs into that.\nThe same goes for simple_offset_rename_exchange().\n\nMoreover, shmem_whiteout() expects that if it succeeds, the caller will\nprogress to d_move(), i.e. that shmem_rename2() won\u0027t fail past the\nsuccessful call of shmem_whiteout().\n\nNot hard to fix, fortunately - mtree_store() can\u0027t fail if the index we\nare trying to store into is already present in the tree as a singleton.\n\nFor simple_offset_rename_exchange() that\u0027s enough - we just need to be\ncareful about the order of operations.\n\nFor simple_offset_rename() solution is to preinsert the target into the\ntree for new_dir; the rest can be done without any potentially failing\noperations.\n\nThat preinsertion has to be done in shmem_rename2() rather than in\nsimple_offset_rename() itself - otherwise we\u0027d need to deal with the\npossibility of failure after successful shmem_whiteout()."
},
{
"lang": "es",
"value": "En el kernel de Linux, la siguiente vulnerabilidad ha sido resuelta:\n\nshmem: corrige la recuperaci\u00f3n en fallos de renombrado\n\nLas inserciones de maple_tree pueden fallar si tenemos una escasez grave de memoria; simple_offset_rename() no se recupera bien si se encuentra con eso. Lo mismo ocurre con simple_offset_rename_exchange().\n\nAdem\u00e1s, shmem_whiteout() espera que, si tiene \u00e9xito, el llamador avance a d_move(), es decir, que shmem_rename2() no falle despu\u00e9s de la llamada exitosa de shmem_whiteout().\n\nNo es dif\u00edcil de arreglar, afortunadamente: mtree_store() no puede fallar si el \u00edndice en el que estamos intentando almacenar ya est\u00e1 presente en el \u00e1rbol como un singleton.\n\nPara simple_offset_rename_exchange() eso es suficiente; solo necesitamos tener cuidado con el orden de las operaciones.\n\nPara simple_offset_rename() la soluci\u00f3n es preinsertar el objetivo en el \u00e1rbol para new_dir; el resto se puede hacer sin ninguna operaci\u00f3n que pueda fallar.\n\nEsa preinserci\u00f3n tiene que hacerse en shmem_rename2() en lugar de en simple_offset_rename() mismo; de lo contrario, necesitar\u00edamos lidiar con la posibilidad de fallo despu\u00e9s de un shmem_whiteout() exitoso."
}
],
"id": "CVE-2025-71072",
"lastModified": "2026-06-17T10:03:36.203",
"metrics": {
"cvssMetricV31": [
{
"cvssData": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"exploitabilityScore": 1.8,
"impactScore": 3.6,
"source": "nvd@nist.gov",
"type": "Primary"
}
]
},
"published": "2026-01-13T16:16:06.633",
"references": [
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"tags": [
"Patch"
],
"url": "https://git.kernel.org/stable/c/4642686699a46718d7f2fb5acd1e9d866a9d9cca"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"tags": [
"Patch"
],
"url": "https://git.kernel.org/stable/c/4b0fe71fb3965d0db83cdfc2f4fe0b3227d70113"
},
{
"source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"tags": [
"Patch"
],
"url": "https://git.kernel.org/stable/c/e1b4c6a58304fd490124cc2b454d80edc786665c"
}
],
"sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"vulnStatus": "Analyzed",
"weaknesses": [
{
"description": [
{
"lang": "en",
"value": "NVD-CWE-noinfo"
}
],
"source": "nvd@nist.gov",
"type": "Primary"
}
]
}
GHSA-2J2J-FMXQ-39XM
Vulnerability from github – Published: 2026-01-13 18:31 – Updated: 2026-03-25 21:30In the Linux kernel, the following vulnerability has been resolved:
shmem: fix recovery on rename failures
maple_tree insertions can fail if we are seriously short on memory; simple_offset_rename() does not recover well if it runs into that. The same goes for simple_offset_rename_exchange().
Moreover, shmem_whiteout() expects that if it succeeds, the caller will progress to d_move(), i.e. that shmem_rename2() won't fail past the successful call of shmem_whiteout().
Not hard to fix, fortunately - mtree_store() can't fail if the index we are trying to store into is already present in the tree as a singleton.
For simple_offset_rename_exchange() that's enough - we just need to be careful about the order of operations.
For simple_offset_rename() solution is to preinsert the target into the tree for new_dir; the rest can be done without any potentially failing operations.
That preinsertion has to be done in shmem_rename2() rather than in simple_offset_rename() itself - otherwise we'd need to deal with the possibility of failure after successful shmem_whiteout().
{
"affected": [],
"aliases": [
"CVE-2025-71072"
],
"database_specific": {
"cwe_ids": [],
"github_reviewed": false,
"github_reviewed_at": null,
"nvd_published_at": "2026-01-13T16:16:06Z",
"severity": "MODERATE"
},
"details": "In the Linux kernel, the following vulnerability has been resolved:\n\nshmem: fix recovery on rename failures\n\nmaple_tree insertions can fail if we are seriously short on memory;\nsimple_offset_rename() does not recover well if it runs into that.\nThe same goes for simple_offset_rename_exchange().\n\nMoreover, shmem_whiteout() expects that if it succeeds, the caller will\nprogress to d_move(), i.e. that shmem_rename2() won\u0027t fail past the\nsuccessful call of shmem_whiteout().\n\nNot hard to fix, fortunately - mtree_store() can\u0027t fail if the index we\nare trying to store into is already present in the tree as a singleton.\n\nFor simple_offset_rename_exchange() that\u0027s enough - we just need to be\ncareful about the order of operations.\n\nFor simple_offset_rename() solution is to preinsert the target into the\ntree for new_dir; the rest can be done without any potentially failing\noperations.\n\nThat preinsertion has to be done in shmem_rename2() rather than in\nsimple_offset_rename() itself - otherwise we\u0027d need to deal with the\npossibility of failure after successful shmem_whiteout().",
"id": "GHSA-2j2j-fmxq-39xm",
"modified": "2026-03-25T21:30:20Z",
"published": "2026-01-13T18:31:05Z",
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-71072"
},
{
"type": "WEB",
"url": "https://git.kernel.org/stable/c/4642686699a46718d7f2fb5acd1e9d866a9d9cca"
},
{
"type": "WEB",
"url": "https://git.kernel.org/stable/c/4b0fe71fb3965d0db83cdfc2f4fe0b3227d70113"
},
{
"type": "WEB",
"url": "https://git.kernel.org/stable/c/e1b4c6a58304fd490124cc2b454d80edc786665c"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"type": "CVSS_V3"
}
]
}
MSRC_CVE-2025-71072
Vulnerability from csaf_microsoft - Published: 2026-01-02 00:00 - Updated: 2026-07-13 01:44| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 17084-11 | — |
None Available
|
|
| Unresolved product id: 17084-10 | — |
None Available
|
|
| Unresolved product id: 17084-9 | — |
None Available
|
|
| Unresolved product id: 17084-8 | — |
None Available
|
|
| Unresolved product id: 17084-12 | — |
None Available
|
|
| Unresolved product id: 17084-7 | — |
None Available
|
|
| Unresolved product id: 17084-6 | — |
None Available
|
|
| Unresolved product id: 17084-5 | — |
None Available
|
|
| Unresolved product id: 17084-4 | — |
None Available
|
|
| Unresolved product id: 17084-3 | — |
None Available
|
|
| Unresolved product id: 17084-2 | — |
None Available
|
|
| Unresolved product id: 17084-1 | — |
None Available
|
| URL | Category |
|---|---|
| https://msrc.microsoft.com/csaf/vex/2026/msrc_cve… | self |
| https://support.microsoft.com/lifecycle | external |
| https://www.first.org/cvss | external |
| https://msrc.microsoft.com/csaf/vex/2026/msrc_cve… | self |
{
"document": {
"category": "csaf_vex",
"csaf_version": "2.0",
"distribution": {
"text": "Public",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en-US",
"notes": [
{
"category": "general",
"text": "To determine the support lifecycle for your software, see the Microsoft Support Lifecycle: https://support.microsoft.com/lifecycle",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "The information provided in the Microsoft Knowledge Base is provided \\\"as is\\\" without warranty of any kind. Microsoft disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. In no event shall Microsoft Corporation or its suppliers be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages, even if Microsoft Corporation or its suppliers have been advised of the possibility of such damages. Some states do not allow the exclusion or limitation of liability for consequential or incidental damages so the foregoing limitation may not apply.",
"title": "Disclaimer"
}
],
"publisher": {
"category": "vendor",
"contact_details": "secure@microsoft.com",
"name": "Microsoft Security Response Center",
"namespace": "https://msrc.microsoft.com"
},
"references": [
{
"category": "self",
"summary": "CVE-2025-71072 shmem: fix recovery on rename failures - VEX",
"url": "https://msrc.microsoft.com/csaf/vex/2026/msrc_cve-2025-71072.json"
},
{
"category": "external",
"summary": "Microsoft Support Lifecycle",
"url": "https://support.microsoft.com/lifecycle"
},
{
"category": "external",
"summary": "Common Vulnerability Scoring System",
"url": "https://www.first.org/cvss"
}
],
"title": "shmem: fix recovery on rename failures",
"tracking": {
"current_release_date": "2026-07-13T01:44:37.000Z",
"generator": {
"date": "2026-07-13T10:21:20.750Z",
"engine": {
"name": "MSRC Generator",
"version": "1.0"
}
},
"id": "msrc_CVE-2025-71072",
"initial_release_date": "2026-01-02T00:00:00.000Z",
"revision_history": [
{
"date": "2026-01-15T01:04:59.000Z",
"legacy_version": "1",
"number": "1",
"summary": "Information published."
},
{
"date": "2026-01-20T14:36:48.000Z",
"legacy_version": "2",
"number": "2",
"summary": "Information published."
},
{
"date": "2026-02-18T14:30:28.000Z",
"legacy_version": "3",
"number": "3",
"summary": "Information published."
},
{
"date": "2026-03-04T14:47:39.000Z",
"legacy_version": "4",
"number": "4",
"summary": "Information published."
},
{
"date": "2026-03-31T15:10:18.000Z",
"legacy_version": "5",
"number": "5",
"summary": "Information published."
},
{
"date": "2026-04-30T14:37:21.000Z",
"legacy_version": "6",
"number": "6",
"summary": "Information published."
},
{
"date": "2026-05-06T14:48:00.000Z",
"legacy_version": "7",
"number": "7",
"summary": "Information published."
},
{
"date": "2026-05-11T01:46:21.000Z",
"legacy_version": "8",
"number": "8",
"summary": "Information published."
},
{
"date": "2026-05-17T14:47:34.000Z",
"legacy_version": "9",
"number": "9",
"summary": "Information published."
},
{
"date": "2026-05-22T01:45:38.000Z",
"legacy_version": "9.1",
"number": "10",
"summary": "Information published."
},
{
"date": "2026-06-18T01:48:17.000Z",
"legacy_version": "1",
"number": "11",
"summary": "Information published."
},
{
"date": "2026-06-28T01:57:44.000Z",
"legacy_version": "11",
"number": "12",
"summary": "Information published."
},
{
"date": "2026-07-13T01:44:37.000Z",
"legacy_version": "12",
"number": "13",
"summary": "Information published."
}
],
"status": "final",
"version": "13"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "3.0",
"product": {
"name": "Azure Linux 3.0",
"product_id": "17084"
}
}
],
"category": "product_name",
"name": "Azure Linux"
},
{
"branches": [
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.119.3-3.azl3",
"product": {
"name": "azl3 kernel 0:6.6.119.3-3.azl3",
"product_id": "11"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.121.1-1.azl3",
"product": {
"name": "azl3 kernel 0:6.6.121.1-1.azl3",
"product_id": "10"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.126.1-1.azl3",
"product": {
"name": "azl3 kernel 0:6.6.126.1-1.azl3",
"product_id": "9"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.130.1-3.azl3",
"product": {
"name": "azl3 kernel 0:6.6.130.1-3.azl3",
"product_id": "8"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.119.3-1.azl3",
"product": {
"name": "azl3 kernel 0:6.6.119.3-1.azl3",
"product_id": "12"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.134.1-2.azl3",
"product": {
"name": "azl3 kernel 0:6.6.134.1-2.azl3",
"product_id": "7"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.137.1-2.azl3",
"product": {
"name": "azl3 kernel 0:6.6.137.1-2.azl3",
"product_id": "6"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.138.1-1.azl3",
"product": {
"name": "azl3 kernel 0:6.6.138.1-1.azl3",
"product_id": "5"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.139.1-1.azl3",
"product": {
"name": "azl3 kernel 0:6.6.139.1-1.azl3",
"product_id": "4"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.141.1-1.azl3",
"product": {
"name": "azl3 kernel 0:6.6.141.1-1.azl3",
"product_id": "3"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.143.1-1.azl3",
"product": {
"name": "azl3 kernel 0:6.6.143.1-1.azl3",
"product_id": "2"
}
},
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.144.1-1.azl3",
"product": {
"name": "azl3 kernel 0:6.6.144.1-1.azl3",
"product_id": "1"
}
}
],
"category": "product_name",
"name": "kernel"
}
],
"category": "vendor",
"name": "Microsoft"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.119.3-3.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-11"
},
"product_reference": "11",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.121.1-1.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-10"
},
"product_reference": "10",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.126.1-1.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-9"
},
"product_reference": "9",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.130.1-3.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-8"
},
"product_reference": "8",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.119.3-1.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-12"
},
"product_reference": "12",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.134.1-2.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-7"
},
"product_reference": "7",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.137.1-2.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-6"
},
"product_reference": "6",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.138.1-1.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-5"
},
"product_reference": "5",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.139.1-1.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-4"
},
"product_reference": "4",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.141.1-1.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-3"
},
"product_reference": "3",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.143.1-1.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-2"
},
"product_reference": "2",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.144.1-1.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-1"
},
"product_reference": "1",
"relates_to_product_reference": "17084"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-71072",
"notes": [
{
"category": "general",
"text": "Linux",
"title": "Assigning CNA"
}
],
"product_status": {
"known_affected": [
"17084-11",
"17084-10",
"17084-9",
"17084-8",
"17084-12",
"17084-7",
"17084-6",
"17084-5",
"17084-4",
"17084-3",
"17084-2",
"17084-1"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-71072 shmem: fix recovery on rename failures - VEX",
"url": "https://msrc.microsoft.com/csaf/vex/2026/msrc_cve-2025-71072.json"
}
],
"remediations": [
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-11"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-10"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-9"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-8"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-12"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-7"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-6"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-5"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-4"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-3"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-2"
]
},
{
"category": "none_available",
"date": "2026-01-15T01:04:59.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-1"
]
}
],
"title": "shmem: fix recovery on rename failures"
}
]
}
RHSA-2026:53330
Vulnerability from csaf_opensuse - Published: 2026-08-11 00:00 - Updated: 2026-08-11 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "security update for kernel",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This security update provides a functional equivalent of RHSA-2026:53330.\nThe original Red Hat(R) advisory is available from the Red Hat web site at\nhttps://access.redhat.com/errata/RHSA-2026:53330.\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "RHSA-2026:53330",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/rhsa-2026_53330.json"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-53143 page",
"url": "https://www.suse.com/security/cve/CVE-2024-53143/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-71072 page",
"url": "https://www.suse.com/security/cve/CVE-2025-71072/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-23415 page",
"url": "https://www.suse.com/security/cve/CVE-2026-23415/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-31488 page",
"url": "https://www.suse.com/security/cve/CVE-2026-31488/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-52923 page",
"url": "https://www.suse.com/security/cve/CVE-2026-52923/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-64368 page",
"url": "https://www.suse.com/security/cve/CVE-2026-64368/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-64531 page",
"url": "https://www.suse.com/security/cve/CVE-2026-64531/"
}
],
"title": "security update for kernel",
"tracking": {
"current_release_date": "2026-08-11T00:00:00Z",
"generator": {
"date": "2026-08-11T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "RHSA-2026:53330",
"initial_release_date": "2026-08-11T00:00:00Z",
"revision_history": [
{
"date": "2026-08-11T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"product": {
"name": "kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"product_id": "kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch"
}
},
{
"category": "product_version",
"name": "kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"product": {
"name": "kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"product_id": "kernel-doc-6.12.0-211.46.1.el10_2.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-core-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-debug-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-devel-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-headers-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-modules-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-tools-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "libperf-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "libperf-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "libperf-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "perf-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "perf-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "perf-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "python3-perf-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "rtla-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "rtla-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "rtla-6.12.0-211.46.1.el10_2.x86_64"
}
},
{
"category": "product_version",
"name": "rv-6.12.0-211.46.1.el10_2.x86_64",
"product": {
"name": "rv-6.12.0-211.46.1.el10_2.x86_64",
"product_id": "rv-6.12.0-211.46.1.el10_2.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Liberty Linux 10",
"product": {
"name": "SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sll:10"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch"
},
"product_reference": "kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-6.12.0-211.46.1.el10_2.noarch as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch"
},
"product_reference": "kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-headers-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "libperf-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "perf-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "rtla-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-6.12.0-211.46.1.el10_2.x86_64 as component of SUSE Liberty Linux 10",
"product_id": "SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
},
"product_reference": "rv-6.12.0-211.46.1.el10_2.x86_64",
"relates_to_product_reference": "SUSE Liberty Linux 10"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-53143",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-53143"
}
],
"notes": [
{
"category": "general",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nfsnotify: Fix ordering of iput() and watched_objects decrement\n\nEnsure the superblock is kept alive until we\u0027re done with iput().\nHolding a reference to an inode is not allowed unless we ensure the\nsuperblock stays alive, which fsnotify does by keeping the\nwatched_objects count elevated, so iput() must happen before the\nwatched_objects decrement.\nThis can lead to a UAF of something like sb-\u003es_fs_info in tmpfs, but the\nUAF is hard to hit because race orderings that oops are more likely, thanks\nto the CHECK_DATA_CORRUPTION() block in generic_shutdown_super().\n\nAlso, ensure that fsnotify_put_sb_watched_objects() doesn\u0027t call\nfsnotify_sb_watched_objects() on a superblock that may have already been\nfreed, which would cause a UAF read of sb-\u003es_fsnotify_info.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-53143",
"url": "https://www.suse.com/security/cve/CVE-2024-53143"
},
{
"category": "external",
"summary": "SUSE Bug 1234316 for CVE-2024-53143",
"url": "https://bugzilla.suse.com/1234316"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-11T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2024-53143"
},
{
"cve": "CVE-2025-71072",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-71072"
}
],
"notes": [
{
"category": "general",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nshmem: fix recovery on rename failures\n\nmaple_tree insertions can fail if we are seriously short on memory;\nsimple_offset_rename() does not recover well if it runs into that.\nThe same goes for simple_offset_rename_exchange().\n\nMoreover, shmem_whiteout() expects that if it succeeds, the caller will\nprogress to d_move(), i.e. that shmem_rename2() won\u0027t fail past the\nsuccessful call of shmem_whiteout().\n\nNot hard to fix, fortunately - mtree_store() can\u0027t fail if the index we\nare trying to store into is already present in the tree as a singleton.\n\nFor simple_offset_rename_exchange() that\u0027s enough - we just need to be\ncareful about the order of operations.\n\nFor simple_offset_rename() solution is to preinsert the target into the\ntree for new_dir; the rest can be done without any potentially failing\noperations.\n\nThat preinsertion has to be done in shmem_rename2() rather than in\nsimple_offset_rename() itself - otherwise we\u0027d need to deal with the\npossibility of failure after successful shmem_whiteout().",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-71072",
"url": "https://www.suse.com/security/cve/CVE-2025-71072"
},
{
"category": "external",
"summary": "SUSE Bug 1256636 for CVE-2025-71072",
"url": "https://bugzilla.suse.com/1256636"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-11T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-71072"
},
{
"cve": "CVE-2026-23415",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-23415"
}
],
"notes": [
{
"category": "general",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nfutex: Fix UaF between futex_key_to_node_opt() and vma_replace_policy()\n\nDuring futex_key_to_node_opt() execution, vma-\u003evm_policy is read under\nspeculative mmap lock and RCU. Concurrently, mbind() may call\nvma_replace_policy() which frees the old mempolicy immediately via\nkmem_cache_free().\n\nThis creates a race where __futex_key_to_node() dereferences a freed\nmempolicy pointer, causing a use-after-free read of mpol-\u003emode.\n\n[ 151.412631] BUG: KASAN: slab-use-after-free in __futex_key_to_node (kernel/futex/core.c:349)\n[ 151.414046] Read of size 2 at addr ffff888001c49634 by task e/87\n\n[ 151.415969] Call Trace:\n\n[ 151.416732] __asan_load2 (mm/kasan/generic.c:271)\n[ 151.416777] __futex_key_to_node (kernel/futex/core.c:349)\n[ 151.416822] get_futex_key (kernel/futex/core.c:374 kernel/futex/core.c:386 kernel/futex/core.c:593)\n\nFix by adding rcu to __mpol_put().",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-23415",
"url": "https://www.suse.com/security/cve/CVE-2026-23415"
},
{
"category": "external",
"summary": "SUSE Bug 1261497 for CVE-2026-23415",
"url": "https://bugzilla.suse.com/1261497"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:L/A:H",
"version": "3.1"
},
"products": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-11T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-23415"
},
{
"cve": "CVE-2026-31488",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-31488"
}
],
"notes": [
{
"category": "general",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\ndrm/amd/display: Do not skip unrelated mode changes in DSC validation\n\nStarting with commit 17ce8a6907f7 (\"drm/amd/display: Add dsc pre-validation in\natomic check\"), amdgpu resets the CRTC state mode_changed flag to false when\nrecomputing the DSC configuration results in no timing change for a particular\nstream.\n\nHowever, this is incorrect in scenarios where a change in MST/DSC configuration\nhappens in the same KMS commit as another (unrelated) mode change. For example,\nthe integrated panel of a laptop may be configured differently (e.g., HDR\nenabled/disabled) depending on whether external screens are attached. In this\ncase, plugging in external DP-MST screens may result in the mode_changed flag\nbeing dropped incorrectly for the integrated panel if its DSC configuration\ndid not change during precomputation in pre_validate_dsc().\n\nAt this point, however, dm_update_crtc_state() has already created new streams\nfor CRTCs with DSC-independent mode changes. In turn,\namdgpu_dm_commit_streams() will never release the old stream, resulting in a\nmemory leak. amdgpu_dm_atomic_commit_tail() will never acquire a reference to\nthe new stream either, which manifests as a use-after-free when the stream gets\ndisabled later on:\n\nBUG: KASAN: use-after-free in dc_stream_release+0x25/0x90 [amdgpu]\nWrite of size 4 at addr ffff88813d836524 by task kworker/9:9/29977\n\nWorkqueue: events drm_mode_rmfb_work_fn\nCall Trace:\n \u003cTASK\u003e\n dump_stack_lvl+0x6e/0xa0\n print_address_description.constprop.0+0x88/0x320\n ? dc_stream_release+0x25/0x90 [amdgpu]\n print_report+0xfc/0x1ff\n ? srso_alias_return_thunk+0x5/0xfbef5\n ? __virt_addr_valid+0x225/0x4e0\n ? dc_stream_release+0x25/0x90 [amdgpu]\n kasan_report+0xe1/0x180\n ? dc_stream_release+0x25/0x90 [amdgpu]\n kasan_check_range+0x125/0x200\n dc_stream_release+0x25/0x90 [amdgpu]\n dc_state_destruct+0x14d/0x5c0 [amdgpu]\n dc_state_release.part.0+0x4e/0x130 [amdgpu]\n dm_atomic_destroy_state+0x3f/0x70 [amdgpu]\n drm_atomic_state_default_clear+0x8ee/0xf30\n ? drm_mode_object_put.part.0+0xb1/0x130\n __drm_atomic_state_free+0x15c/0x2d0\n atomic_remove_fb+0x67e/0x980\n\nSince there is no reliable way of figuring out whether a CRTC has unrelated\nmode changes pending at the time of DSC validation, remember the value of the\nmode_changed flag from before the point where a CRTC was marked as potentially\naffected by a change in DSC configuration. Reset the mode_changed flag to this\nearlier value instead in pre_validate_dsc().\n\n(cherry picked from commit cc7c7121ae082b7b82891baa7280f1ff2608f22b)",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-31488",
"url": "https://www.suse.com/security/cve/CVE-2026-31488"
},
{
"category": "external",
"summary": "SUSE Bug 1262746 for CVE-2026-31488",
"url": "https://bugzilla.suse.com/1262746"
},
{
"category": "external",
"summary": "SUSE Bug 1262777 for CVE-2026-31488",
"url": "https://bugzilla.suse.com/1262777"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-11T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-31488"
},
{
"cve": "CVE-2026-52923",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-52923"
}
],
"notes": [
{
"category": "general",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nipc: limit next_id allocation to the valid ID range\n\nThe checkpoint/restore sysctl path can request the next SysV IPC id\nthrough ids-\u003enext_id. ipc_idr_alloc() currently forwards that request to\nidr_alloc() with an open-ended upper bound.\n\nIf the valid tail of the SysV IPC id space is full, the allocation can\nspill beyond ipc_mni. The returned SysV IPC id still uses the normal\nindex encoding, so later lookup and removal can target the wrong slot. \nThis leaves the real IDR entry behind and breaks the IDR state for the\nobject.\n\nThe bug is in ipc_idr_alloc() in the checkpoint/restore path.\n\n1. ids-\u003enext_id is passed to:\n\n idr_alloc(\u0026ids-\u003eipcs_idr, new, ipcid_to_idx(next_id), 0, ...)\n\n2. The zero upper bound makes the allocation effectively open-ended.\n Once the valid SysV IPC tail is occupied, idr_alloc() can spill past\n ipc_mni and allocate an entry beyond the valid IPC id range.\n\n3. The new object id is still encoded with the narrower SysV IPC index\n width:\n\n new-\u003eid = (new-\u003eseq \u003c\u003c ipcmni_seq_shift()) + idx\n\n4. Later removal goes through ipc_rmid(), which uses:\n\n ipcid_to_idx(ipcp-\u003eid)\n\n That truncates the real IDR index. An object actually stored at a\n high index can then be removed as if it lived at a low in-range\n index.\n\n5. For shared memory, shm_destroy() frees the current object anyway, but\n the real high IDR slot is left behind as a dangling pointer.\n\n6. A subsequent walk of /proc/sysvipc/shm reaches the stale IDR entry\n and dereferences freed memory.\n\nPrevent this by bounding the requested allocation to ipc_mni so the\ncheckpoint/restore path fails once the valid range is exhausted.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-52923",
"url": "https://www.suse.com/security/cve/CVE-2026-52923"
},
{
"category": "external",
"summary": "SUSE Bug 1269033 for CVE-2026-52923",
"url": "https://bugzilla.suse.com/1269033"
},
{
"category": "external",
"summary": "SUSE Bug 1269034 for CVE-2026-52923",
"url": "https://bugzilla.suse.com/1269034"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-11T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-52923"
},
{
"cve": "CVE-2026-64368",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-64368"
}
],
"notes": [
{
"category": "general",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nmm/slab: do not limit zeroing to orig_size when only red zoning is enabled\n\nWhen init (zeroing) on allocation is requested, for kmalloc() we\ngenerally have to zero the full object size even if a smaller size is\nrequested, in order to provide krealloc()\u0027s __GFP_ZERO guarantees.\n\nBut if we track the requested size, krealloc() uses that information to\ndo the right thing, so we can zero only the requested size. With red\nzoning also enabled, any extra size became part of the red zone, so it\nmust not be zeroed and thus we must zero only the requested size.\n\nHowever the current check is imprecise, and will trigger also when only\nSLAB_RED_ZONE is enabled without SLAB_STORE_USER (which enables tracking\nthe requested size). This means enabling red zoning alone can compromise\nkrealloc()\u0027s __GFP_ZERO contract.\n\nFix this by using slub_debug_orig_size() instead, which is the exact\ncheck for whether the requested size is tracked. We don\u0027t need to care\nif red zoning is also enabled or not. Also update and expand the\ncomment accordingly.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-64368",
"url": "https://www.suse.com/security/cve/CVE-2026-64368"
},
{
"category": "external",
"summary": "SUSE Bug 1273997 for CVE-2026-64368",
"url": "https://bugzilla.suse.com/1273997"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-11T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-64368"
},
{
"cve": "CVE-2026-64531",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-64531"
}
],
"notes": [
{
"category": "general",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet: openvswitch: reject oversized nested action attrs\n\nOpen vSwitch stores generated flow actions as nlattrs, whose nla_len\nfield is u16. Commit a1e64addf3ff (\"net: openvswitch: remove\nmisbehaving actions length check\") allowed the total sw_flow_actions\nstream to grow beyond 64 KiB, which is valid, but also removed the last\nguard preventing a generated nested action attribute from exceeding\nU16_MAX.\n\nAn oversized generated container can thus be closed with a truncated\nnla_len. A later dump or teardown then walks a structurally different\nstream than the one that was validated. In particular, an oversized\nnested CLONE/CT action may cause subsequent bytes in the generated\nstream to be interpreted as independent actions.\n\nKeep the larger total-action-stream behavior, but make nested action\nclose reject generated containers that do not fit in nla_len, and return\nthe error through all callers. For recursive SAMPLE, CLONE, DEC_TTL, and\nCHECK_PKT_LEN builders, trim resource-owning action-list tails in reverse\nconstruction order before discarding failed wrappers, so resources copied\ninto the rejected tails are released before the wrappers are removed.\n\nMost failed outer wrappers are discarded by truncating actions_len after\nchild resources have been released. CHECK_PKT_LEN also trims its parent\nafter branch resources are gone. SET/TUNNEL close failures unwind their\nknown tun_dst ownership directly, and SET_TO_MASKED has no external\nownership and truncates on close failure.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-64531",
"url": "https://www.suse.com/security/cve/CVE-2026-64531"
},
{
"category": "external",
"summary": "SUSE Bug 1272372 for CVE-2026-64531",
"url": "https://bugzilla.suse.com/1272372"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Liberty Linux 10:kernel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-abi-stablelists-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-cross-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-debug-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-devel-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-doc-6.12.0-211.46.1.el10_2.noarch",
"SUSE Liberty Linux 10:kernel-headers-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-modules-extra-matched-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-debug-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-core-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-rt-modules-extra-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-tools-libs-devel-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:kernel-uki-virt-addons-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:libperf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:python3-perf-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rtla-6.12.0-211.46.1.el10_2.x86_64",
"SUSE Liberty Linux 10:rv-6.12.0-211.46.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-11T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-64531"
}
]
}
rlsa-2026:53330
Vulnerability from osv_rocky
The kernel packages contain the Linux kernel, the core of any Linux operating system.
Security Fix(es):
-
kernel: fsnotify: Fix ordering of iput() and watched_objects decrement (CVE-2024-53143)
-
kernel: shmem: fix recovery on rename failures (CVE-2025-71072)
-
kernel: futex: Fix UaF between futex_key_to_node_opt() and vma_replace_policy() (CVE-2026-23415)
-
kernel: drm/amd/display: Do not skip unrelated mode changes in DSC validation (CVE-2026-31488)
-
kernel: ipc: limit next_id allocation to the valid ID range (CVE-2026-52923)
-
kernel: mm/slab: do not limit zeroing to orig_size when only red zoning is enabled (CVE-2026-64368)
-
kernel: net: openvswitch: reject oversized nested action attrs (CVE-2026-64531)
Bug Fix(es) and Enhancement(s):
-
Kernel oops after increasing max number of mac addresses of a mlx5 VF [rhel-10.2.z] (JIRA:Rocky Linux-213035)
-
Rocky Linux10.0 - s390/pkey: Check length in PKEY_VERIFYPROTK ioctl [rhel-10.2.z] (JIRA:Rocky Linux-222503)
-
Rocky Linux10.0 - s390/pkey: Check length in pkey_pckmo handler implementation [rhel-10.2.z] (JIRA:Rocky Linux-222505)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
{
"affected": [
{
"package": {
"ecosystem": "Rocky Linux:10",
"name": "kernel",
"purl": "pkg:rpm/rocky-linux/kernel?distro=rocky-linux-10\u0026epoch=0"
},
"ranges": [
{
"database_specific": {
"yum_repository": "BaseOS"
},
"events": [
{
"introduced": "0"
},
{
"fixed": "0:6.12.0-211.46.1.el10_2"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [
{
"name": "Rocky Enterprise Software Foundation"
},
{
"name": "Red Hat"
}
],
"database_specific": {
"license": "CC-BY-4.0",
"license_url": "https://creativecommons.org/licenses/by/4.0/",
"source_advisory": "RHSA-2026:53330"
},
"details": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: fsnotify: Fix ordering of iput() and watched_objects decrement (CVE-2024-53143)\n\n* kernel: shmem: fix recovery on rename failures (CVE-2025-71072)\n\n* kernel: futex: Fix UaF between futex_key_to_node_opt() and vma_replace_policy() (CVE-2026-23415)\n\n* kernel: drm/amd/display: Do not skip unrelated mode changes in DSC validation (CVE-2026-31488)\n\n* kernel: ipc: limit next_id allocation to the valid ID range (CVE-2026-52923)\n\n* kernel: mm/slab: do not limit zeroing to orig_size when only red zoning is enabled (CVE-2026-64368)\n\n* kernel: net: openvswitch: reject oversized nested action attrs (CVE-2026-64531)\n\nBug Fix(es) and Enhancement(s):\n\n* Kernel oops after increasing max number of mac addresses of a mlx5 VF [rhel-10.2.z] (JIRA:Rocky Linux-213035)\n\n* Rocky Linux10.0 - s390/pkey: Check length in PKEY_VERIFYPROTK ioctl [rhel-10.2.z] (JIRA:Rocky Linux-222503)\n\n* Rocky Linux10.0 - s390/pkey: Check length in pkey_pckmo handler implementation [rhel-10.2.z] (JIRA:Rocky Linux-222505)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"id": "RLSA-2026:53330",
"modified": "2026-08-15T12:09:25.096720Z",
"published": "2026-08-12T12:08:21.567220Z",
"references": [
{
"type": "ADVISORY",
"url": "https://errata.rockylinux.org/RLSA-2026:53330"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429083"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454320"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2330957"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460619"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492094"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2507213"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2507402"
},
{
"type": "ADVISORY",
"url": "https://access.redhat.com/errata/RHSA-2026:53330"
}
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Important: kernel security, bug fix, and enhancement update",
"upstream": [
"CVE-2024-53143",
"CVE-2025-71072",
"CVE-2026-23415",
"CVE-2026-31488",
"CVE-2026-52923",
"CVE-2026-64368",
"CVE-2026-64531"
]
}
ubuntu-cve-2025-71072
Vulnerability from osv_ubuntu
In the Linux kernel, the following vulnerability has been resolved: shmem: fix recovery on rename failures maple_tree insertions can fail if we are seriously short on memory; simple_offset_rename() does not recover well if it runs into that. The same goes for simple_offset_rename_exchange(). Moreover, shmem_whiteout() expects that if it succeeds, the caller will progress to d_move(), i.e. that shmem_rename2() won't fail past the successful call of shmem_whiteout(). Not hard to fix, fortunately - mtree_store() can't fail if the index we are trying to store into is already present in the tree as a singleton. For simple_offset_rename_exchange() that's enough - we just need to be careful about the order of operations. For simple_offset_rename() solution is to preinsert the target into the tree for new_dir; the rest can be done without any potentially failing operations. That preinsertion has to be done in shmem_rename2() rather than in simple_offset_rename() itself - otherwise we'd need to deal with the possibility of failure after successful shmem_whiteout().
| URL | Type | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{
"affected": [
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "block-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "crypto-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "crypto-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "dasd-extra-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "dasd-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fat-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fat-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fb-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "firewire-core-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "floppy-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fs-core-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fs-core-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fs-secondary-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fs-secondary-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "input-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "input-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "ipmi-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "ipmi-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "irda-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "irda-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "kernel-image-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "kernel-image-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-cloud-tools-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-cloud-tools-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-headers-4.15.0-23",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-headers-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-headers-4.15.0-23-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-headers-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-hwe-edge-cloud-tools-4.15.0-23",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-hwe-edge-tools-4.15.0-23",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-hwe-edge-udebs-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-hwe-edge-udebs-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-4.15.0-23-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-unsigned-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-unsigned-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-modules-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-modules-4.15.0-23-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-modules-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-modules-extra-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-source-4.15.0",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-tools-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-tools-4.15.0-23-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-tools-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "md-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "md-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "message-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "mouse-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "mouse-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "multipath-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "multipath-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nfs-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nfs-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-pcmcia-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-shared-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-shared-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-usb-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-usb-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "parport-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "parport-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "pata-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "pcmcia-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "pcmcia-storage-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "plip-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "plip-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "ppp-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "ppp-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "sata-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "sata-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "scsi-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "scsi-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "serial-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "storage-core-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "storage-core-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "usb-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "usb-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "virtio-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "vlan-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "vlan-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:16.04:LTS",
"name": "linux-hwe-edge",
"purl": "pkg:deb/ubuntu/linux-hwe-edge@4.15.0-23.25~16.04.1?arch=source\u0026distro=xenial"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.8.0-28.30~16.04.1",
"4.8.0-30.32~16.04.1",
"4.8.0-32.34~16.04.1",
"4.8.0-34.36~16.04.1",
"4.10.0-14.16~16.04.1",
"4.10.0-19.21~16.04.1",
"4.10.0-20.22~16.04.1",
"4.10.0-21.23~16.04.1",
"4.10.0-22.24~16.04.1",
"4.10.0-24.28~16.04.1",
"4.10.0-26.30~16.04.1",
"4.11.0-13.19~16.04.1",
"4.11.0-14.20~16.04.1",
"4.13.0-16.19~16.04.3",
"4.13.0-17.20~16.04.1",
"4.13.0-19.22~16.04.1",
"4.13.0-21.24~16.04.1",
"4.13.0-25.29~16.04.2",
"4.15.0-13.14~16.04.1",
"4.15.0-15.16~16.04.1",
"4.15.0-20.21~16.04.1",
"4.15.0-22.24~16.04.1",
"4.15.0-23.25~16.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.0-tools-5.0.0-1027",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-aws-headers-5.0.0-1027",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-buildinfo-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-cloud-tools-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-headers-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-image-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-modules-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-modules-extra-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-tools-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-aws-5.0",
"purl": "pkg:deb/ubuntu/linux-aws-5.0@5.0.0-1027.30?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.0.0-1021.24~18.04.1",
"5.0.0-1022.25~18.04.1",
"5.0.0-1023.26~18.04.1",
"5.0.0-1024.27~18.04.1",
"5.0.0-1025.28",
"5.0.0-1027.30"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.3-cloud-tools-5.3.0-1035",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-aws-5.3-headers-5.3.0-1035",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-aws-5.3-tools-5.3.0-1035",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-buildinfo-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-cloud-tools-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-headers-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-image-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-modules-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-modules-extra-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-tools-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-aws-5.3",
"purl": "pkg:deb/ubuntu/linux-aws-5.3@5.3.0-1035.37?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1016.17~18.04.1",
"5.3.0-1017.18~18.04.1",
"5.3.0-1019.21~18.04.1",
"5.3.0-1023.25~18.04.1",
"5.3.0-1028.30~18.04.1",
"5.3.0-1030.32~18.04.1",
"5.3.0-1032.34~18.04.2",
"5.3.0-1033.35",
"5.3.0-1034.36",
"5.3.0-1035.37"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-cloud-tools-5.0.0-1036",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-azure-headers-5.0.0-1036",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-azure-tools-5.0.0-1036",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-buildinfo-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-cloud-tools-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-headers-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-image-unsigned-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-modules-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-modules-extra-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-tools-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-azure",
"purl": "pkg:deb/ubuntu/linux-azure@5.0.0-1036.38?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.15.0-1002.2",
"4.15.0-1003.3",
"4.15.0-1004.4",
"4.15.0-1008.8",
"4.15.0-1009.9",
"4.15.0-1012.12",
"4.15.0-1013.13",
"4.15.0-1014.14",
"4.15.0-1018.18",
"4.15.0-1019.19",
"4.15.0-1021.21",
"4.15.0-1022.23",
"4.15.0-1023.24",
"4.15.0-1025.26",
"4.15.0-1028.29",
"4.15.0-1030.31",
"4.15.0-1031.32",
"4.15.0-1032.33",
"4.15.0-1035.36",
"4.15.0-1036.38",
"4.15.0-1037.39",
"4.18.0-1011.11~18.04.1",
"4.18.0-1013.13~18.04.1",
"4.18.0-1014.14~18.04.1",
"4.18.0-1018.18~18.04.1",
"4.18.0-1019.19~18.04.1",
"4.18.0-1020.20~18.04.1",
"4.18.0-1023.24~18.04.1",
"4.18.0-1024.25~18.04.1",
"4.18.0-1025.27~18.04.1",
"5.0.0-1014.14~18.04.1",
"5.0.0-1016.17~18.04.1",
"5.0.0-1018.19~18.04.1",
"5.0.0-1020.21~18.04.1",
"5.0.0-1022.23~18.04.1",
"5.0.0-1023.24~18.04.1",
"5.0.0-1025.27~18.04.1",
"5.0.0-1027.29~18.04.1",
"5.0.0-1028.30~18.04.1",
"5.0.0-1029.31~18.04.1",
"5.0.0-1031.33",
"5.0.0-1032.34",
"5.0.0-1035.37",
"5.0.0-1036.38"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.3-cloud-tools-5.3.0-1035",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-azure-5.3-headers-5.3.0-1035",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-azure-5.3-tools-5.3.0-1035",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-buildinfo-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-cloud-tools-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-headers-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-image-unsigned-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-modules-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-modules-extra-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-tools-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-azure-5.3",
"purl": "pkg:deb/ubuntu/linux-azure-5.3@5.3.0-1035.36?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1007.8~18.04.1",
"5.3.0-1008.9~18.04.1",
"5.3.0-1009.10~18.04.1",
"5.3.0-1010.11~18.04.1",
"5.3.0-1012.13~18.04.1",
"5.3.0-1013.14~18.04.1",
"5.3.0-1016.17~18.04.1",
"5.3.0-1018.19~18.04.1",
"5.3.0-1019.20~18.04.1",
"5.3.0-1020.21~18.04.1",
"5.3.0-1022.23~18.04.1",
"5.3.0-1028.29~18.04.1",
"5.3.0-1031.32~18.04.1",
"5.3.0-1032.33~18.04.1",
"5.3.0-1034.35~18.04.1",
"5.3.0-1035.36"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-edge-cloud-tools-5.0.0-1012",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-azure-edge-tools-5.0.0-1012",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-azure-headers-5.0.0-1012",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-buildinfo-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-cloud-tools-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-headers-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-image-unsigned-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-modules-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-modules-extra-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-tools-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-azure-edge",
"purl": "pkg:deb/ubuntu/linux-azure-edge@5.0.0-1012.12~18.04.2?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.18.0-1006.6~18.04.1",
"4.18.0-1007.7~18.04.1",
"4.18.0-1008.8~18.04.1",
"5.0.0-1012.12~18.04.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-gcp-headers-5.0.0-1034",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-gcp-tools-5.0.0-1034",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-headers-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-image-unsigned-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-modules-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-modules-extra-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-tools-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gcp",
"purl": "pkg:deb/ubuntu/linux-gcp@5.0.0-1034.35?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.15.0-1001.1",
"4.15.0-1003.3",
"4.15.0-1005.5",
"4.15.0-1006.6",
"4.15.0-1008.8",
"4.15.0-1009.9",
"4.15.0-1010.10",
"4.15.0-1014.14",
"4.15.0-1015.15",
"4.15.0-1017.18",
"4.15.0-1018.19",
"4.15.0-1019.20",
"4.15.0-1021.22",
"4.15.0-1023.24",
"4.15.0-1024.25",
"4.15.0-1025.26",
"4.15.0-1026.27",
"4.15.0-1027.28",
"4.15.0-1028.29",
"4.15.0-1029.31",
"4.15.0-1030.32",
"4.15.0-1032.34",
"4.15.0-1033.35",
"4.15.0-1034.36",
"4.15.0-1036.38",
"4.15.0-1037.39",
"4.15.0-1040.42",
"4.15.0-1042.45",
"4.15.0-1044.70",
"5.0.0-1020.20~18.04.1",
"5.0.0-1021.21~18.04.1",
"5.0.0-1025.26~18.04.1",
"5.0.0-1026.27~18.04.1",
"5.0.0-1028.29~18.04.1",
"5.0.0-1029.30~18.04.1",
"5.0.0-1031.32",
"5.0.0-1033.34",
"5.0.0-1034.35"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-gcp-5.3-headers-5.3.0-1032",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-gcp-5.3-tools-5.3.0-1032",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-headers-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-image-unsigned-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-modules-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-modules-extra-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-tools-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gcp-5.3",
"purl": "pkg:deb/ubuntu/linux-gcp-5.3@5.3.0-1032.34~18.04.1?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1008.9~18.04.1",
"5.3.0-1009.10~18.04.1",
"5.3.0-1010.11~18.04.1",
"5.3.0-1012.13~18.04.1",
"5.3.0-1014.15~18.04.1",
"5.3.0-1016.17~18.04.1",
"5.3.0-1017.18~18.04.1",
"5.3.0-1018.19~18.04.1",
"5.3.0-1020.22~18.04.1",
"5.3.0-1026.28~18.04.1",
"5.3.0-1029.31~18.04.1",
"5.3.0-1030.32~18.04.1",
"5.3.0-1032.34~18.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-gke-4.15-headers-4.15.0-1079",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-gke-4.15-tools-4.15.0-1079",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-headers-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-image-unsigned-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-modules-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-modules-extra-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-tools-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gke-4.15",
"purl": "pkg:deb/ubuntu/linux-gke-4.15@4.15.0-1079.84?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.15.0-1030.32",
"4.15.0-1032.34",
"4.15.0-1033.35",
"4.15.0-1034.36",
"4.15.0-1036.38",
"4.15.0-1037.39",
"4.15.0-1040.42",
"4.15.0-1041.43",
"4.15.0-1042.44",
"4.15.0-1044.46",
"4.15.0-1045.48",
"4.15.0-1046.49",
"4.15.0-1048.51",
"4.15.0-1049.52",
"4.15.0-1050.53",
"4.15.0-1052.55",
"4.15.0-1055.58",
"4.15.0-1057.60",
"4.15.0-1058.61",
"4.15.0-1059.62",
"4.15.0-1063.66",
"4.15.0-1064.67",
"4.15.0-1066.69",
"4.15.0-1067.70",
"4.15.0-1069.72",
"4.15.0-1070.73",
"4.15.0-1072.76",
"4.15.0-1073.78",
"4.15.0-1074.79",
"4.15.0-1076.81",
"4.15.0-1077.82",
"4.15.0-1078.83",
"4.15.0-1079.84"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-gke-5.4-headers-5.4.0-1080",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-gke-5.4-tools-5.4.0-1080",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-headers-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-image-unsigned-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-modules-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-modules-extra-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-tools-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gke-5.4",
"purl": "pkg:deb/ubuntu/linux-gke-5.4@5.4.0-1080.86~18.04.1?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1025.25~18.04.1",
"5.4.0-1027.28~18.04.1",
"5.4.0-1029.31~18.04.1",
"5.4.0-1030.32~18.04.1",
"5.4.0-1032.34~18.04.1",
"5.4.0-1033.35~18.04.1",
"5.4.0-1035.37~18.04.1",
"5.4.0-1036.38~18.04.1",
"5.4.0-1037.39~18.04.1",
"5.4.0-1039.41~18.04.1",
"5.4.0-1040.42~18.04.1",
"5.4.0-1042.44~18.04.1",
"5.4.0-1043.45~18.04.1",
"5.4.0-1044.46~18.04.1",
"5.4.0-1046.48~18.04.1",
"5.4.0-1049.52~18.04.1",
"5.4.0-1051.54~18.04.1",
"5.4.0-1052.55~18.04.1",
"5.4.0-1053.56~18.04.1",
"5.4.0-1054.57~18.04.1",
"5.4.0-1055.58~18.04.1",
"5.4.0-1056.59~18.04.1",
"5.4.0-1057.60~18.04.1",
"5.4.0-1059.62~18.04.1",
"5.4.0-1061.64~18.04.1",
"5.4.0-1062.65~18.04.1",
"5.4.0-1063.66~18.04.1",
"5.4.0-1065.68~18.04.1",
"5.4.0-1066.69~18.04.1",
"5.4.0-1067.70~18.04.1",
"5.4.0-1068.71~18.04.1",
"5.4.0-1071.76~18.04.3",
"5.4.0-1072.77~18.04.1",
"5.4.0-1074.79~18.04.1",
"5.4.0-1076.82~18.04.1",
"5.4.0-1078.84~18.04.1",
"5.4.0-1080.86~18.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-cloud-tools-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-gkeop-5.4-cloud-tools-5.4.0-1051",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-gkeop-5.4-headers-5.4.0-1051",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-gkeop-5.4-source-5.4.0",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-gkeop-5.4-tools-5.4.0-1051",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-headers-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-image-unsigned-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-modules-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-modules-extra-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-tools-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gkeop-5.4",
"purl": "pkg:deb/ubuntu/linux-gkeop-5.4@5.4.0-1051.54~18.04.1?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1001.1",
"5.4.0-1003.3",
"5.4.0-1004.5",
"5.4.0-1005.6",
"5.4.0-1007.8~18.04.1",
"5.4.0-1008.9~18.04.1",
"5.4.0-1009.10~18.04.1",
"5.4.0-1010.11~18.04.1",
"5.4.0-1011.12~18.04.2",
"5.4.0-1012.13~18.04.1",
"5.4.0-1013.14~18.04.1",
"5.4.0-1014.15~18.04.1",
"5.4.0-1015.16~18.04.1",
"5.4.0-1016.17~18.04.1",
"5.4.0-1018.19~18.04.1",
"5.4.0-1021.22~18.04.1",
"5.4.0-1022.23~18.04.1",
"5.4.0-1023.24~18.04.1",
"5.4.0-1024.25~18.04.1",
"5.4.0-1025.26~18.04.1",
"5.4.0-1026.27~18.04.1",
"5.4.0-1027.28~18.04.1",
"5.4.0-1029.30~18.04.2",
"5.4.0-1031.32~18.04.1",
"5.4.0-1032.33~18.04.1",
"5.4.0-1033.34~18.04.1",
"5.4.0-1034.35~18.04.1",
"5.4.0-1036.37~18.04.1",
"5.4.0-1037.38~18.04.1",
"5.4.0-1038.39~18.04.1",
"5.4.0-1039.40~18.04.1",
"5.4.0-1040.41~18.04.1",
"5.4.0-1043.44~18.04.1",
"5.4.0-1046.48~18.04.1",
"5.4.0-1048.51~18.04.1",
"5.4.0-1049.52~18.04.1",
"5.4.0-1051.54~18.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "crypto-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "fat-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "fb-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "firewire-core-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "floppy-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "fs-core-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "fs-secondary-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "input-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "ipmi-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "kernel-image-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-buildinfo-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-buildinfo-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-cloud-tools-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-cloud-tools-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-headers-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-headers-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-hwe-cloud-tools-5.3.0-76",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-hwe-headers-5.3.0-76",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-hwe-tools-5.3.0-76",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-hwe-udebs-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-image-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-image-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-image-unsigned-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-image-unsigned-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-modules-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-modules-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-modules-extra-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-source-5.3.0",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-tools-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-tools-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "md-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "message-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "mouse-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "multipath-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nfs-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nic-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nic-pcmcia-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nic-shared-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nic-usb-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "parport-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "pata-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "pcmcia-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "pcmcia-storage-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "plip-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "ppp-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "sata-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "scsi-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "serial-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "storage-core-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "usb-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "virtio-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "vlan-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-hwe",
"purl": "pkg:deb/ubuntu/linux-hwe@5.3.0-76.72?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.18.0-13.14~18.04.1",
"4.18.0-14.15~18.04.1",
"4.18.0-15.16~18.04.1",
"4.18.0-16.17~18.04.1",
"4.18.0-17.18~18.04.1",
"4.18.0-18.19~18.04.1",
"4.18.0-20.21~18.04.1",
"4.18.0-21.22~18.04.1",
"4.18.0-22.23~18.04.1",
"4.18.0-24.25~18.04.1",
"4.18.0-25.26~18.04.1",
"5.0.0-23.24~18.04.1",
"5.0.0-25.26~18.04.1",
"5.0.0-27.28~18.04.1",
"5.0.0-29.31~18.04.1",
"5.0.0-31.33~18.04.1",
"5.0.0-32.34~18.04.2",
"5.0.0-35.38~18.04.1",
"5.0.0-36.39~18.04.1",
"5.0.0-37.40~18.04.1",
"5.3.0-26.28~18.04.1",
"5.3.0-28.30~18.04.1",
"5.3.0-40.32~18.04.1",
"5.3.0-42.34~18.04.1",
"5.3.0-45.37~18.04.1",
"5.3.0-46.38~18.04.1",
"5.3.0-51.44~18.04.2",
"5.3.0-53.47~18.04.1",
"5.3.0-59.53~18.04.1",
"5.3.0-61.55~18.04.1",
"5.3.0-62.56~18.04.1",
"5.3.0-64.58~18.04.1",
"5.3.0-65.59",
"5.3.0-66.60",
"5.3.0-67.61",
"5.3.0-68.63",
"5.3.0-69.65",
"5.3.0-70.66",
"5.3.0-72.68",
"5.3.0-73.69",
"5.3.0-74.70",
"5.3.0-75.71",
"5.3.0-76.72"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "block-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "crypto-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "crypto-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "dasd-extra-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "dasd-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fat-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fat-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fb-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "firewire-core-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "floppy-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fs-core-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fs-core-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fs-secondary-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fs-secondary-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "input-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "input-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "ipmi-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "ipmi-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "kernel-image-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "kernel-image-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-buildinfo-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-buildinfo-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-buildinfo-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-cloud-tools-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-cloud-tools-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-headers-5.3.0-24",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-headers-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-headers-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-headers-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-hwe-edge-cloud-tools-5.3.0-24",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-hwe-edge-tools-5.3.0-24",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-hwe-edge-udebs-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-hwe-edge-udebs-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-unsigned-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-unsigned-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-modules-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-modules-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-modules-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-modules-extra-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-source-5.3.0",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-tools-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-tools-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-tools-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "md-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "md-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "message-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "mouse-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "mouse-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "multipath-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "multipath-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nfs-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nfs-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-pcmcia-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-shared-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-shared-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-usb-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-usb-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "parport-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "parport-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "pata-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "pcmcia-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "pcmcia-storage-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "plip-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "plip-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "ppp-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "ppp-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "sata-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "sata-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "scsi-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "scsi-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "serial-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "storage-core-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "storage-core-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "usb-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "usb-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "virtio-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "vlan-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "vlan-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-hwe-edge",
"purl": "pkg:deb/ubuntu/linux-hwe-edge@5.3.0-24.26~18.04.2?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.0.0-15.16~18.04.1",
"5.0.0-16.17~18.04.1",
"5.0.0-17.18~18.04.1",
"5.0.0-19.20~18.04.1",
"5.0.0-20.21~18.04.1",
"5.3.0-19.20~18.04.2",
"5.3.0-22.24~18.04.1",
"5.3.0-23.25~18.04.1",
"5.3.0-23.25~18.04.2",
"5.3.0-24.26~18.04.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "crypto-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "fat-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "fb-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "firewire-core-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "floppy-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "fs-core-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "fs-secondary-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "input-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "ipmi-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "irda-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "kernel-image-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-buildinfo-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-headers-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-image-unsigned-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-modules-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-oem-headers-4.15.0-1103",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-oem-tools-4.15.0-1103",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-tools-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-udebs-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "md-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "message-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "mouse-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "multipath-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nfs-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nic-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nic-pcmcia-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nic-shared-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nic-usb-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "parport-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "pata-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "pcmcia-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "pcmcia-storage-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "plip-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "ppp-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "sata-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "scsi-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "serial-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "storage-core-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "usb-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "virtio-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "vlan-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-oem",
"purl": "pkg:deb/ubuntu/linux-oem@4.15.0-1103.114?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.15.0-1002.3",
"4.15.0-1004.5",
"4.15.0-1006.9",
"4.15.0-1008.11",
"4.15.0-1009.12",
"4.15.0-1012.15",
"4.15.0-1013.16",
"4.15.0-1015.18",
"4.15.0-1017.20",
"4.15.0-1018.21",
"4.15.0-1021.24",
"4.15.0-1024.29",
"4.15.0-1026.31",
"4.15.0-1028.33",
"4.15.0-1030.35",
"4.15.0-1033.38",
"4.15.0-1034.39",
"4.15.0-1035.40",
"4.15.0-1036.41",
"4.15.0-1038.43",
"4.15.0-1039.44",
"4.15.0-1043.48",
"4.15.0-1045.50",
"4.15.0-1050.57",
"4.15.0-1056.65",
"4.15.0-1057.66",
"4.15.0-1059.68",
"4.15.0-1063.72",
"4.15.0-1064.73",
"4.15.0-1065.75",
"4.15.0-1066.76",
"4.15.0-1067.77",
"4.15.0-1069.79",
"4.15.0-1073.83",
"4.15.0-1076.86",
"4.15.0-1079.89",
"4.15.0-1080.90",
"4.15.0-1081.91",
"4.15.0-1087.97",
"4.15.0-1090.100",
"4.15.0-1091.101",
"4.15.0-1093.103",
"4.15.0-1094.104",
"4.15.0-1096.106",
"4.15.0-1097.107",
"4.15.0-1099.109",
"4.15.0-1100.110",
"4.15.0-1101.112",
"4.15.0-1102.113",
"4.15.0-1103.114"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-headers-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-image-unsigned-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-modules-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-modules-extra-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-oracle-5.0-headers-5.0.0-1014",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-oracle-5.0-tools-5.0.0-1014",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-tools-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-oracle-5.0",
"purl": "pkg:deb/ubuntu/linux-oracle-5.0@5.0.0-1014.19?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.0.0-1007.12~18.04.1",
"5.0.0-1008.13~18.04.1",
"5.0.0-1009.14~18.04.1",
"5.0.0-1010.15~18.04.1",
"5.0.0-1011.16",
"5.0.0-1013.18",
"5.0.0-1014.19"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-headers-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-image-unsigned-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-modules-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-modules-extra-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-oracle-5.3-headers-5.3.0-1030",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-oracle-5.3-tools-5.3.0-1030",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-tools-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-oracle-5.3",
"purl": "pkg:deb/ubuntu/linux-oracle-5.3@5.3.0-1030.32~18.04.1?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1011.12~18.04.1",
"5.3.0-1013.14~18.04.1",
"5.3.0-1014.15~18.04.1",
"5.3.0-1016.18~18.04.1",
"5.3.0-1018.20~18.04.1",
"5.3.0-1024.26~18.04.1",
"5.3.0-1027.29~18.04.1",
"5.3.0-1028.30~18.04.1",
"5.3.0-1030.32~18.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.11-cloud-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-aws-5.11-headers-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-aws-5.11-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-aws-5.11",
"purl": "pkg:deb/ubuntu/linux-aws-5.11@5.11.0-1028.31~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1009.9~20.04.2",
"5.11.0-1014.15~20.04.1",
"5.11.0-1016.17~20.04.1",
"5.11.0-1017.18~20.04.1",
"5.11.0-1019.20~20.04.1",
"5.11.0-1020.21~20.04.2",
"5.11.0-1021.22~20.04.2",
"5.11.0-1022.23~20.04.1",
"5.11.0-1023.24~20.04.1",
"5.11.0-1025.27~20.04.1",
"5.11.0-1027.30~20.04.1",
"5.11.0-1028.31~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.13-cloud-tools-5.13.0-1031",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-aws-5.13-headers-5.13.0-1031",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-aws-5.13-tools-5.13.0-1031",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-aws-5.13",
"purl": "pkg:deb/ubuntu/linux-aws-5.13@5.13.0-1031.35~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1008.9~20.04.2",
"5.13.0-1011.12~20.04.1",
"5.13.0-1012.13~20.04.1",
"5.13.0-1014.15~20.04.1",
"5.13.0-1017.19~20.04.1",
"5.13.0-1019.21~20.04.1",
"5.13.0-1021.23~20.04.2",
"5.13.0-1022.24~20.04.1",
"5.13.0-1023.25~20.04.1",
"5.13.0-1025.27~20.04.1",
"5.13.0-1028.31~20.04.1",
"5.13.0-1029.32~20.04.1",
"5.13.0-1031.35~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.8-cloud-tools-5.8.0-1042",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-aws-5.8-headers-5.8.0-1042",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-aws-5.8-tools-5.8.0-1042",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-image-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-aws-5.8",
"purl": "pkg:deb/ubuntu/linux-aws-5.8@5.8.0-1042.44~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-1035.37~20.04.1",
"5.8.0-1038.40~20.04.1",
"5.8.0-1041.43~20.04.1",
"5.8.0-1042.44~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.11-cloud-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-azure-5.11-headers-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-azure-5.11-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-buildinfo-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-cloud-tools-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-headers-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-image-unsigned-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-modules-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-modules-extra-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-tools-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-azure-5.11",
"purl": "pkg:deb/ubuntu/linux-azure-5.11@5.11.0-1028.31~20.04.2?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1007.7~20.04.2",
"5.11.0-1012.13~20.04.1",
"5.11.0-1013.14~20.04.1",
"5.11.0-1015.16~20.04.1",
"5.11.0-1017.18~20.04.1",
"5.11.0-1019.20~20.04.1",
"5.11.0-1020.21~20.04.1",
"5.11.0-1021.22~20.04.1",
"5.11.0-1022.23~20.04.1",
"5.11.0-1023.24~20.04.1",
"5.11.0-1025.27~20.04.1",
"5.11.0-1027.30~20.04.1",
"5.11.0-1028.31~20.04.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.13-cloud-tools-5.13.0-1031",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-azure-5.13-headers-5.13.0-1031",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-azure-5.13-tools-5.13.0-1031",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-azure-5.13",
"purl": "pkg:deb/ubuntu/linux-azure-5.13@5.13.0-1031.37~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1009.10~20.04.2",
"5.13.0-1012.14~20.04.1",
"5.13.0-1013.15~20.04.1",
"5.13.0-1014.16~20.04.1",
"5.13.0-1017.19~20.04.1",
"5.13.0-1021.24~20.04.1",
"5.13.0-1022.26~20.04.1",
"5.13.0-1023.27~20.04.1",
"5.13.0-1025.29~20.04.1",
"5.13.0-1028.33~20.04.1",
"5.13.0-1029.34~20.04.1",
"5.13.0-1031.37~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.8-cloud-tools-5.8.0-1043",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-azure-5.8-headers-5.8.0-1043",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-azure-5.8-tools-5.8.0-1043",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-azure-5.8",
"purl": "pkg:deb/ubuntu/linux-azure-5.8@5.8.0-1043.46~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-1033.35~20.04.1",
"5.8.0-1036.38~20.04.1",
"5.8.0-1039.42~20.04.1",
"5.8.0-1040.43~20.04.1",
"5.8.0-1041.44~20.04.1",
"5.8.0-1042.45~20.04.1",
"5.8.0-1043.46~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-image-unsigned-5.4.0-1103-azure-fde",
"binary_version": "5.4.0-1103.109+cvm1.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-azure-fde",
"purl": "pkg:deb/ubuntu/linux-azure-fde@5.4.0-1103.109+cvm1.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1063.66+cvm2.2",
"5.4.0-1063.66+cvm3.2",
"5.4.0-1064.67+cvm1.1",
"5.4.0-1065.68+cvm2.1",
"5.4.0-1067.70+cvm1.1",
"5.4.0-1068.71+cvm1.1",
"5.4.0-1069.72+cvm1.1",
"5.4.0-1070.73+cvm1.1",
"5.4.0-1072.75+cvm1.1",
"5.4.0-1073.76+cvm1.1",
"5.4.0-1074.77+cvm1.1",
"5.4.0-1076.79+cvm1.1",
"5.4.0-1078.81+cvm1.1",
"5.4.0-1080.83+cvm1.1",
"5.4.0-1083.87+cvm1.1",
"5.4.0-1085.90+cvm1.1",
"5.4.0-1085.90+cvm2.1",
"5.4.0-1086.91+cvm1.1",
"5.4.0-1089.94+cvm1.2",
"5.4.0-1090.95+cvm1.1",
"5.4.0-1091.96+cvm1.1",
"5.4.0-1092.97+cvm1.1",
"5.4.0-1095.101+cvm1.1",
"5.4.0-1098.104+cvm1.1",
"5.4.0-1100.106+cvm1.1",
"5.4.0-1103.109+cvm1.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-gcp-5.11-headers-5.11.0-1029",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-gcp-5.11-tools-5.11.0-1029",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-headers-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-image-unsigned-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-modules-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-modules-extra-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-tools-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gcp-5.11",
"purl": "pkg:deb/ubuntu/linux-gcp-5.11@5.11.0-1029.33~20.04.3?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1009.10~20.04.1",
"5.11.0-1014.16~20.04.1",
"5.11.0-1017.19~20.04.1",
"5.11.0-1018.20~20.04.2",
"5.11.0-1020.22~20.04.1",
"5.11.0-1021.23~20.04.1",
"5.11.0-1022.24~20.04.1",
"5.11.0-1023.25~20.04.1",
"5.11.0-1024.26~20.04.1",
"5.11.0-1026.29~20.04.1",
"5.11.0-1028.32~20.04.1",
"5.11.0-1029.33~20.04.3"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-gcp-5.13-headers-5.13.0-1033",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-gcp-5.13-tools-5.13.0-1033",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gcp-5.13",
"purl": "pkg:deb/ubuntu/linux-gcp-5.13@5.13.0-1033.40~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1008.9~20.04.3",
"5.13.0-1012.15~20.04.1",
"5.13.0-1013.16~20.04.1",
"5.13.0-1015.18~20.04.1",
"5.13.0-1019.23~20.04.1",
"5.13.0-1021.25~20.04.1",
"5.13.0-1023.28~20.04.1",
"5.13.0-1024.29~20.04.1",
"5.13.0-1025.30~20.04.1",
"5.13.0-1027.32~20.04.1",
"5.13.0-1030.36~20.04.1",
"5.13.0-1031.37~20.04.1",
"5.13.0-1033.40~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-gcp-5.8-headers-5.8.0-1039",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-gcp-5.8-tools-5.8.0-1039",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-headers-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-image-unsigned-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-modules-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-modules-extra-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-tools-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gcp-5.8",
"purl": "pkg:deb/ubuntu/linux-gcp-5.8@5.8.0-1039.41?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-1032.34~20.04.1",
"5.8.0-1035.37~20.04.1",
"5.8.0-1038.40~20.04.1",
"5.8.0-1039.41"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-gke-headers-5.4.0-1105",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-gke-tools-5.4.0-1105",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-headers-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-image-unsigned-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-modules-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-modules-extra-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-tools-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gke",
"purl": "pkg:deb/ubuntu/linux-gke@5.4.0-1105.112?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1033.35",
"5.4.0-1035.37",
"5.4.0-1036.38",
"5.4.0-1037.39",
"5.4.0-1039.41",
"5.4.0-1041.43",
"5.4.0-1042.44",
"5.4.0-1043.45",
"5.4.0-1044.46",
"5.4.0-1046.48",
"5.4.0-1049.52",
"5.4.0-1051.54",
"5.4.0-1052.55",
"5.4.0-1053.56",
"5.4.0-1054.57",
"5.4.0-1055.58",
"5.4.0-1056.59",
"5.4.0-1057.60",
"5.4.0-1059.62",
"5.4.0-1061.64",
"5.4.0-1062.65",
"5.4.0-1063.66",
"5.4.0-1065.68",
"5.4.0-1066.69",
"5.4.0-1067.70",
"5.4.0-1068.71",
"5.4.0-1071.76",
"5.4.0-1072.77",
"5.4.0-1074.79",
"5.4.0-1076.82",
"5.4.0-1078.84",
"5.4.0-1080.86",
"5.4.0-1081.87",
"5.4.0-1083.89",
"5.4.0-1084.90",
"5.4.0-1086.93",
"5.4.0-1087.94",
"5.4.0-1090.97",
"5.4.0-1091.98",
"5.4.0-1094.101",
"5.4.0-1095.102",
"5.4.0-1096.103",
"5.4.0-1097.104",
"5.4.0-1098.105",
"5.4.0-1099.106",
"5.4.0-1100.107",
"5.4.0-1101.108",
"5.4.0-1102.109",
"5.4.0-1103.110",
"5.4.0-1104.111",
"5.4.0-1105.112"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-gke-5.15-headers-5.15.0-1039",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-gke-5.15-tools-5.15.0-1039",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-headers-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-modules-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-tools-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gke-5.15",
"purl": "pkg:deb/ubuntu/linux-gke-5.15@5.15.0-1039.44~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.15.0-1011.14~20.04.1",
"5.15.0-1014.17~20.04.1",
"5.15.0-1015.18~20.04.1",
"5.15.0-1016.19~20.04.1",
"5.15.0-1019.23~20.04.1",
"5.15.0-1020.25~20.04.1",
"5.15.0-1023.28~20.04.2",
"5.15.0-1027.32~20.04.1",
"5.15.0-1028.33~20.04.1",
"5.15.0-1029.34~20.04.1",
"5.15.0-1031.36~20.04.1",
"5.15.0-1032.37~20.04.1",
"5.15.0-1033.38~20.04.1",
"5.15.0-1034.39~20.04.1",
"5.15.0-1036.41~20.04.1",
"5.15.0-1037.42~20.04.1",
"5.15.0-1038.43~20.04.1",
"5.15.0-1039.44~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-cloud-tools-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-gkeop-cloud-tools-5.4.0-1102",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-gkeop-headers-5.4.0-1102",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-gkeop-source-5.4.0",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-gkeop-tools-5.4.0-1102",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-headers-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-image-unsigned-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-modules-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-modules-extra-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-tools-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gkeop",
"purl": "pkg:deb/ubuntu/linux-gkeop@5.4.0-1102.106?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1008.9",
"5.4.0-1009.10",
"5.4.0-1010.11",
"5.4.0-1011.12",
"5.4.0-1012.13",
"5.4.0-1013.14",
"5.4.0-1014.15",
"5.4.0-1015.16",
"5.4.0-1016.17",
"5.4.0-1018.19",
"5.4.0-1021.22",
"5.4.0-1022.23",
"5.4.0-1023.24",
"5.4.0-1024.25",
"5.4.0-1025.26",
"5.4.0-1026.27",
"5.4.0-1027.28",
"5.4.0-1029.30",
"5.4.0-1031.32",
"5.4.0-1032.33",
"5.4.0-1033.34",
"5.4.0-1034.35",
"5.4.0-1036.37",
"5.4.0-1037.38",
"5.4.0-1038.39",
"5.4.0-1039.40",
"5.4.0-1040.41",
"5.4.0-1043.44",
"5.4.0-1046.48",
"5.4.0-1048.51",
"5.4.0-1049.52",
"5.4.0-1051.54",
"5.4.0-1052.55",
"5.4.0-1053.56",
"5.4.0-1054.57",
"5.4.0-1056.60",
"5.4.0-1057.61",
"5.4.0-1060.64",
"5.4.0-1061.65",
"5.4.0-1062.66",
"5.4.0-1064.68",
"5.4.0-1065.69",
"5.4.0-1066.70",
"5.4.0-1067.71",
"5.4.0-1068.72",
"5.4.0-1069.73",
"5.4.0-1070.74",
"5.4.0-1071.75",
"5.4.0-1072.76",
"5.4.0-1073.77",
"5.4.0-1074.78",
"5.4.0-1075.79",
"5.4.0-1076.80",
"5.4.0-1077.81",
"5.4.0-1078.82",
"5.4.0-1079.83",
"5.4.0-1080.84",
"5.4.0-1081.85",
"5.4.0-1083.87",
"5.4.0-1084.88",
"5.4.0-1085.89",
"5.4.0-1086.90",
"5.4.0-1087.91",
"5.4.0-1088.92",
"5.4.0-1089.93",
"5.4.0-1090.94",
"5.4.0-1091.95",
"5.4.0-1092.96",
"5.4.0-1093.97",
"5.4.0-1094.98",
"5.4.0-1095.99",
"5.4.0-1096.100",
"5.4.0-1097.101",
"5.4.0-1098.102",
"5.4.0-1099.103",
"5.4.0-1100.104",
"5.4.0-1101.105",
"5.4.0-1102.106"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-gkeop-5.15-cloud-tools-5.15.0-1055",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-gkeop-5.15-headers-5.15.0-1055",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-gkeop-5.15-tools-5.15.0-1055",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-headers-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-modules-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-tools-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gkeop-5.15",
"purl": "pkg:deb/ubuntu/linux-gkeop-5.15@5.15.0-1055.62~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.15.0-1003.5~20.04.2",
"5.15.0-1005.7~20.04.1",
"5.15.0-1007.10~20.04.1",
"5.15.0-1008.12~20.04.1",
"5.15.0-1011.15~20.04.2",
"5.15.0-1012.16~20.04.1",
"5.15.0-1013.17~20.04.1",
"5.15.0-1015.19~20.04.1",
"5.15.0-1016.21~20.04.1",
"5.15.0-1017.22~20.04.1",
"5.15.0-1018.23~20.04.1",
"5.15.0-1019.24~20.04.1",
"5.15.0-1020.25~20.04.1",
"5.15.0-1021.26~20.04.1",
"5.15.0-1022.27~20.04.1",
"5.15.0-1023.28~20.04.1",
"5.15.0-1024.29~20.04.1",
"5.15.0-1025.30~20.04.1",
"5.15.0-1026.31~20.04.1",
"5.15.0-1027.32~20.04.1",
"5.15.0-1028.33~20.04.1",
"5.15.0-1030.35~20.04.1",
"5.15.0-1031.37~20.04.1",
"5.15.0-1032.38~20.04.1",
"5.15.0-1033.39~20.04.1",
"5.15.0-1034.40~20.04.1",
"5.15.0-1035.41~20.04.1",
"5.15.0-1036.42~20.04.1",
"5.15.0-1037.43~20.04.1",
"5.15.0-1038.44~20.04.1",
"5.15.0-1039.45~20.04.1",
"5.15.0-1040.46~20.04.1",
"5.15.0-1043.50~20.04.1",
"5.15.0-1044.51~20.04.1",
"5.15.0-1045.52~20.04.1",
"5.15.0-1046.53~20.04.1",
"5.15.0-1047.54~20.04.1",
"5.15.0-1048.55~20.04.1",
"5.15.0-1049.56~20.04.1",
"5.15.0-1050.57~20.04.1",
"5.15.0-1051.58~20.04.1",
"5.15.0-1052.59~20.04.1",
"5.15.0-1053.60~20.04.1",
"5.15.0-1054.61~20.04.1",
"5.15.0-1055.62~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "block-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "block-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "crypto-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "crypto-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "crypto-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "dasd-extra-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "dasd-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fat-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fat-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fat-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fb-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "firewire-core-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "floppy-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-core-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-core-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-core-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "input-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "input-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "input-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ipmi-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ipmi-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ipmi-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "kernel-image-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "kernel-image-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "kernel-image-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-cloud-tools-5.11.0-46",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-cloud-tools-common",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-headers-5.11.0-46",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-source-5.11.0",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-tools-5.11.0-46",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-tools-common",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-tools-host",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-udebs-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-udebs-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-udebs-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "md-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "md-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "md-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "message-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "message-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "mouse-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "mouse-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "mouse-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "multipath-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "multipath-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "multipath-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nfs-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nfs-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nfs-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-pcmcia-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "parport-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "parport-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "parport-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "pata-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "pcmcia-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "pcmcia-storage-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "plip-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "plip-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "plip-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ppp-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ppp-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ppp-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "sata-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "sata-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "sata-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "scsi-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "scsi-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "scsi-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "serial-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "storage-core-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "storage-core-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "storage-core-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "usb-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "usb-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "usb-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "virtio-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "virtio-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "vlan-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "vlan-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "vlan-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-hwe-5.11",
"purl": "pkg:deb/ubuntu/linux-hwe-5.11@5.11.0-46.51~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-22.23~20.04.1",
"5.11.0-25.27~20.04.1",
"5.11.0-27.29~20.04.1",
"5.11.0-34.36~20.04.1",
"5.11.0-36.40~20.04.1",
"5.11.0-37.41~20.04.2",
"5.11.0-38.42~20.04.1",
"5.11.0-40.44~20.04.2",
"5.11.0-41.45~20.04.1",
"5.11.0-43.47~20.04.2",
"5.11.0-44.48~20.04.2",
"5.11.0-46.51~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "block-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "block-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "crypto-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "crypto-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "crypto-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "dasd-extra-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "dasd-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fat-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fat-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fat-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fb-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "firewire-core-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "floppy-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-core-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-core-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-core-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "input-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "input-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "input-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ipmi-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ipmi-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ipmi-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "kernel-image-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "kernel-image-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "kernel-image-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-cloud-tools-5.13.0-52",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-cloud-tools-common",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-headers-5.13.0-52",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-source-5.13.0",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-tools-5.13.0-52",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-tools-common",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-tools-host",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-udebs-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-udebs-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-udebs-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "md-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "md-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "md-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "message-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "message-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "mouse-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "mouse-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "mouse-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "multipath-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "multipath-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "multipath-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nfs-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nfs-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nfs-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-pcmcia-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "parport-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "parport-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "parport-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "pata-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "pcmcia-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "pcmcia-storage-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "plip-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "plip-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "plip-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ppp-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ppp-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ppp-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "sata-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "sata-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "sata-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "scsi-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "scsi-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "scsi-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "serial-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "storage-core-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "storage-core-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "storage-core-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "usb-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "usb-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "usb-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "virtio-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "virtio-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "vlan-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "vlan-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "vlan-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-hwe-5.13",
"purl": "pkg:deb/ubuntu/linux-hwe-5.13@5.13.0-52.59~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-21.21~20.04.1",
"5.13.0-22.22~20.04.1",
"5.13.0-23.23~20.04.2",
"5.13.0-25.26~20.04.1",
"5.13.0-27.29~20.04.1",
"5.13.0-28.31~20.04.1",
"5.13.0-30.33~20.04.1",
"5.13.0-35.40~20.04.1",
"5.13.0-37.42~20.04.1",
"5.13.0-39.44~20.04.1",
"5.13.0-40.45~20.04.1",
"5.13.0-41.46~20.04.1",
"5.13.0-44.49~20.04.1",
"5.13.0-48.54~20.04.1",
"5.13.0-51.58~20.04.1",
"5.13.0-52.59~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "block-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "block-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "crypto-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "crypto-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "crypto-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "dasd-extra-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "dasd-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fat-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fat-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fat-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fb-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "firewire-core-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "floppy-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-core-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-core-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-core-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "input-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "input-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "input-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ipmi-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ipmi-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ipmi-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "kernel-image-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "kernel-image-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "kernel-image-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-cloud-tools-5.8.0-63",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-cloud-tools-common",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-headers-5.8.0-63",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-source-5.8.0",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-tools-5.8.0-63",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-tools-common",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-tools-host",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-udebs-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-udebs-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-udebs-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "md-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "md-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "md-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "message-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "message-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "mouse-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "mouse-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "mouse-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "multipath-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "multipath-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "multipath-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nfs-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nfs-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nfs-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-pcmcia-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "parport-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "parport-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "parport-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "pata-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "pcmcia-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "pcmcia-storage-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "plip-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "plip-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "plip-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ppp-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ppp-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ppp-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "sata-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "sata-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "sata-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "scsi-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "scsi-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "scsi-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "serial-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "storage-core-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "storage-core-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "storage-core-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "usb-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "usb-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "usb-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "virtio-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "virtio-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "vlan-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "vlan-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "vlan-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-hwe-5.8",
"purl": "pkg:deb/ubuntu/linux-hwe-5.8@5.8.0-63.71~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-23.24~20.04.1",
"5.8.0-25.26~20.04.1",
"5.8.0-28.30~20.04.1",
"5.8.0-29.31~20.04.1",
"5.8.0-31.33~20.04.1",
"5.8.0-33.36~20.04.1",
"5.8.0-34.37~20.04.2",
"5.8.0-36.40~20.04.1",
"5.8.0-38.43~20.04.1",
"5.8.0-40.45~20.04.1",
"5.8.0-41.46~20.04.1",
"5.8.0-43.49~20.04.1",
"5.8.0-44.50~20.04.1",
"5.8.0-45.51~20.04.1",
"5.8.0-48.54~20.04.1",
"5.8.0-49.55~20.04.1",
"5.8.0-50.56~20.04.1",
"5.8.0-53.60~20.04.1",
"5.8.0-55.62~20.04.1",
"5.8.0-59.66~20.04.1",
"5.8.0-63.71~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-cloud-tools-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-headers-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-cloud-tools-5.13.0-1017",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-cloud-tools-common",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-headers-5.13.0-1017",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-source-5.13.0",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-tools-5.13.0-1017",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-tools-common",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-tools-host",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-modules-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-modules-extra-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-tools-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-intel-5.13",
"purl": "pkg:deb/ubuntu/linux-intel-5.13@5.13.0-1017.19?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1007.7",
"5.13.0-1008.8",
"5.13.0-1009.9",
"5.13.0-1010.10",
"5.13.0-1011.11",
"5.13.0-1014.15",
"5.13.0-1017.19"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-headers-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-image-unsigned-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-modules-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-oem-5.10-headers-5.10.0-1057",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-oem-5.10-tools-5.10.0-1057",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-oem-5.10-tools-host",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-tools-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oem-5.10",
"purl": "pkg:deb/ubuntu/linux-oem-5.10@5.10.0-1057.61?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.10.0-1008.9",
"5.10.0-1011.12",
"5.10.0-1013.14",
"5.10.0-1014.15",
"5.10.0-1016.17",
"5.10.0-1017.18",
"5.10.0-1019.20",
"5.10.0-1021.22",
"5.10.0-1022.23",
"5.10.0-1023.24",
"5.10.0-1025.26",
"5.10.0-1026.27",
"5.10.0-1029.30",
"5.10.0-1032.33",
"5.10.0-1033.34",
"5.10.0-1034.35",
"5.10.0-1038.40",
"5.10.0-1044.46",
"5.10.0-1045.47",
"5.10.0-1049.51",
"5.10.0-1050.52",
"5.10.0-1051.53",
"5.10.0-1052.54",
"5.10.0-1053.55",
"5.10.0-1055.58",
"5.10.0-1057.61"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-headers-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-modules-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-oem-5.13-headers-5.13.0-1029",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-oem-5.13-tools-5.13.0-1029",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-oem-5.13-tools-host",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-tools-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oem-5.13",
"purl": "pkg:deb/ubuntu/linux-oem-5.13@5.13.0-1029.36?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1009.10",
"5.13.0-1010.11",
"5.13.0-1012.16",
"5.13.0-1014.18",
"5.13.0-1017.21",
"5.13.0-1019.23",
"5.13.0-1020.24",
"5.13.0-1021.25",
"5.13.0-1022.26",
"5.13.0-1026.32",
"5.13.0-1028.35",
"5.13.0-1029.36"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-headers-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-image-unsigned-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-modules-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-modules-iwlwifi-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-oem-5.14-headers-5.14.0-1059",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-oem-5.14-tools-5.14.0-1059",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-oem-5.14-tools-host",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-tools-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oem-5.14",
"purl": "pkg:deb/ubuntu/linux-oem-5.14@5.14.0-1059.67?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.14.0-1004.4",
"5.14.0-1005.5",
"5.14.0-1007.7",
"5.14.0-1008.8",
"5.14.0-1010.10",
"5.14.0-1011.11",
"5.14.0-1013.13",
"5.14.0-1018.19",
"5.14.0-1020.22",
"5.14.0-1022.24",
"5.14.0-1024.26",
"5.14.0-1027.30",
"5.14.0-1029.32",
"5.14.0-1031.34",
"5.14.0-1032.35",
"5.14.0-1033.36",
"5.14.0-1034.37",
"5.14.0-1036.40",
"5.14.0-1038.42",
"5.14.0-1042.47",
"5.14.0-1044.49",
"5.14.0-1045.51",
"5.14.0-1046.53",
"5.14.0-1047.54",
"5.14.0-1048.55",
"5.14.0-1049.56",
"5.14.0-1050.57",
"5.14.0-1051.58",
"5.14.0-1052.59",
"5.14.0-1054.61",
"5.14.0-1055.62",
"5.14.0-1056.63",
"5.14.0-1057.64",
"5.14.0-1058.66",
"5.14.0-1059.67"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-headers-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-image-unsigned-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-modules-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-oem-5.6-headers-5.6.0-1056",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-oem-5.6-tools-5.6.0-1056",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-oem-5.6-tools-host",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-tools-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oem-5.6",
"purl": "pkg:deb/ubuntu/linux-oem-5.6@5.6.0-1056.60?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.6.0-1007.7",
"5.6.0-1008.8",
"5.6.0-1010.10",
"5.6.0-1011.11",
"5.6.0-1013.13",
"5.6.0-1017.17",
"5.6.0-1018.18",
"5.6.0-1020.20",
"5.6.0-1021.21",
"5.6.0-1023.23",
"5.6.0-1026.26",
"5.6.0-1027.27",
"5.6.0-1028.28",
"5.6.0-1031.32",
"5.6.0-1032.33",
"5.6.0-1033.35",
"5.6.0-1034.36",
"5.6.0-1035.37",
"5.6.0-1036.39",
"5.6.0-1039.43",
"5.6.0-1042.46",
"5.6.0-1047.51",
"5.6.0-1048.52",
"5.6.0-1050.54",
"5.6.0-1052.56",
"5.6.0-1053.57",
"5.6.0-1054.58",
"5.6.0-1055.59",
"5.6.0-1056.60"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-oracle-5.11-headers-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-oracle-5.11-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oracle-5.11",
"purl": "pkg:deb/ubuntu/linux-oracle-5.11@5.11.0-1028.31~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1008.8~20.04.1",
"5.11.0-1013.14~20.04.1",
"5.11.0-1016.17~20.04.1",
"5.11.0-1017.18~20.04.1",
"5.11.0-1019.20~20.04.1",
"5.11.0-1020.21~20.04.1",
"5.11.0-1021.22~20.04.1",
"5.11.0-1022.23~20.04.1",
"5.11.0-1023.24~20.04.1",
"5.11.0-1025.27~20.04.1",
"5.11.0-1027.30~20.04.1",
"5.11.0-1028.31~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-oracle-5.13-headers-5.13.0-1036",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-oracle-5.13-tools-5.13.0-1036",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oracle-5.13",
"purl": "pkg:deb/ubuntu/linux-oracle-5.13@5.13.0-1036.43~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1011.13~20.04.2",
"5.13.0-1015.19~20.04.1",
"5.13.0-1016.20~20.04.1",
"5.13.0-1018.22~20.04.1",
"5.13.0-1021.26~20.04.1",
"5.13.0-1025.30~20.04.1",
"5.13.0-1027.32~20.04.1",
"5.13.0-1028.33~20.04.1",
"5.13.0-1030.35~20.04.1",
"5.13.0-1033.39~20.04.1",
"5.13.0-1034.40~20.04.1",
"5.13.0-1036.43~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-oracle-5.8-headers-5.8.0-1038",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-oracle-5.8-tools-5.8.0-1038",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oracle-5.8",
"purl": "pkg:deb/ubuntu/linux-oracle-5.8@5.8.0-1038.39~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-1031.32~20.04.2",
"5.8.0-1033.34~20.04.1",
"5.8.0-1034.35~20.04.2",
"5.8.0-1037.38~20.04.1",
"5.8.0-1038.39~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-headers-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-image-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-modules-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-raspi2-headers-5.4.0-1006",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-raspi2-tools-5.4.0-1006",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-tools-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-raspi2",
"purl": "pkg:deb/ubuntu/linux-raspi2@5.4.0-1006.6?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1007.8",
"5.3.0-1014.16",
"5.3.0-1015.17",
"5.3.0-1017.19",
"5.4.0-1004.4",
"5.4.0-1006.6"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "crypto-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "fat-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "firewire-core-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "fs-core-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "fs-secondary-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "input-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "ipmi-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "kernel-image-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-buildinfo-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-headers-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-image-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-modules-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-modules-extra-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-riscv-headers-5.4.0-40",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-riscv-tools-5.4.0-40",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-tools-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-udebs-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "md-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "message-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "mouse-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "multipath-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "nfs-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "nic-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "nic-shared-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "nic-usb-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "parport-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "pata-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "plip-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "ppp-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "sata-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "scsi-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "storage-core-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "usb-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "virtio-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "vlan-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-riscv",
"purl": "pkg:deb/ubuntu/linux-riscv@5.4.0-40.45?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-24.28",
"5.4.0-26.30",
"5.4.0-27.31",
"5.4.0-28.32",
"5.4.0-30.34",
"5.4.0-31.35",
"5.4.0-33.37",
"5.4.0-34.38",
"5.4.0-36.41",
"5.4.0-37.42",
"5.4.0-39.44",
"5.4.0-40.45"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-headers-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-image-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-modules-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-modules-extra-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-riscv-5.11-headers-5.11.0-1031",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-riscv-5.11-tools-5.11.0-1031",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-tools-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-riscv-5.11",
"purl": "pkg:deb/ubuntu/linux-riscv-5.11@5.11.0-1031.35?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1015.16~20.04.1",
"5.11.0-1017.18~20.04.1",
"5.11.0-1018.19~20.04.2",
"5.11.0-1020.21~20.04.1",
"5.11.0-1021.22~20.04.1",
"5.11.0-1022.23~20.04.1",
"5.11.0-1023.24~20.04.1",
"5.11.0-1024.25~20.04.1",
"5.11.0-1026.28~20.04.1",
"5.11.0-1028.31~20.04.1",
"5.11.0-1029.32~20.04.1",
"5.11.0-1030.34",
"5.11.0-1031.35"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "crypto-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "fat-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "firewire-core-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "fs-core-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "input-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "ipmi-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "kernel-image-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-image-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-riscv-5.8-headers-5.8.0-29",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-riscv-5.8-tools-5.8.0-29",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-udebs-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "md-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "message-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "mouse-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "multipath-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "nfs-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "nic-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "parport-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "pata-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "plip-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "ppp-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "sata-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "scsi-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "storage-core-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "usb-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "virtio-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "vlan-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-riscv-5.8",
"purl": "pkg:deb/ubuntu/linux-riscv-5.8@5.8.0-29.31~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-14.16~20.04.1",
"5.8.0-14.16~20.04.3",
"5.8.0-16.18~20.04.1",
"5.8.0-17.19~20.04.1",
"5.8.0-18.20~20.04.1",
"5.8.0-20.22~20.04.1",
"5.8.0-22.24~20.04.1",
"5.8.0-25.27~20.04.1",
"5.8.0-26.28~20.04.1",
"5.8.0-29.31~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-allwinner-5.19-headers-5.19.0-1015",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-allwinner-5.19-tools-5.19.0-1015",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-buildinfo-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-image-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-allwinner-5.19",
"purl": "pkg:deb/ubuntu/linux-allwinner-5.19@5.19.0-1015.15~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1007.7~22.04.1",
"5.19.0-1009.9~22.04.1",
"5.19.0-1010.10~22.04.1",
"5.19.0-1011.11~22.04.1",
"5.19.0-1012.12~22.04.1",
"5.19.0-1013.13~22.04.1",
"5.19.0-1014.14~22.04.1",
"5.19.0-1015.15~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.19-cloud-tools-5.19.0-1029",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-aws-5.19-headers-5.19.0-1029",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-aws-5.19-tools-5.19.0-1029",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-buildinfo-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-cloud-tools-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-aws-5.19",
"purl": "pkg:deb/ubuntu/linux-aws-5.19@5.19.0-1029.30~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1019.20~22.04.1",
"5.19.0-1020.21~22.04.1",
"5.19.0-1022.23~22.04.1",
"5.19.0-1023.24~22.04.1",
"5.19.0-1024.25~22.04.1",
"5.19.0-1025.26~22.04.1",
"5.19.0-1026.27~22.04.1",
"5.19.0-1027.28~22.04.1",
"5.19.0-1028.29~22.04.1",
"5.19.0-1029.30~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-6.2-cloud-tools-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-aws-6.2-headers-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-aws-6.2-tools-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-aws-6.2",
"purl": "pkg:deb/ubuntu/linux-aws-6.2@6.2.0-1018.18~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1005.5~22.04.1",
"6.2.0-1006.6~22.04.1",
"6.2.0-1007.7~22.04.1",
"6.2.0-1008.8~22.04.1",
"6.2.0-1009.9~22.04.3",
"6.2.0-1010.10~22.04.1",
"6.2.0-1011.11~22.04.1",
"6.2.0-1012.12~22.04.1",
"6.2.0-1013.13~22.04.1",
"6.2.0-1014.14~22.04.1",
"6.2.0-1015.15~22.04.1",
"6.2.0-1016.16~22.04.1",
"6.2.0-1017.17~22.04.1",
"6.2.0-1018.18~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-6.5-cloud-tools-6.5.0-1024",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-aws-6.5-headers-6.5.0-1024",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-aws-6.5-tools-6.5.0-1024",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-aws-6.5",
"purl": "pkg:deb/ubuntu/linux-aws-6.5@6.5.0-1024.24~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1008.8~22.04.1",
"6.5.0-1010.10~22.04.1",
"6.5.0-1011.11~22.04.1",
"6.5.0-1012.12~22.04.1",
"6.5.0-1014.14~22.04.1",
"6.5.0-1015.15~22.04.1",
"6.5.0-1016.16~22.04.1",
"6.5.0-1017.17~22.04.2",
"6.5.0-1018.18~22.04.1",
"6.5.0-1020.20~22.04.1",
"6.5.0-1021.21~22.04.1",
"6.5.0-1022.22~22.04.1",
"6.5.0-1023.23~22.04.1",
"6.5.0-1024.24~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-aws-6.8-cloud-tools-6.8.0-1052",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-aws-6.8-headers-6.8.0-1052",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-aws-6.8-tools-6.8.0-1052",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-aws-6.8",
"purl": "pkg:deb/ubuntu/linux-aws-6.8@6.8.0-1052.55~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1052.55~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1009.9~22.04.2",
"6.8.0-1010.10~22.04.2",
"6.8.0-1011.12~22.04.1",
"6.8.0-1013.14~22.04.1",
"6.8.0-1014.15~22.04.1",
"6.8.0-1015.16~22.04.1",
"6.8.0-1016.17~22.04.2",
"6.8.0-1017.18~22.04.1",
"6.8.0-1018.19~22.04.1",
"6.8.0-1019.21~22.04.1",
"6.8.0-1020.22~22.04.1",
"6.8.0-1021.23~22.04.1",
"6.8.0-1023.25~22.04.1",
"6.8.0-1024.26~22.04.1",
"6.8.0-1027.29~22.04.1",
"6.8.0-1028.30~22.04.1",
"6.8.0-1029.31~22.04.1",
"6.8.0-1030.32~22.04.1",
"6.8.0-1031.33~22.04.1",
"6.8.0-1032.34~22.04.1",
"6.8.0-1033.35~22.04.1",
"6.8.0-1035.37~22.04.1",
"6.8.0-1036.38~22.04.1",
"6.8.0-1039.41~22.04.1",
"6.8.0-1040.42~22.04.1",
"6.8.0-1041.43~22.04.1",
"6.8.0-1042.44~22.04.1",
"6.8.0-1043.45~22.04.1",
"6.8.0-1044.46~22.04.1",
"6.8.0-1045.47~22.04.1",
"6.8.0-1046.49~22.04.1",
"6.8.0-1047.50~22.04.1",
"6.8.0-1050.53~22.04.1",
"6.8.0-1051.54~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.19-cloud-tools-5.19.0-1027",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-azure-5.19-headers-5.19.0-1027",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-azure-5.19-tools-5.19.0-1027",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-buildinfo-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-cloud-tools-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-headers-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-modules-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-modules-extra-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-tools-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-5.19",
"purl": "pkg:deb/ubuntu/linux-azure-5.19@5.19.0-1027.30~22.04.2?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1020.21~22.04.1",
"5.19.0-1021.22~22.04.1",
"5.19.0-1022.23~22.04.1",
"5.19.0-1023.24~22.04.1",
"5.19.0-1025.28~22.04.1",
"5.19.0-1026.29~22.04.1",
"5.19.0-1027.30~22.04.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-6.2-cloud-tools-6.2.0-1019",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-azure-6.2-headers-6.2.0-1019",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-azure-6.2-tools-6.2.0-1019",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-6.2",
"purl": "pkg:deb/ubuntu/linux-azure-6.2@6.2.0-1019.19~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1005.5~22.04.1",
"6.2.0-1006.6~22.04.1",
"6.2.0-1007.7~22.04.1",
"6.2.0-1008.8~22.04.1",
"6.2.0-1009.9~22.04.3",
"6.2.0-1011.11~22.04.1",
"6.2.0-1012.12~22.04.1",
"6.2.0-1014.14~22.04.1",
"6.2.0-1015.15~22.04.1",
"6.2.0-1016.16~22.04.1",
"6.2.0-1017.17~22.04.1",
"6.2.0-1018.18~22.04.1",
"6.2.0-1019.19~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-6.5-cloud-tools-6.5.0-1025",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-azure-6.5-headers-6.5.0-1025",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-azure-6.5-tools-6.5.0-1025",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-6.5",
"purl": "pkg:deb/ubuntu/linux-azure-6.5@6.5.0-1025.26~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1007.7~22.04.1",
"6.5.0-1009.9~22.04.1",
"6.5.0-1010.10~22.04.1",
"6.5.0-1011.11~22.04.1",
"6.5.0-1015.15~22.04.1",
"6.5.0-1016.16~22.04.1",
"6.5.0-1017.17~22.04.1",
"6.5.0-1018.19~22.04.2",
"6.5.0-1019.20~22.04.1",
"6.5.0-1021.22~22.04.1",
"6.5.0-1022.23~22.04.1",
"6.5.0-1023.24~22.04.1",
"6.5.0-1024.25~22.04.1",
"6.5.0-1025.26~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-6.8-cloud-tools-6.8.0-1059",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-azure-6.8-headers-6.8.0-1059",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-azure-6.8-tools-6.8.0-1059",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1059-azure",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1059-azure",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1059-azure",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1059-azure",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1059-azure",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1059-azure",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1059-azure",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1059-azure",
"binary_version": "6.8.0-1059.65~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1059-azure",
"binary_version": "6.8.0-1059.65~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-6.8",
"purl": "pkg:deb/ubuntu/linux-azure-6.8@6.8.0-1059.65~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1059.65~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.8~22.04.1",
"6.8.0-1009.9~22.04.1",
"6.8.0-1010.10~22.04.1",
"6.8.0-1012.14~22.04.1",
"6.8.0-1013.15~22.04.1",
"6.8.0-1014.16~22.04.1",
"6.8.0-1015.17~22.04.2",
"6.8.0-1017.20~22.04.1",
"6.8.0-1018.21~22.04.1",
"6.8.0-1020.23~22.04.1",
"6.8.0-1021.25~22.04.1",
"6.8.0-1025.30~22.04.1",
"6.8.0-1026.31~22.04.1",
"6.8.0-1027.32~22.04.1",
"6.8.0-1028.33~22.04.1",
"6.8.0-1029.34~22.04.1",
"6.8.0-1030.35~22.04.1",
"6.8.0-1031.36~22.04.1",
"6.8.0-1034.39~22.04.1",
"6.8.0-1036.42~22.04.1",
"6.8.0-1040.46~22.04.1",
"6.8.0-1041.47~22.04.1",
"6.8.0-1044.50~22.04.1",
"6.8.0-1051.57~22.04.1",
"6.8.0-1052.58~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-image-unsigned-5.19.0-1027-azure-fde",
"binary_version": "5.19.0-1027.30~22.04.2.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-fde-5.19",
"purl": "pkg:deb/ubuntu/linux-azure-fde-5.19@5.19.0-1027.30~22.04.2.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1025.28~22.04.1.1",
"5.19.0-1026.29~22.04.1.1",
"5.19.0-1027.30~22.04.2.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-image-unsigned-6.2.0-1019-azure-fde",
"binary_version": "6.2.0-1019.19~22.04.1.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-fde-6.2",
"purl": "pkg:deb/ubuntu/linux-azure-fde-6.2@6.2.0-1019.19~22.04.1.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1008.8~22.04.1.1",
"6.2.0-1009.9~22.04.3.1",
"6.2.0-1011.11~22.04.1.1",
"6.2.0-1012.12~22.04.1.1",
"6.2.0-1014.14~22.04.1.1",
"6.2.0-1015.15~22.04.1.1",
"6.2.0-1016.16~22.04.1.1",
"6.2.0-1017.17~22.04.1.1",
"6.2.0-1018.18~22.04.1.1",
"6.2.0-1019.19~22.04.1.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-fde-6.8-cloud-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-azure-fde-6.8-headers-6.8.0-1063",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-azure-fde-6.8-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-fde-6.8",
"purl": "pkg:deb/ubuntu/linux-azure-fde-6.8@6.8.0-1063.70~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1041.48~22.04.1",
"6.8.0-1042.49~22.04.1",
"6.8.0-1044.51~22.04.1",
"6.8.0-1046.53~22.04.1",
"6.8.0-1053.60~22.04.1",
"6.8.0-1058.65~22.04.1",
"6.8.0-1061.68~22.04.1",
"6.8.0-1062.69~22.04.1",
"6.8.0-1063.70~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-gcp-5.19-headers-5.19.0-1030",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-gcp-5.19-tools-5.19.0-1030",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-gcp-5.19",
"purl": "pkg:deb/ubuntu/linux-gcp-5.19@5.19.0-1030.32~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1020.22~22.04.2",
"5.19.0-1021.23~22.04.1",
"5.19.0-1022.24~22.04.1",
"5.19.0-1024.26~22.04.1",
"5.19.0-1025.27~22.04.1",
"5.19.0-1026.28~22.04.1",
"5.19.0-1027.29~22.04.1",
"5.19.0-1030.32~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-gcp-6.2-headers-6.2.0-1021",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-gcp-6.2-tools-6.2.0-1021",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-gcp-6.2",
"purl": "pkg:deb/ubuntu/linux-gcp-6.2@6.2.0-1021.23~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1009.9~22.04.3",
"6.2.0-1010.10~22.04.1",
"6.2.0-1011.11~22.04.1",
"6.2.0-1011.11~22.04.3",
"6.2.0-1012.12~22.04.1",
"6.2.0-1013.13~22.04.1",
"6.2.0-1014.14~22.04.1",
"6.2.0-1016.18~22.04.1",
"6.2.0-1017.19~22.04.1",
"6.2.0-1018.20~22.04.1",
"6.2.0-1019.21~22.04.1",
"6.2.0-1021.23~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-gcp-6.5-headers-6.5.0-1025",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-gcp-6.5-tools-6.5.0-1025",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-gcp-6.5",
"purl": "pkg:deb/ubuntu/linux-gcp-6.5@6.5.0-1025.27~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1010.10~22.04.3",
"6.5.0-1011.11~22.04.1",
"6.5.0-1013.13~22.04.1",
"6.5.0-1014.14~22.04.1",
"6.5.0-1015.15~22.04.1",
"6.5.0-1016.16~22.04.1",
"6.5.0-1017.17~22.04.1",
"6.5.0-1018.18~22.04.1",
"6.5.0-1020.20~22.04.1",
"6.5.0-1022.24~22.04.1",
"6.5.0-1023.25~22.04.1",
"6.5.0-1024.26~22.04.1",
"6.5.0-1025.27~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-gcp-6.8-headers-6.8.0-1054",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-gcp-6.8-tools-6.8.0-1054",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-gcp-6.8",
"purl": "pkg:deb/ubuntu/linux-gcp-6.8@6.8.0-1054.57~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1054.57~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1010.11~22.04.1",
"6.8.0-1011.12~22.04.1",
"6.8.0-1012.13~22.04.1",
"6.8.0-1013.14~22.04.1",
"6.8.0-1014.16~22.04.1",
"6.8.0-1015.17~22.04.1",
"6.8.0-1016.18~22.04.1",
"6.8.0-1017.19~22.04.1",
"6.8.0-1018.20~22.04.1",
"6.8.0-1019.21~22.04.1",
"6.8.0-1020.22~22.04.1",
"6.8.0-1021.23~22.04.1",
"6.8.0-1024.26~22.04.1",
"6.8.0-1025.27~22.04.1",
"6.8.0-1026.28~22.04.1",
"6.8.0-1027.29~22.04.1",
"6.8.0-1028.30~22.04.1",
"6.8.0-1029.31~22.04.1",
"6.8.0-1030.32~22.04.1",
"6.8.0-1031.33~22.04.1",
"6.8.0-1032.34~22.04.1",
"6.8.0-1033.35~22.04.1",
"6.8.0-1034.36~22.04.2",
"6.8.0-1036.38~22.04.1",
"6.8.0-1037.39~22.04.1",
"6.8.0-1040.42~22.04.1",
"6.8.0-1041.43~22.04.1",
"6.8.0-1042.45~22.04.1",
"6.8.0-1043.46~22.04.1",
"6.8.0-1044.47~22.04.1",
"6.8.0-1045.48~22.04.1",
"6.8.0-1046.49~22.04.1",
"6.8.0-1047.50~22.04.2",
"6.8.0-1048.51~22.04.1",
"6.8.0-1052.55~22.04.1",
"6.8.0-1053.56~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-buildinfo-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-buildinfo-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-cloud-tools-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-headers-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-headers-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-headers-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-cloud-tools-5.19.0-50",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-cloud-tools-common",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-headers-5.19.0-50",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-tools-5.19.0-50",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-tools-common",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-tools-host",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-image-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-image-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-image-unsigned-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-image-unsigned-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-extra-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-ipu6-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-ivsc-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-iwlwifi-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-source-5.19.0",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-tools-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-tools-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-tools-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-hwe-5.19",
"purl": "pkg:deb/ubuntu/linux-hwe-5.19@5.19.0-50.50?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-28.29~22.04.1",
"5.19.0-32.33~22.04.1",
"5.19.0-35.36~22.04.1",
"5.19.0-38.39~22.04.1",
"5.19.0-40.41~22.04.1",
"5.19.0-41.42~22.04.1",
"5.19.0-42.43~22.04.1",
"5.19.0-43.44~22.04.1",
"5.19.0-45.46~22.04.1",
"5.19.0-46.47~22.04.1",
"5.19.0-50.50"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-cloud-tools-6.2.0-39",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-cloud-tools-common",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-headers-6.2.0-39",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-tools-6.2.0-39",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-tools-common",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-tools-host",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-image-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-image-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-ivsc-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-source-6.2.0",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-hwe-6.2",
"purl": "pkg:deb/ubuntu/linux-hwe-6.2@6.2.0-39.40~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-25.25~22.04.2",
"6.2.0-26.26~22.04.1",
"6.2.0-31.31~22.04.1",
"6.2.0-32.32~22.04.1",
"6.2.0-33.33~22.04.1",
"6.2.0-34.34~22.04.1",
"6.2.0-35.35~22.04.1",
"6.2.0-36.37~22.04.1",
"6.2.0-37.38~22.04.1",
"6.2.0-39.40~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-cloud-tools-6.5.0-45",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-cloud-tools-common",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-headers-6.5.0-45",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-tools-6.5.0-45",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-tools-common",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-tools-host",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-image-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-ivsc-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-source-6.5.0",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-hwe-6.5",
"purl": "pkg:deb/ubuntu/linux-hwe-6.5@6.5.0-45.45~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-14.14~22.04.1",
"6.5.0-15.15~22.04.1",
"6.5.0-17.17~22.04.1",
"6.5.0-18.18~22.04.1",
"6.5.0-21.21~22.04.1",
"6.5.0-25.25~22.04.1",
"6.5.0-26.26~22.04.1",
"6.5.0-27.28~22.04.1",
"6.5.0-28.29~22.04.1",
"6.5.0-35.35~22.04.1",
"6.5.0-41.41~22.04.2",
"6.5.0-44.44~22.04.1",
"6.5.0-45.45~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-hwe-6.8-cloud-tools-6.8.0-110",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-hwe-6.8-headers-6.8.0-110",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-hwe-6.8-tools-6.8.0-110",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-image-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-modules-usbio-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-hwe-6.8",
"purl": "pkg:deb/ubuntu/linux-hwe-6.8@6.8.0-110.110~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-110.110~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-38.38~22.04.1",
"6.8.0-39.39~22.04.1",
"6.8.0-40.40~22.04.3",
"6.8.0-45.45~22.04.1",
"6.8.0-47.47~22.04.1",
"6.8.0-48.48~22.04.1",
"6.8.0-49.49~22.04.1",
"6.8.0-50.51~22.04.1",
"6.8.0-51.52~22.04.1",
"6.8.0-52.53~22.04.1",
"6.8.0-57.59~22.04.1",
"6.8.0-58.60~22.04.1",
"6.8.0-59.61~22.04.1",
"6.8.0-60.63~22.04.1",
"6.8.0-64.67~22.04.1",
"6.8.0-65.68~22.04.1",
"6.8.0-78.78~22.04.1",
"6.8.0-79.79~22.04.1",
"6.8.0-83.83~22.04.1",
"6.8.0-84.84~22.04.1",
"6.8.0-85.85~22.04.1",
"6.8.0-86.87~22.04.1",
"6.8.0-87.88~22.04.1",
"6.8.0-88.89~22.04.2",
"6.8.0-90.91~22.04.1",
"6.8.0-94.96~22.04.1",
"6.8.0-100.100~22.04.1",
"6.8.0-101.101~22.04.1",
"6.8.0-106.106~22.04.1",
"6.8.0-107.107~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51~22.04.1"
},
{
"binary_name": "linux-ibm-6.8-headers-6.8.0-1051",
"binary_version": "6.8.0-1051.51~22.04.1"
},
{
"binary_name": "linux-ibm-6.8-tools-6.8.0-1051",
"binary_version": "6.8.0-1051.51~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-ibm-6.8",
"purl": "pkg:deb/ubuntu/linux-ibm-6.8@6.8.0-1051.51~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1051.51~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.8~22.04.1",
"6.8.0-1010.10~22.04.1",
"6.8.0-1011.11~22.04.1",
"6.8.0-1012.12~22.04.1",
"6.8.0-1013.13~22.04.1",
"6.8.0-1014.14~22.04.1",
"6.8.0-1015.15~22.04.1",
"6.8.0-1016.16~22.04.1",
"6.8.0-1017.17~22.04.1",
"6.8.0-1018.18~22.04.1",
"6.8.0-1019.19~22.04.1",
"6.8.0-1023.23~22.04.1",
"6.8.0-1024.24~22.04.1",
"6.8.0-1025.25~22.04.1",
"6.8.0-1026.26~22.04.1",
"6.8.0-1027.27~22.04.1",
"6.8.0-1028.28~22.04.1",
"6.8.0-1029.29~22.04.1",
"6.8.0-1030.30~22.04.1",
"6.8.0-1033.33~22.04.1",
"6.8.0-1036.36~22.04.1",
"6.8.0-1037.37~22.04.1",
"6.8.0-1038.38~22.04.1",
"6.8.0-1039.39~22.04.1",
"6.8.0-1040.40~22.04.1",
"6.8.0-1041.41~22.04.1",
"6.8.0-1042.42~22.04.1",
"6.8.0-1043.43~22.04.1",
"6.8.0-1044.44~22.04.1",
"6.8.0-1045.45~22.04.1",
"6.8.0-1049.49~22.04.1",
"6.8.0-1050.50~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-cloud-tools-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-headers-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-image-unsigned-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-cloud-tools-5.15.0-1073",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-cloud-tools-common",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-headers-5.15.0-1073",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-tools-5.15.0-1073",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-tools-common",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-tools-host",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-modules-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-modules-extra-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-tools-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-intel-iot-realtime",
"purl": "pkg:deb/ubuntu/linux-intel-iot-realtime@5.15.0-1073.75?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.15.0-1073.75"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-buildinfo-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-cloud-tools-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-headers-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-headers-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-cloud-tools-5.19.0-1030",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-cloud-tools-common",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-headers-5.19.0-1030",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-tools-5.19.0-1030",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-tools-common",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-tools-host",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-ipu6-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-ivsc-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-iwlwifi-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-tools-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-tools-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-lowlatency-hwe-5.19",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-5.19@5.19.0-1030.30?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1017.18~22.04.1",
"5.19.0-1018.19~22.04.1",
"5.19.0-1021.22~22.04.1",
"5.19.0-1022.23~22.04.1",
"5.19.0-1023.24~22.04.1",
"5.19.0-1024.25~22.04.1",
"5.19.0-1025.26~22.04.1",
"5.19.0-1027.28~22.04.1",
"5.19.0-1028.29~22.04.1",
"5.19.0-1030.30"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-cloud-tools-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-cloud-tools-common",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-headers-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-tools-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-tools-common",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-tools-host",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-ivsc-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-lowlatency-hwe-6.2",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.2@6.2.0-1018.18~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1008.8~22.04.1",
"6.2.0-1009.9~22.04.1",
"6.2.0-1011.11~22.04.1",
"6.2.0-1012.12~22.04.1",
"6.2.0-1013.13~22.04.1",
"6.2.0-1014.14~22.04.1",
"6.2.0-1015.15~22.04.1",
"6.2.0-1016.16~22.04.1",
"6.2.0-1017.17~22.04.1",
"6.2.0-1018.18~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-cloud-tools-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-cloud-tools-common",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-headers-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-lib-rust-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-tools-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-tools-common",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-tools-host",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-lowlatency-hwe-6.5",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.5@6.5.0-45.45.1~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-14.14.1~22.04.1",
"6.5.0-15.15.1.1~22.04.1",
"6.5.0-17.17.1.1.1~22.04.1",
"6.5.0-21.21.1~22.04.1",
"6.5.0-25.25.1~22.04.1",
"6.5.0-26.26.1~22.04.1",
"6.5.0-27.28.1~22.04.1",
"6.5.0-28.29.1~22.04.1",
"6.5.0-35.35.1~22.04.1",
"6.5.0-41.41.1~22.04.1",
"6.5.0-42.42.1~22.04.1",
"6.5.0-44.44.1~22.04.1",
"6.5.0-45.45.1~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.8-cloud-tools-6.8.0-110",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.8-headers-6.8.0-110",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.8-lib-rust-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.8-tools-6.8.0-110",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-lowlatency-hwe-6.8",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.8@6.8.0-110.110.1~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-110.110.1~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-38.38.1~22.04.2",
"6.8.0-40.40.1~22.04.1",
"6.8.0-44.44.1~22.04.1",
"6.8.0-45.45.1~22.04.1",
"6.8.0-47.47.1~22.04.1",
"6.8.0-48.48.3~22.04.1",
"6.8.0-49.49.1~22.04.1",
"6.8.0-50.51.1~22.04.1",
"6.8.0-51.52.1~22.04.1",
"6.8.0-52.53.1~22.04.1",
"6.8.0-54.56.1~22.04.1",
"6.8.0-55.57.1~22.04.1",
"6.8.0-56.58.1~22.04.1",
"6.8.0-57.59.1~22.04.1",
"6.8.0-58.60.1~22.04.1",
"6.8.0-59.61.1~22.04.1",
"6.8.0-60.63.1~22.04.1",
"6.8.0-62.65.1~22.04.1",
"6.8.0-63.66.1~22.04.1",
"6.8.0-64.67.1~22.04.1",
"6.8.0-65.68.1~22.04.1",
"6.8.0-78.78.1~22.04.1",
"6.8.0-79.79.1~22.04.1",
"6.8.0-83.83.1~22.04.1",
"6.8.0-84.84.1~22.04.1",
"6.8.0-85.85.1~22.04.1",
"6.8.0-86.87.1~22.04.1",
"6.8.0-87.88.1~22.04.1",
"6.8.0-88.89.1~22.04.1",
"6.8.0-90.91.1~22.04.1",
"6.8.0-94.96.1~22.04.1",
"6.8.0-100.100.1~22.04.1",
"6.8.0-101.101.1~22.04.1",
"6.8.0-106.106.1~22.04.1",
"6.8.0-107.107.1~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-buildinfo-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-headers-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-headers-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-extra-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-nvidia-fs-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-nvidia-fs-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-nvidia-6.2-headers-6.2.0-1015",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-nvidia-6.2-tools-6.2.0-1015",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-nvidia-6.2-tools-host",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-tools-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-tools-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-nvidia-6.2",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.2@6.2.0-1015.15?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1003.3~22.04.1",
"6.2.0-1009.9",
"6.2.0-1010.10",
"6.2.0-1011.11",
"6.2.0-1012.12",
"6.2.0-1013.13",
"6.2.0-1015.15"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-buildinfo-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-headers-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-headers-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-extra-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-nvidia-fs-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-nvidia-fs-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-nvidia-6.5-headers-6.5.0-1024",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-nvidia-6.5-tools-6.5.0-1024",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-nvidia-6.5-tools-host",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-tools-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-tools-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-nvidia-6.5",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.5@6.5.0-1024.25?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1004.4",
"6.5.0-1007.7",
"6.5.0-1013.13",
"6.5.0-1014.14",
"6.5.0-1015.15",
"6.5.0-1018.18",
"6.5.0-1019.19",
"6.5.0-1021.22",
"6.5.0-1022.23",
"6.5.0-1023.24",
"6.5.0-1024.25"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-nvidia-6.8-headers-6.8.0-1051",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-nvidia-6.8-tools-6.8.0-1051",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-nvidia-6.8",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.8@6.8.0-1051.54~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1051.54~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.8~22.04.1",
"6.8.0-1009.9~22.04.1",
"6.8.0-1010.10~22.04.1",
"6.8.0-1011.11~22.04.1",
"6.8.0-1012.12~22.04.1",
"6.8.0-1013.14~22.04.1",
"6.8.0-1014.15~22.04.1",
"6.8.0-1015.16~22.04.1",
"6.8.0-1017.19~22.04.1",
"6.8.0-1018.20~22.04.1",
"6.8.0-1019.21~22.04.1",
"6.8.0-1020.22~22.04.1",
"6.8.0-1021.23~22.04.1",
"6.8.0-1022.25~22.04.2",
"6.8.0-1023.26~22.04.1",
"6.8.0-1024.27~22.04.1",
"6.8.0-1025.28~22.04.1",
"6.8.0-1026.29~22.04.1",
"6.8.0-1027.30~22.04.1",
"6.8.0-1028.31~22.04.1",
"6.8.0-1029.32~22.04.1",
"6.8.0-1030.33~22.04.1",
"6.8.0-1031.34~22.04.1",
"6.8.0-1032.35~22.04.1",
"6.8.0-1035.38~22.04.1",
"6.8.0-1036.39~22.04.1",
"6.8.0-1038.41~22.04.1",
"6.8.0-1039.42~22.04.1",
"6.8.0-1040.43~22.04.1",
"6.8.0-1041.44~22.04.2",
"6.8.0-1042.45~22.04.1",
"6.8.0-1043.46~22.04.1",
"6.8.0-1044.47~22.04.1",
"6.8.0-1045.48~22.04.1",
"6.8.0-1046.49~22.04.1",
"6.8.0-1047.50~22.04.1",
"6.8.0-1049.52~22.04.1",
"6.8.0-1050.53~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-headers-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-image-unsigned-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-modules-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-modules-ipu6-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-modules-ivsc-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-modules-iwlwifi-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-oem-5.17-headers-5.17.0-1035",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-oem-5.17-tools-5.17.0-1035",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-oem-5.17-tools-host",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-tools-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oem-5.17",
"purl": "pkg:deb/ubuntu/linux-oem-5.17@5.17.0-1035.36?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.17.0-1003.3",
"5.17.0-1004.4",
"5.17.0-1006.6",
"5.17.0-1011.12",
"5.17.0-1012.13",
"5.17.0-1013.14",
"5.17.0-1014.15",
"5.17.0-1015.16",
"5.17.0-1016.17",
"5.17.0-1017.18",
"5.17.0-1018.19",
"5.17.0-1019.20",
"5.17.0-1020.21",
"5.17.0-1021.22",
"5.17.0-1024.25",
"5.17.0-1025.26",
"5.17.0-1026.27",
"5.17.0-1027.28",
"5.17.0-1028.29",
"5.17.0-1029.30",
"5.17.0-1030.31",
"5.17.0-1031.32",
"5.17.0-1032.33",
"5.17.0-1033.34",
"5.17.0-1034.35",
"5.17.0-1035.36"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-headers-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-image-unsigned-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-modules-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-modules-ipu6-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-modules-ivsc-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-modules-iwlwifi-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-oem-6.0-headers-6.0.0-1021",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-oem-6.0-tools-6.0.0-1021",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-oem-6.0-tools-host",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-tools-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oem-6.0",
"purl": "pkg:deb/ubuntu/linux-oem-6.0@6.0.0-1021.21?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.0.0-1006.6",
"6.0.0-1007.7",
"6.0.0-1008.8",
"6.0.0-1009.9",
"6.0.0-1010.10",
"6.0.0-1011.11",
"6.0.0-1012.12",
"6.0.0-1013.13",
"6.0.0-1014.14",
"6.0.0-1015.15",
"6.0.0-1016.16",
"6.0.0-1017.17",
"6.0.0-1018.18",
"6.0.0-1019.19",
"6.0.0-1020.20",
"6.0.0-1021.21"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-headers-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-image-unsigned-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-modules-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-modules-ipu6-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-modules-ivsc-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-modules-iwlwifi-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-oem-6.1-headers-6.1.0-1036",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-oem-6.1-tools-6.1.0-1036",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-oem-6.1-tools-host",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-tools-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oem-6.1",
"purl": "pkg:deb/ubuntu/linux-oem-6.1@6.1.0-1036.36?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.1.0-1004.4",
"6.1.0-1006.6",
"6.1.0-1007.7",
"6.1.0-1008.8",
"6.1.0-1009.9",
"6.1.0-1010.10",
"6.1.0-1012.12",
"6.1.0-1013.13",
"6.1.0-1014.14",
"6.1.0-1015.15",
"6.1.0-1016.16",
"6.1.0-1017.17",
"6.1.0-1019.19",
"6.1.0-1020.20",
"6.1.0-1021.21",
"6.1.0-1022.22",
"6.1.0-1023.23",
"6.1.0-1024.24",
"6.1.0-1025.25",
"6.1.0-1026.26",
"6.1.0-1027.27",
"6.1.0-1028.28",
"6.1.0-1029.29",
"6.1.0-1033.33",
"6.1.0-1034.34",
"6.1.0-1035.35",
"6.1.0-1036.36"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-headers-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-ipu6-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-ivsc-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-iwlwifi-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-usbio-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-oem-6.5-headers-6.5.0-1027",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-oem-6.5-lib-rust-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-oem-6.5-tools-6.5.0-1027",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-oem-6.5-tools-host",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-tools-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oem-6.5",
"purl": "pkg:deb/ubuntu/linux-oem-6.5@6.5.0-1027.28?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1003.3",
"6.5.0-1004.4",
"6.5.0-1006.6",
"6.5.0-1007.7",
"6.5.0-1008.8",
"6.5.0-1009.10",
"6.5.0-1011.12",
"6.5.0-1013.14",
"6.5.0-1014.15",
"6.5.0-1015.16",
"6.5.0-1016.17",
"6.5.0-1018.19",
"6.5.0-1019.20",
"6.5.0-1020.21",
"6.5.0-1022.23",
"6.5.0-1023.24",
"6.5.0-1024.25",
"6.5.0-1025.26",
"6.5.0-1027.28"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-oracle-6.5-headers-6.5.0-1027",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-oracle-6.5-tools-6.5.0-1027",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oracle-6.5",
"purl": "pkg:deb/ubuntu/linux-oracle-6.5@6.5.0-1027.27~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1013.13~22.04.4",
"6.5.0-1014.14~22.04.1",
"6.5.0-1015.15~22.04.1",
"6.5.0-1016.16~22.04.1",
"6.5.0-1018.18~22.04.1",
"6.5.0-1019.19~22.04.1",
"6.5.0-1020.20~22.04.1",
"6.5.0-1021.21~22.04.1",
"6.5.0-1023.23~22.04.1",
"6.5.0-1024.24~22.04.1",
"6.5.0-1025.25~22.04.1",
"6.5.0-1026.26~22.04.1",
"6.5.0-1027.27~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-oracle-6.8-headers-6.8.0-1049",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-oracle-6.8-tools-6.8.0-1049",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oracle-6.8",
"purl": "pkg:deb/ubuntu/linux-oracle-6.8@6.8.0-1049.50~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1049.50~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1006.6~22.04.3",
"6.8.0-1008.8~22.04.1",
"6.8.0-1010.10~22.04.1",
"6.8.0-1011.11~22.04.1",
"6.8.0-1012.12~22.04.1",
"6.8.0-1013.13~22.04.1",
"6.8.0-1014.14~22.04.1",
"6.8.0-1015.15~22.04.1",
"6.8.0-1016.17~22.04.1",
"6.8.0-1017.18~22.04.1",
"6.8.0-1018.19~22.04.1",
"6.8.0-1019.20~22.04.1",
"6.8.0-1020.21~22.04.1",
"6.8.0-1021.22~22.04.1",
"6.8.0-1022.23~22.04.1",
"6.8.0-1023.24~22.04.1",
"6.8.0-1024.25~22.04.1",
"6.8.0-1025.26~22.04.1",
"6.8.0-1026.27~22.04.1",
"6.8.0-1027.28~22.04.1",
"6.8.0-1028.29~22.04.1",
"6.8.0-1029.30~22.04.1",
"6.8.0-1030.31~22.04.1",
"6.8.0-1032.33~22.04.1",
"6.8.0-1033.34~22.04.1",
"6.8.0-1035.36~22.04.1",
"6.8.0-1037.38~22.04.1",
"6.8.0-1038.39~22.04.1",
"6.8.0-1039.40~22.04.1",
"6.8.0-1040.41~22.04.1",
"6.8.0-1041.42~22.04.1",
"6.8.0-1042.43~22.04.1",
"6.8.0-1043.44~22.04.1",
"6.8.0-1044.45~22.04.1",
"6.8.0-1047.48~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-cloud-tools-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-headers-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-image-unsigned-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-modules-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-modules-extra-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-cloud-tools-5.15.0-1032",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-cloud-tools-common",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-headers-5.15.0-1032",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-tools-5.15.0-1032",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-tools-common",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-tools-host",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-tools-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@5.15.0-1032.35?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.15.0-1032.35"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-headers-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-image-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-modules-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-modules-extra-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-riscv-headers-5.15.0-1028",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-riscv-tools-5.15.0-1028",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-tools-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-riscv",
"purl": "pkg:deb/ubuntu/linux-riscv@5.15.0-1028.32?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1004.4",
"5.13.0-1006.6+22.04.1",
"5.13.0-1007.7+22.04.1",
"5.13.0-1010.11+22.04.1",
"5.15.0-1004.4",
"5.15.0-1005.5",
"5.15.0-1006.6",
"5.15.0-1007.7",
"5.15.0-1008.8",
"5.15.0-1011.12",
"5.15.0-1012.13",
"5.15.0-1014.16",
"5.15.0-1015.17",
"5.15.0-1016.18",
"5.15.0-1017.19",
"5.15.0-1018.21",
"5.15.0-1019.22",
"5.15.0-1020.23",
"5.15.0-1022.26",
"5.15.0-1023.27",
"5.15.0-1026.30",
"5.15.0-1027.31",
"5.15.0-1028.32"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-image-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-riscv-5.19-headers-5.19.0-1021",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-riscv-5.19-tools-5.19.0-1021",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-riscv-5.19",
"purl": "pkg:deb/ubuntu/linux-riscv-5.19@5.19.0-1021.23~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1012.13~22.04.1",
"5.19.0-1015.16~22.04.1",
"5.19.0-1016.17~22.04.1",
"5.19.0-1017.18~22.04.1",
"5.19.0-1018.19~22.04.1",
"5.19.0-1019.21~22.04.1",
"5.19.0-1020.22~22.04.1",
"5.19.0-1021.23~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-image-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-riscv-6.5-headers-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-riscv-6.5-tools-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-riscv-6.5",
"purl": "pkg:deb/ubuntu/linux-riscv-6.5@6.5.0-45.45.1~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-17.17.1.1~22.04.1",
"6.5.0-21.21.1~22.04.1",
"6.5.0-25.25.1~22.04.1",
"6.5.0-26.26.1~22.04.1",
"6.5.0-27.28.1~22.04.1",
"6.5.0-28.29.1~22.04.1",
"6.5.0-35.35.1~22.04.1",
"6.5.0-40.40.1~22.04.1",
"6.5.0-42.42.1~22.04.1",
"6.5.0-45.45.1~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-image-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-riscv-6.8-headers-6.8.0-110",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-riscv-6.8-tools-6.8.0-110",
"binary_version": "6.8.0-110.110~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-110-generic",
"binary_version": "6.8.0-110.110~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-riscv-6.8",
"purl": "pkg:deb/ubuntu/linux-riscv-6.8@6.8.0-110.110~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-110.110~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-38.38.1~22.04.1",
"6.8.0-39.39.1~22.04.1",
"6.8.0-40.40.1~22.04.1",
"6.8.0-41.41.1~22.04.1",
"6.8.0-44.44.1~22.04.1",
"6.8.0-47.47.1~22.04.1",
"6.8.0-48.48.1~22.04.2",
"6.8.0-49.49.1~22.04.1",
"6.8.0-50.51.1~22.04.1",
"6.8.0-51.52.1~22.04.1",
"6.8.0-52.53.1~22.04.1",
"6.8.0-53.55.1~22.04.1",
"6.8.0-55.57.1~22.04.1",
"6.8.0-56.58.1~22.04.1",
"6.8.0-57.59.1~22.04.1",
"6.8.0-58.60.1~22.04.1",
"6.8.0-59.61.1~22.04.1",
"6.8.0-62.65~22.04.1",
"6.8.0-63.66~22.04.1",
"6.8.0-64.67~22.04.1",
"6.8.0-71.71~22.04.1",
"6.8.0-78.78~22.04.1",
"6.8.0-79.79~22.04.1",
"6.8.0-83.83~22.04.1",
"6.8.0-84.84~22.04.1",
"6.8.0-86.87~22.04.1",
"6.8.0-87.88~22.04.1",
"6.8.0-88.89~22.04.1",
"6.8.0-90.91~22.04.1",
"6.8.0-94.96~22.04.1",
"6.8.0-100.100~22.04.1",
"6.8.0-101.101~22.04.1",
"6.8.0-106.106~22.04.1",
"6.8.0-107.107~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-image-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-starfive-5.19-headers-5.19.0-1020",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-starfive-5.19-tools-5.19.0-1020",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-starfive-5.19",
"purl": "pkg:deb/ubuntu/linux-starfive-5.19@5.19.0-1020.22~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1014.16~22.04.1",
"5.19.0-1015.17~22.04.1",
"5.19.0-1016.18~22.04.1",
"5.19.0-1017.19~22.04.1",
"5.19.0-1018.20~22.04.1",
"5.19.0-1019.21~22.04.1",
"5.19.0-1020.22~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-image-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-starfive-6.2-headers-6.2.0-1009",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-starfive-6.2-tools-6.2.0-1009",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-starfive-6.2",
"purl": "pkg:deb/ubuntu/linux-starfive-6.2@6.2.0-1009.10~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1006.7~22.04.1",
"6.2.0-1007.8~22.04.1",
"6.2.0-1009.10~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-image-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-starfive-6.5-headers-6.5.0-1018",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-starfive-6.5-tools-6.5.0-1018",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-starfive-6.5",
"purl": "pkg:deb/ubuntu/linux-starfive-6.5@6.5.0-1018.19~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1007.8~22.04.1",
"6.5.0-1008.9~22.04.1",
"6.5.0-1009.10~22.04.1",
"6.5.0-1010.11~22.04.1",
"6.5.0-1011.12~22.04.1",
"6.5.0-1012.13~22.04.1",
"6.5.0-1014.15~22.04.1",
"6.5.0-1015.16~22.04.1",
"6.5.0-1016.17~22.04.1",
"6.5.0-1017.18~22.04.1",
"6.5.0-1018.19~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-headers-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-modules-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-realtime-6.8-cloud-tools-6.8.1-1047",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-realtime-6.8-headers-6.8.1-1047",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-realtime-6.8-tools-6.8.1-1047",
"binary_version": "6.8.1-1047.48~22.04.1"
},
{
"binary_name": "linux-tools-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48~22.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:22.04:LTS",
"name": "linux-realtime-6.8",
"purl": "pkg:deb/ubuntu/linux-realtime-6.8@6.8.1-1047.48~22.04.1?arch=source\u0026distro=realtime/jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.1-1047.48~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.1-1004.4~22.04.1",
"6.8.1-1005.5~22.04.2",
"6.8.1-1006.6~22.04.1",
"6.8.1-1007.7~22.04.1",
"6.8.1-1008.8~22.04.1",
"6.8.1-1009.9~22.04.1",
"6.8.1-1010.10~22.04.1",
"6.8.1-1011.11~22.04.1",
"6.8.1-1012.12~22.04.1",
"6.8.1-1013.14~22.04.1",
"6.8.1-1014.15~22.04.1",
"6.8.1-1015.16~22.04.1",
"6.8.1-1016.17~22.04.1",
"6.8.1-1017.18~22.04.1",
"6.8.1-1018.19~22.04.1",
"6.8.1-1019.20~22.04.1",
"6.8.1-1020.21~22.04.1",
"6.8.1-1021.22~22.04.1",
"6.8.1-1022.23~22.04.1",
"6.8.1-1023.24~22.04.1",
"6.8.1-1024.25~22.04.1",
"6.8.1-1025.26~22.04.1",
"6.8.1-1026.27~22.04.1",
"6.8.1-1030.31~22.04.1",
"6.8.1-1031.32~22.04.1",
"6.8.1-1034.35~22.04.1",
"6.8.1-1035.36~22.04.1",
"6.8.1-1036.37~22.04.1",
"6.8.1-1037.38~22.04.1",
"6.8.1-1038.39~22.04.1",
"6.8.1-1039.40~22.04.1",
"6.8.1-1040.41~22.04.1",
"6.8.1-1041.42~22.04.1",
"6.8.1-1042.43~22.04.1",
"6.8.1-1045.46~22.04.1",
"6.8.1-1046.47~22.04.2"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-buildinfo-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-cloud-tools-6.8.0-110",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-cloud-tools-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-cloud-tools-common",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-headers-6.8.0-110",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-headers-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-headers-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-image-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-image-unsigned-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-image-unsigned-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-lib-rust-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-modules-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-modules-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-modules-extra-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-modules-ipu6-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-modules-usbio-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-source-6.8.0",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-tools-6.8.0-110",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-tools-6.8.0-110-generic",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-tools-6.8.0-110-generic-64k",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-tools-common",
"binary_version": "6.8.0-110.110"
},
{
"binary_name": "linux-tools-host",
"binary_version": "6.8.0-110.110"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux",
"purl": "pkg:deb/ubuntu/linux@6.8.0-110.110?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-110.110"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-9.9",
"6.6.0-14.14",
"6.8.0-11.11",
"6.8.0-20.20",
"6.8.0-22.22",
"6.8.0-28.28",
"6.8.0-31.31",
"6.8.0-35.35",
"6.8.0-36.36",
"6.8.0-38.38",
"6.8.0-39.39",
"6.8.0-40.40",
"6.8.0-41.41",
"6.8.0-44.44",
"6.8.0-45.45",
"6.8.0-47.47",
"6.8.0-48.48",
"6.8.0-49.49",
"6.8.0-50.51",
"6.8.0-51.52",
"6.8.0-52.53",
"6.8.0-53.55",
"6.8.0-54.56",
"6.8.0-55.57",
"6.8.0-56.58",
"6.8.0-57.59",
"6.8.0-58.60",
"6.8.0-59.61",
"6.8.0-60.63",
"6.8.0-62.65",
"6.8.0-63.66",
"6.8.0-64.67",
"6.8.0-71.71",
"6.8.0-78.78",
"6.8.0-79.79",
"6.8.0-83.83",
"6.8.0-84.84",
"6.8.0-85.85",
"6.8.0-86.87",
"6.8.0-87.88",
"6.8.0-88.89",
"6.8.0-90.91",
"6.8.0-94.96",
"6.8.0-100.100",
"6.8.0-101.101",
"6.8.0-106.106",
"6.8.0-107.107"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-aws-cloud-tools-6.8.0-1052",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-aws-headers-6.8.0-1052",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-aws-tools-6.8.0-1052",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-buildinfo-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-buildinfo-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-headers-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-headers-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-modules-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-modules-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-modules-extra-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-modules-extra-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-tools-6.8.0-1052-aws",
"binary_version": "6.8.0-1052.55"
},
{
"binary_name": "linux-tools-6.8.0-1052-aws-64k",
"binary_version": "6.8.0-1052.55"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-aws",
"purl": "pkg:deb/ubuntu/linux-aws@6.8.0-1052.55?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1052.55"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1008.8",
"6.6.0-1001.1",
"6.8.0-1001.1",
"6.8.0-1006.6",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1011.12",
"6.8.0-1012.13",
"6.8.0-1013.14",
"6.8.0-1014.15",
"6.8.0-1015.16",
"6.8.0-1016.17",
"6.8.0-1017.18",
"6.8.0-1018.20",
"6.8.0-1019.21",
"6.8.0-1020.22",
"6.8.0-1021.23",
"6.8.0-1023.25",
"6.8.0-1024.26",
"6.8.0-1025.27",
"6.8.0-1026.28",
"6.8.0-1027.29",
"6.8.0-1028.30",
"6.8.0-1029.31",
"6.8.0-1030.32",
"6.8.0-1031.33",
"6.8.0-1032.34",
"6.8.0-1033.35",
"6.8.0-1035.37",
"6.8.0-1036.38",
"6.8.0-1038.40",
"6.8.0-1039.41",
"6.8.0-1040.42",
"6.8.0-1041.43",
"6.8.0-1042.44",
"6.8.0-1043.45",
"6.8.0-1044.46",
"6.8.0-1045.47",
"6.8.0-1046.49",
"6.8.0-1047.50",
"6.8.0-1050.53",
"6.8.0-1051.54"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-6.14-cloud-tools-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-aws-6.14-headers-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-aws-6.14-tools-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-aws-6.14",
"purl": "pkg:deb/ubuntu/linux-aws-6.14@6.14.0-1018.18~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1007.7~24.04.1",
"6.14.0-1009.9~24.04.1",
"6.14.0-1010.10~24.04.1",
"6.14.0-1011.11~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1015.15~24.04.1",
"6.14.0-1016.16~24.04.1",
"6.14.0-1017.17~24.04.1",
"6.14.0-1018.18~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-aws-6.17-cloud-tools-6.17.0-1012",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-aws-6.17-headers-6.17.0-1012",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-aws-6.17-tools-6.17.0-1012",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-aws-6.17",
"purl": "pkg:deb/ubuntu/linux-aws-6.17@6.17.0-1012.12~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1012.12~24.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1005.5~24.04.2",
"6.17.0-1007.7~24.04.1",
"6.17.0-1009.9~24.04.2",
"6.17.0-1010.10~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-cloud-tools-6.8.0-1054",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-azure-headers-6.8.0-1054",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-azure-tools-6.8.0-1054",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-buildinfo-6.8.0-1054-azure",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1054-azure",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-headers-6.8.0-1054-azure",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1054-azure",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-modules-6.8.0-1054-azure",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-modules-extra-6.8.0-1054-azure",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1054-azure",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1054-azure",
"binary_version": "6.8.0-1054.60"
},
{
"binary_name": "linux-tools-6.8.0-1054-azure",
"binary_version": "6.8.0-1054.60"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure",
"purl": "pkg:deb/ubuntu/linux-azure@6.8.0-1054.60?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1054.60"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1007.7",
"6.6.0-1001.1",
"6.8.0-1001.1",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1012.14",
"6.8.0-1013.15",
"6.8.0-1014.16",
"6.8.0-1015.17",
"6.8.0-1016.18",
"6.8.0-1017.20",
"6.8.0-1018.21",
"6.8.0-1020.23",
"6.8.0-1021.25",
"6.8.0-1025.30",
"6.8.0-1026.31",
"6.8.0-1027.32",
"6.8.0-1028.33",
"6.8.0-1029.34",
"6.8.0-1030.35",
"6.8.0-1031.36",
"6.8.0-1034.39",
"6.8.0-1038.44",
"6.8.0-1040.46",
"6.8.0-1041.47",
"6.8.0-1042.48",
"6.8.0-1044.50",
"6.8.0-1046.52",
"6.8.0-1051.57",
"6.8.0-1052.58"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-6.11-cloud-tools-6.11.0-1018",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-azure-6.11-headers-6.11.0-1018",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-azure-6.11-tools-6.11.0-1018",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-6.11",
"purl": "pkg:deb/ubuntu/linux-azure-6.11@6.11.0-1018.18~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1008.8~24.04.1",
"6.11.0-1012.12~24.04.1",
"6.11.0-1013.13~24.04.1",
"6.11.0-1014.14~24.04.1",
"6.11.0-1015.15~24.04.1",
"6.11.0-1017.17~24.04.1",
"6.11.0-1018.18~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-6.14-cloud-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-azure-6.14-headers-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-azure-6.14-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-6.14",
"purl": "pkg:deb/ubuntu/linux-azure-6.14@6.14.0-1017.17~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1010.10~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1017.17~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-6.17-cloud-tools-6.17.0-1013",
"binary_version": "6.17.0-1013.13~24.04.1"
},
{
"binary_name": "linux-azure-6.17-headers-6.17.0-1013",
"binary_version": "6.17.0-1013.13~24.04.1"
},
{
"binary_name": "linux-azure-6.17-tools-6.17.0-1013",
"binary_version": "6.17.0-1013.13~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-6.17",
"purl": "pkg:deb/ubuntu/linux-azure-6.17@6.17.0-1013.13~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1013.13~24.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1008.8~24.04.1",
"6.17.0-1010.10~24.04.1",
"6.17.0-1011.11~24.04.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-fde-cloud-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-azure-fde-headers-6.8.0-1063",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-azure-fde-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-buildinfo-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-headers-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-modules-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-modules-extra-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70"
},
{
"binary_name": "linux-tools-6.8.0-1063-azure-fde",
"binary_version": "6.8.0-1063.70"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-fde",
"purl": "pkg:deb/ubuntu/linux-azure-fde@6.8.0-1063.70?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1041.48",
"6.8.0-1044.51",
"6.8.0-1046.53",
"6.8.0-1053.60",
"6.8.0-1058.65",
"6.8.0-1061.68",
"6.8.0-1062.69",
"6.8.0-1063.70"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-fde-6.14-cloud-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-azure-fde-6.14-headers-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-azure-fde-6.14-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-fde-6.14",
"purl": "pkg:deb/ubuntu/linux-azure-fde-6.14@6.14.0-1017.17~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1015.15~24.04.1",
"6.14.0-1017.17~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-nvidia-cloud-tools-6.8.0-1039",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-azure-nvidia-headers-6.8.0-1039",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-azure-nvidia-tools-6.8.0-1039",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-buildinfo-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-headers-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-modules-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-modules-extra-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-tools-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-nvidia",
"purl": "pkg:deb/ubuntu/linux-azure-nvidia@6.8.0-1039.42?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1013.14",
"6.8.0-1014.15",
"6.8.0-1016.17",
"6.8.0-1018.19",
"6.8.0-1019.20",
"6.8.0-1022.23",
"6.8.0-1025.27",
"6.8.0-1027.30",
"6.8.0-1029.32",
"6.8.0-1039.42"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-nvidia-6.14-cloud-tools-6.14.0-1007",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-azure-nvidia-6.14-headers-6.14.0-1007",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-azure-nvidia-6.14-tools-6.14.0-1007",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-buildinfo-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-headers-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-modules-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-modules-extra-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-tools-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-nvidia-6.14",
"purl": "pkg:deb/ubuntu/linux-azure-nvidia-6.14@6.14.0-1007.7?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1003.3",
"6.14.0-1006.6",
"6.14.0-1007.7"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-buildinfo-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-gcp-headers-6.8.0-1054",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-gcp-tools-6.8.0-1054",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-headers-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-headers-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-modules-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-modules-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-modules-extra-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-modules-extra-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-tools-6.8.0-1054-gcp",
"binary_version": "6.8.0-1054.57"
},
{
"binary_name": "linux-tools-6.8.0-1054-gcp-64k",
"binary_version": "6.8.0-1054.57"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gcp",
"purl": "pkg:deb/ubuntu/linux-gcp@6.8.0-1054.57?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1054.57"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1007.7",
"6.6.0-1001.1",
"6.8.0-1002.2",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.9",
"6.8.0-1009.10",
"6.8.0-1010.11",
"6.8.0-1011.12",
"6.8.0-1012.13",
"6.8.0-1013.14",
"6.8.0-1014.16",
"6.8.0-1015.17",
"6.8.0-1016.18",
"6.8.0-1017.19",
"6.8.0-1018.20",
"6.8.0-1019.21",
"6.8.0-1020.22",
"6.8.0-1021.23",
"6.8.0-1024.26",
"6.8.0-1025.27",
"6.8.0-1026.28",
"6.8.0-1027.29",
"6.8.0-1028.30",
"6.8.0-1029.31",
"6.8.0-1030.32",
"6.8.0-1031.33",
"6.8.0-1032.34",
"6.8.0-1033.35",
"6.8.0-1034.36",
"6.8.0-1036.38",
"6.8.0-1037.39",
"6.8.0-1039.41",
"6.8.0-1040.42",
"6.8.0-1041.43",
"6.8.0-1042.45",
"6.8.0-1043.46",
"6.8.0-1044.47",
"6.8.0-1045.48",
"6.8.0-1046.49",
"6.8.0-1047.50",
"6.8.0-1048.51",
"6.8.0-1052.55",
"6.8.0-1053.56"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-gcp-6.11-headers-6.11.0-1017",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-gcp-6.11-lib-rust-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-gcp-6.11-tools-6.11.0-1017",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gcp-6.11",
"purl": "pkg:deb/ubuntu/linux-gcp-6.11@6.11.0-1017.17~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1006.6~24.04.2",
"6.11.0-1011.11~24.04.1",
"6.11.0-1013.13~24.04.1",
"6.11.0-1014.14~24.04.1",
"6.11.0-1015.15~24.04.1",
"6.11.0-1016.16~24.04.1",
"6.11.0-1017.17~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-gcp-6.14-headers-6.14.0-1021",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-gcp-6.14-tools-6.14.0-1021",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-lib-rust-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gcp-6.14",
"purl": "pkg:deb/ubuntu/linux-gcp-6.14@6.14.0-1021.22~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1007.7~24.04.1",
"6.14.0-1011.11~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1014.15~24.04.1",
"6.14.0-1015.16~24.04.1",
"6.14.0-1016.17~24.04.1",
"6.14.0-1017.18~24.04.1",
"6.14.0-1018.19~24.04.1",
"6.14.0-1019.20~24.04.1",
"6.14.0-1020.21~24.04.1",
"6.14.0-1021.22~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-gcp-6.17-headers-6.17.0-1012",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-gcp-6.17-tools-6.17.0-1012",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-lib-rust-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gcp-6.17",
"purl": "pkg:deb/ubuntu/linux-gcp-6.17@6.17.0-1012.12~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1012.12~24.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1004.4~24.04.3",
"6.17.0-1008.8~24.04.1",
"6.17.0-1009.9~24.04.3",
"6.17.0-1010.10~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1050-gke",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-buildinfo-6.8.0-1050-gke-64k",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-gke-headers-6.8.0-1050",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-gke-tools-6.8.0-1050",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-headers-6.8.0-1050-gke",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-headers-6.8.0-1050-gke-64k",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1050-gke",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1050-gke-64k",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-modules-6.8.0-1050-gke",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-modules-6.8.0-1050-gke-64k",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-modules-extra-6.8.0-1050-gke",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-modules-extra-6.8.0-1050-gke-64k",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1050-gke",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-tools-6.8.0-1050-gke",
"binary_version": "6.8.0-1050.56"
},
{
"binary_name": "linux-tools-6.8.0-1050-gke-64k",
"binary_version": "6.8.0-1050.56"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gke",
"purl": "pkg:deb/ubuntu/linux-gke@6.8.0-1050.56?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1050.56"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1003.5",
"6.8.0-1004.7",
"6.8.0-1005.8",
"6.8.0-1006.9",
"6.8.0-1007.10",
"6.8.0-1008.11",
"6.8.0-1009.12",
"6.8.0-1010.13",
"6.8.0-1011.14",
"6.8.0-1012.15",
"6.8.0-1013.17",
"6.8.0-1014.18",
"6.8.0-1015.19",
"6.8.0-1016.20",
"6.8.0-1017.21",
"6.8.0-1019.23",
"6.8.0-1020.24",
"6.8.0-1021.25",
"6.8.0-1022.26",
"6.8.0-1023.27",
"6.8.0-1024.28",
"6.8.0-1025.29",
"6.8.0-1026.30",
"6.8.0-1027.31",
"6.8.0-1028.32",
"6.8.0-1029.33",
"6.8.0-1032.36",
"6.8.0-1033.37",
"6.8.0-1035.39",
"6.8.0-1036.40",
"6.8.0-1037.41",
"6.8.0-1038.43",
"6.8.0-1039.44",
"6.8.0-1040.45",
"6.8.0-1041.46",
"6.8.0-1042.47",
"6.8.0-1043.48",
"6.8.0-1044.49",
"6.8.0-1048.53",
"6.8.0-1049.54"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1037-gkeop",
"binary_version": "6.8.0-1037.40"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1037-gkeop",
"binary_version": "6.8.0-1037.40"
},
{
"binary_name": "linux-gkeop-cloud-tools-6.8.0-1037",
"binary_version": "6.8.0-1037.40"
},
{
"binary_name": "linux-gkeop-headers-6.8.0-1037",
"binary_version": "6.8.0-1037.40"
},
{
"binary_name": "linux-gkeop-tools-6.8.0-1037",
"binary_version": "6.8.0-1037.40"
},
{
"binary_name": "linux-headers-6.8.0-1037-gkeop",
"binary_version": "6.8.0-1037.40"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1037-gkeop",
"binary_version": "6.8.0-1037.40"
},
{
"binary_name": "linux-modules-6.8.0-1037-gkeop",
"binary_version": "6.8.0-1037.40"
},
{
"binary_name": "linux-modules-extra-6.8.0-1037-gkeop",
"binary_version": "6.8.0-1037.40"
},
{
"binary_name": "linux-tools-6.8.0-1037-gkeop",
"binary_version": "6.8.0-1037.40"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gkeop",
"purl": "pkg:deb/ubuntu/linux-gkeop@6.8.0-1037.40?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1037.40"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1001.3",
"6.8.0-1002.4",
"6.8.0-1003.5",
"6.8.0-1004.6",
"6.8.0-1006.8",
"6.8.0-1007.9",
"6.8.0-1008.10",
"6.8.0-1009.11",
"6.8.0-1010.12",
"6.8.0-1011.13",
"6.8.0-1012.14",
"6.8.0-1013.15",
"6.8.0-1014.16",
"6.8.0-1015.17",
"6.8.0-1016.18",
"6.8.0-1019.21",
"6.8.0-1020.22",
"6.8.0-1022.24",
"6.8.0-1023.25",
"6.8.0-1024.26",
"6.8.0-1025.28",
"6.8.0-1026.29",
"6.8.0-1027.30",
"6.8.0-1028.31",
"6.8.0-1029.32",
"6.8.0-1030.33",
"6.8.0-1031.34",
"6.8.0-1035.38",
"6.8.0-1036.39"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-hwe-6.11-cloud-tools-6.11.0-29",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-hwe-6.11-headers-6.11.0-29",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-hwe-6.11-lib-rust-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-hwe-6.11-tools-6.11.0-29",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-image-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-ipu7-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-usbio-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-vision-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-hwe-6.11",
"purl": "pkg:deb/ubuntu/linux-hwe-6.11@6.11.0-29.29~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-17.17~24.04.2",
"6.11.0-19.19~24.04.1",
"6.11.0-21.21~24.04.1",
"6.11.0-24.24~24.04.1",
"6.11.0-25.25~24.04.1",
"6.11.0-26.26~24.04.1",
"6.11.0-28.28~24.04.1",
"6.11.0-29.29~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-hwe-6.14-cloud-tools-6.14.0-37",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-hwe-6.14-headers-6.14.0-37",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-hwe-6.14-tools-6.14.0-37",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-image-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-lib-rust-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-ipu7-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-usbio-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-vision-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-hwe-6.14",
"purl": "pkg:deb/ubuntu/linux-hwe-6.14@6.14.0-37.37~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-24.24~24.04.3",
"6.14.0-27.27~24.04.1",
"6.14.0-28.28~24.04.1",
"6.14.0-29.29~24.04.1",
"6.14.0-32.32~24.04.1",
"6.14.0-33.33~24.04.1",
"6.14.0-34.34~24.04.1",
"6.14.0-35.35~24.04.1",
"6.14.0-36.36~24.04.1",
"6.14.0-37.37~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-hwe-6.17-cloud-tools-6.17.0-22",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-hwe-6.17-headers-6.17.0-22",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-hwe-6.17-tools-6.17.0-22",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-image-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-lib-rust-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-modules-ipu7-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-modules-usbio-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-modules-vision-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-22-generic",
"binary_version": "6.17.0-22.22~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-hwe-6.17",
"purl": "pkg:deb/ubuntu/linux-hwe-6.17@6.17.0-22.22~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-22.22~24.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-14.14~24.04.1",
"6.17.0-19.19~24.04.2",
"6.17.0-20.20~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51"
},
{
"binary_name": "linux-headers-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51"
},
{
"binary_name": "linux-ibm-headers-6.8.0-1051",
"binary_version": "6.8.0-1051.51"
},
{
"binary_name": "linux-ibm-tools-6.8.0-1051",
"binary_version": "6.8.0-1051.51"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51"
},
{
"binary_name": "linux-modules-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51"
},
{
"binary_name": "linux-modules-extra-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51"
},
{
"binary_name": "linux-tools-6.8.0-1051-ibm",
"binary_version": "6.8.0-1051.51"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-ibm",
"purl": "pkg:deb/ubuntu/linux-ibm@6.8.0-1051.51?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1051.51"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1009.9",
"6.8.0-1001.1",
"6.8.0-1003.3",
"6.8.0-1004.4",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1011.11",
"6.8.0-1012.12",
"6.8.0-1013.13",
"6.8.0-1014.14",
"6.8.0-1015.15",
"6.8.0-1016.16",
"6.8.0-1017.17",
"6.8.0-1018.18",
"6.8.0-1019.19",
"6.8.0-1022.22",
"6.8.0-1023.23",
"6.8.0-1024.24",
"6.8.0-1025.25",
"6.8.0-1026.26",
"6.8.0-1027.27",
"6.8.0-1028.28",
"6.8.0-1029.29",
"6.8.0-1030.30",
"6.8.0-1033.33",
"6.8.0-1036.36",
"6.8.0-1037.37",
"6.8.0-1038.38",
"6.8.0-1039.39",
"6.8.0-1040.40",
"6.8.0-1041.41",
"6.8.0-1042.42",
"6.8.0-1043.43",
"6.8.0-1044.44",
"6.8.0-1045.45",
"6.8.0-1049.49",
"6.8.0-1050.50"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-headers-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-headers-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-lowlatency-cloud-tools-6.8.0-110",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-lowlatency-headers-6.8.0-110",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-lowlatency-lib-rust-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-lowlatency-tools-6.8.0-110",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-modules-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-modules-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-tools-6.8.0-110-lowlatency",
"binary_version": "6.8.0-110.110.1"
},
{
"binary_name": "linux-tools-6.8.0-110-lowlatency-64k",
"binary_version": "6.8.0-110.110.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-lowlatency",
"purl": "pkg:deb/ubuntu/linux-lowlatency@6.8.0-110.110.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-110.110.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-9.9.1",
"6.6.0-14.14.1",
"6.8.0-7.7.1",
"6.8.0-25.25.3",
"6.8.0-28.28.1",
"6.8.0-31.31.1",
"6.8.0-35.35.1",
"6.8.0-36.36.1",
"6.8.0-38.38.1",
"6.8.0-39.39.1",
"6.8.0-40.40.1",
"6.8.0-41.41.1",
"6.8.0-44.44.1",
"6.8.0-45.45.1",
"6.8.0-47.47.1",
"6.8.0-48.48.3",
"6.8.0-49.49.1",
"6.8.0-50.51.1",
"6.8.0-51.52.1",
"6.8.0-52.53.1",
"6.8.0-53.55.2",
"6.8.0-54.56.1",
"6.8.0-55.57.1",
"6.8.0-56.58.1",
"6.8.0-57.59.1",
"6.8.0-58.60.1",
"6.8.0-59.61.1",
"6.8.0-60.63.1",
"6.8.0-62.65.1",
"6.8.0-63.66.1",
"6.8.0-64.67.1",
"6.8.0-65.68.1",
"6.8.0-78.78.1",
"6.8.0-79.79.1",
"6.8.0-83.83.1",
"6.8.0-84.84.1",
"6.8.0-85.85.1",
"6.8.0-86.87.1",
"6.8.0-87.88.1",
"6.8.0-88.89.1",
"6.8.0-90.91.1",
"6.8.0-94.96.1",
"6.8.0-100.100.1",
"6.8.0-101.101.1",
"6.8.0-106.106.1",
"6.8.0-107.107.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.11-cloud-tools-6.11.0-1016",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.11-headers-6.11.0-1016",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.11-lib-rust-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.11-tools-6.11.0-1016",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-lowlatency-hwe-6.11",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.11@6.11.0-1016.17~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1009.10~24.04.1",
"6.11.0-1011.12~24.04.1",
"6.11.0-1012.13~24.04.1",
"6.11.0-1013.14~24.04.1",
"6.11.0-1014.15~24.04.1",
"6.11.0-1015.16~24.04.2",
"6.11.0-1016.17~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-buildinfo-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-headers-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-headers-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-modules-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-modules-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-nvidia-headers-6.8.0-1051",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-nvidia-tools-6.8.0-1051",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-tools-6.8.0-1051-nvidia",
"binary_version": "6.8.0-1051.54"
},
{
"binary_name": "linux-tools-6.8.0-1051-nvidia-64k",
"binary_version": "6.8.0-1051.54"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia",
"purl": "pkg:deb/ubuntu/linux-nvidia@6.8.0-1051.54?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1051.54"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1011.11",
"6.8.0-1012.12",
"6.8.0-1013.14",
"6.8.0-1014.15",
"6.8.0-1015.16",
"6.8.0-1017.19",
"6.8.0-1018.20",
"6.8.0-1019.21",
"6.8.0-1020.22",
"6.8.0-1021.23",
"6.8.0-1022.25",
"6.8.0-1023.26",
"6.8.0-1024.27",
"6.8.0-1025.28",
"6.8.0-1026.29",
"6.8.0-1027.30",
"6.8.0-1028.31",
"6.8.0-1029.32",
"6.8.0-1030.33",
"6.8.0-1031.34",
"6.8.0-1032.35",
"6.8.0-1035.38",
"6.8.0-1036.39",
"6.8.0-1038.41",
"6.8.0-1039.42",
"6.8.0-1040.43",
"6.8.0-1041.44",
"6.8.0-1042.45",
"6.8.0-1043.46",
"6.8.0-1044.47",
"6.8.0-1045.48",
"6.8.0-1046.49",
"6.8.0-1047.50",
"6.8.0-1049.52",
"6.8.0-1050.53"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-buildinfo-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-headers-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-headers-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-extra-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-extra-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-nvidia-fs-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-nvidia-fs-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-nvidia-6.11-headers-6.11.0-1016",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-nvidia-6.11-lib-rust-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-nvidia-6.11-tools-6.11.0-1016",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-tools-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-tools-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia-6.11",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.11@6.11.0-1016.16?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1002.2",
"6.11.0-1003.3",
"6.11.0-1007.7",
"6.11.0-1010.10",
"6.11.0-1011.11",
"6.11.0-1012.12",
"6.11.0-1013.13",
"6.11.0-1016.16"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1018-nvidia",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-buildinfo-6.17.0-1018-nvidia-64k",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-headers-6.17.0-1018-nvidia",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-headers-6.17.0-1018-nvidia-64k",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1018-nvidia",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1018-nvidia-64k",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-modules-6.17.0-1018-nvidia",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-modules-6.17.0-1018-nvidia-64k",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-modules-nvidia-fs-6.17.0-1018-nvidia",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-modules-nvidia-fs-6.17.0-1018-nvidia-64k",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-nvidia-6.17-headers-6.17.0-1018",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-nvidia-6.17-tools-6.17.0-1018",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-tools-6.17.0-1018-nvidia",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-tools-6.17.0-1018-nvidia-64k",
"binary_version": "6.17.0-1018.18"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia-6.17",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.17@6.17.0-1018.18?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1018.18"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1004.4",
"6.17.0-1008.8",
"6.17.0-1014.14"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1051-nvidia-lowlatency",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1051-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-headers-6.8.0-1051-nvidia-lowlatency",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-headers-6.8.0-1051-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1051-nvidia-lowlatency",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1051-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-modules-6.8.0-1051-nvidia-lowlatency",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-modules-6.8.0-1051-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1051-nvidia-lowlatency",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1051-nvidia-lowlatency",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1051-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-nvidia-lowlatency-headers-6.8.0-1051",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-nvidia-lowlatency-tools-6.8.0-1051",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-tools-6.8.0-1051-nvidia-lowlatency",
"binary_version": "6.8.0-1051.54.1"
},
{
"binary_name": "linux-tools-6.8.0-1051-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1051.54.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia-lowlatency",
"purl": "pkg:deb/ubuntu/linux-nvidia-lowlatency@6.8.0-1051.54.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1051.54.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1009.9.1",
"6.8.0-1011.11.1",
"6.8.0-1012.12.1",
"6.8.0-1013.14.1",
"6.8.0-1014.15.1",
"6.8.0-1015.16.1",
"6.8.0-1017.19.1",
"6.8.0-1018.20.1",
"6.8.0-1019.21.1",
"6.8.0-1020.22.1",
"6.8.0-1021.23.1",
"6.8.0-1022.25.2",
"6.8.0-1023.26.1",
"6.8.0-1024.27.1",
"6.8.0-1025.28.1",
"6.8.0-1026.29.1",
"6.8.0-1027.30.1",
"6.8.0-1028.31.1",
"6.8.0-1029.32.1",
"6.8.0-1030.33.1",
"6.8.0-1031.34.1",
"6.8.0-1032.35.1",
"6.8.0-1035.38.1",
"6.8.0-1036.39.1",
"6.8.0-1038.41.1",
"6.8.0-1039.42.1",
"6.8.0-1040.43.1",
"6.8.0-1041.44.1",
"6.8.0-1042.45.1",
"6.8.0-1043.46.1",
"6.8.0-1044.47.1",
"6.8.0-1045.48.1",
"6.8.0-1046.49.1",
"6.8.0-1047.50.1",
"6.8.0-1049.52.1",
"6.8.0-1050.53.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1022-nvidia-tegra",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-buildinfo-6.8.0-1022-nvidia-tegra-rt",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-headers-6.8.0-1022-nvidia-tegra",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-headers-6.8.0-1022-nvidia-tegra-rt",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1022-nvidia-tegra",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1022-nvidia-tegra-rt",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-modules-6.8.0-1022-nvidia-tegra",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-modules-6.8.0-1022-nvidia-tegra-rt",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-modules-extra-6.8.0-1022-nvidia-tegra",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-modules-extra-6.8.0-1022-nvidia-tegra-rt",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-nvidia-tegra-headers-6.8.0-1022",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-nvidia-tegra-tools-6.8.0-1022",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-tools-6.8.0-1022-nvidia-tegra",
"binary_version": "6.8.0-1022.22"
},
{
"binary_name": "linux-tools-6.8.0-1022-nvidia-tegra-rt",
"binary_version": "6.8.0-1022.22"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia-tegra",
"purl": "pkg:deb/ubuntu/linux-nvidia-tegra@6.8.0-1022.22?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1022.22"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1003.3",
"6.8.0-1004.4",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1012.12",
"6.8.0-1013.13",
"6.8.0-1016.16",
"6.8.0-1019.19",
"6.8.0-1020.20",
"6.8.0-1021.21"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-headers-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-ipu6-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-ipu7-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-usbio-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-vision-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-oem-6.11-headers-6.11.0-1027",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-oem-6.11-tools-6.11.0-1027",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-tools-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oem-6.11",
"purl": "pkg:deb/ubuntu/linux-oem-6.11@6.11.0-1027.27?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1007.7",
"6.11.0-1008.8",
"6.11.0-1009.9",
"6.11.0-1010.10",
"6.11.0-1011.11",
"6.11.0-1012.12",
"6.11.0-1013.13",
"6.11.0-1015.15",
"6.11.0-1016.16",
"6.11.0-1017.17",
"6.11.0-1018.18",
"6.11.0-1020.20",
"6.11.0-1021.21",
"6.11.0-1022.22",
"6.11.0-1023.23",
"6.11.0-1024.24",
"6.11.0-1025.25",
"6.11.0-1027.27"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-headers-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-ipu6-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-ipu7-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-iwlwifi-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-usbio-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-vision-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-oem-6.14-headers-6.14.0-1020",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-oem-6.14-tools-6.14.0-1020",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-tools-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oem-6.14",
"purl": "pkg:deb/ubuntu/linux-oem-6.14@6.14.0-1020.20?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1004.4",
"6.14.0-1005.5",
"6.14.0-1006.6",
"6.14.0-1007.7",
"6.14.0-1008.8",
"6.14.0-1010.10",
"6.14.0-1011.11",
"6.14.0-1012.12",
"6.14.0-1013.13",
"6.14.0-1014.14",
"6.14.0-1015.15",
"6.14.0-1016.16",
"6.14.0-1017.17",
"6.14.0-1018.18",
"6.14.0-1019.19",
"6.14.0-1020.20"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-headers-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-evdi-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-ipu6-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-ipu7-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-usbio-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-vision-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-oem-6.17-headers-6.17.0-1020",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-oem-6.17-tools-6.17.0-1020",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-tools-6.17.0-1020-oem",
"binary_version": "6.17.0-1020.20"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oem-6.17",
"purl": "pkg:deb/ubuntu/linux-oem-6.17@6.17.0-1020.20?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1020.20"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1008.8",
"6.17.0-1009.9",
"6.17.0-1010.10",
"6.17.0-1011.11",
"6.17.0-1012.12",
"6.17.0-1017.17"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-headers-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-modules-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-modules-ipu6-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-modules-usbio-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-oem-6.8-headers-6.8.0-1032",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-oem-6.8-tools-6.8.0-1032",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-tools-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oem-6.8",
"purl": "pkg:deb/ubuntu/linux-oem-6.8@6.8.0-1032.32?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1003.3",
"6.8.0-1004.4",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1011.11",
"6.8.0-1012.12",
"6.8.0-1013.13",
"6.8.0-1014.14",
"6.8.0-1016.16",
"6.8.0-1017.17",
"6.8.0-1018.18",
"6.8.0-1019.19",
"6.8.0-1020.20",
"6.8.0-1024.24",
"6.8.0-1025.25",
"6.8.0-1026.26",
"6.8.0-1027.27",
"6.8.0-1028.28",
"6.8.0-1029.29",
"6.8.0-1030.30",
"6.8.0-1031.31",
"6.8.0-1032.32"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-buildinfo-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-headers-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-headers-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-modules-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-modules-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-modules-extra-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-modules-extra-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-oracle-headers-6.8.0-1049",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-oracle-tools-6.8.0-1049",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-tools-6.8.0-1049-oracle",
"binary_version": "6.8.0-1049.50"
},
{
"binary_name": "linux-tools-6.8.0-1049-oracle-64k",
"binary_version": "6.8.0-1049.50"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oracle",
"purl": "pkg:deb/ubuntu/linux-oracle@6.8.0-1049.50?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1049.50"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1010.10",
"6.6.0-1001.1",
"6.8.0-1001.1",
"6.8.0-1004.4",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1008.8",
"6.8.0-1010.10",
"6.8.0-1011.11",
"6.8.0-1012.12",
"6.8.0-1013.13",
"6.8.0-1014.14",
"6.8.0-1015.16",
"6.8.0-1016.17",
"6.8.0-1017.18",
"6.8.0-1018.19",
"6.8.0-1019.20",
"6.8.0-1020.21",
"6.8.0-1021.22",
"6.8.0-1022.23",
"6.8.0-1023.24",
"6.8.0-1024.25",
"6.8.0-1025.26",
"6.8.0-1026.27",
"6.8.0-1027.28",
"6.8.0-1028.29",
"6.8.0-1029.30",
"6.8.0-1030.31",
"6.8.0-1032.33",
"6.8.0-1033.34",
"6.8.0-1035.36",
"6.8.0-1037.38",
"6.8.0-1038.39",
"6.8.0-1039.40",
"6.8.0-1040.41",
"6.8.0-1041.42",
"6.8.0-1042.43",
"6.8.0-1043.44",
"6.8.0-1044.45",
"6.8.0-1047.48"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-oracle-6.14-headers-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-oracle-6.14-tools-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oracle-6.14",
"purl": "pkg:deb/ubuntu/linux-oracle-6.14@6.14.0-1018.18~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1007.7~24.04.1",
"6.14.0-1009.9~24.04.1",
"6.14.0-1010.10~24.04.1",
"6.14.0-1011.11~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1015.15~24.04.1",
"6.14.0-1016.16~24.04.1",
"6.14.0-1017.17~24.04.1",
"6.14.0-1018.18~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-oracle-6.17-headers-6.17.0-1011",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-oracle-6.17-tools-6.17.0-1011",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oracle-6.17",
"purl": "pkg:deb/ubuntu/linux-oracle-6.17@6.17.0-1011.11~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1011.11~24.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1004.4~24.04.2",
"6.17.0-1007.7~24.04.1",
"6.17.0-1009.9~24.04.1",
"6.17.0-1010.10~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1052-raspi",
"binary_version": "6.8.0-1052.56"
},
{
"binary_name": "linux-headers-6.8.0-1052-raspi",
"binary_version": "6.8.0-1052.56"
},
{
"binary_name": "linux-image-6.8.0-1052-raspi",
"binary_version": "6.8.0-1052.56"
},
{
"binary_name": "linux-modules-6.8.0-1052-raspi",
"binary_version": "6.8.0-1052.56"
},
{
"binary_name": "linux-raspi-headers-6.8.0-1052",
"binary_version": "6.8.0-1052.56"
},
{
"binary_name": "linux-raspi-tools-6.8.0-1052",
"binary_version": "6.8.0-1052.56"
},
{
"binary_name": "linux-tools-6.8.0-1052-raspi",
"binary_version": "6.8.0-1052.56"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-raspi",
"purl": "pkg:deb/ubuntu/linux-raspi@6.8.0-1052.56?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1052.56"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1005.7",
"6.7.0-1001.1",
"6.8.0-1001.1",
"6.8.0-1002.2",
"6.8.0-1003.3",
"6.8.0-1004.4",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.10",
"6.8.0-1010.11",
"6.8.0-1011.12",
"6.8.0-1012.13",
"6.8.0-1013.14",
"6.8.0-1014.16",
"6.8.0-1015.17",
"6.8.0-1016.18",
"6.8.0-1017.19",
"6.8.0-1018.20",
"6.8.0-1019.23",
"6.8.0-1020.24",
"6.8.0-1024.28",
"6.8.0-1028.32",
"6.8.0-1029.33",
"6.8.0-1030.34",
"6.8.0-1031.35",
"6.8.0-1032.36",
"6.8.0-1035.39",
"6.8.0-1036.40",
"6.8.0-1038.42",
"6.8.0-1039.43",
"6.8.0-1040.44",
"6.8.0-1041.45",
"6.8.0-1042.46",
"6.8.0-1043.47",
"6.8.0-1044.48",
"6.8.0-1045.49",
"6.8.0-1047.51",
"6.8.0-1048.52",
"6.8.0-1050.54",
"6.8.0-1051.55"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-headers-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-image-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-modules-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-raspi-realtime-headers-6.8.0-2019",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-raspi-realtime-tools-6.8.0-2019",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-tools-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-raspi-realtime",
"purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2019.20?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-2019.20"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-cloud-tools-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-headers-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-image-unsigned-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-modules-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-modules-extra-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-realtime-cloud-tools-6.8.1-1015",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-realtime-headers-6.8.1-1015",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-realtime-tools-6.8.1-1015",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-tools-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@6.8.1-1015.16?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.1-1015.16"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-headers-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-image-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-modules-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-riscv-headers-6.8.0-60",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-riscv-tools-6.8.0-60",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-tools-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-riscv",
"purl": "pkg:deb/ubuntu/linux-riscv@6.8.0-60.63.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-9.9.1",
"6.8.0-20.20.1",
"6.8.0-28.28.1",
"6.8.0-31.31.1",
"6.8.0-35.35.1",
"6.8.0-36.36.1",
"6.8.0-38.38.1",
"6.8.0-39.39.1",
"6.8.0-40.40.1",
"6.8.0-41.41.1",
"6.8.0-44.44.1",
"6.8.0-47.47.1",
"6.8.0-48.48.1",
"6.8.0-49.49.1",
"6.8.0-50.51.1",
"6.8.0-51.52.1",
"6.8.0-52.53.1",
"6.8.0-53.55.1",
"6.8.0-55.57.1",
"6.8.0-56.58.1",
"6.8.0-57.59.1",
"6.8.0-58.60.1",
"6.8.0-59.61.1",
"6.8.0-60.63.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-image-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-riscv-6.14-headers-6.14.0-37",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-riscv-6.14-tools-6.14.0-37",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-riscv-6.14",
"purl": "pkg:deb/ubuntu/linux-riscv-6.14@6.14.0-37.37.1~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-22.22.1~24.04.1",
"6.14.0-23.23.1~24.04.1",
"6.14.0-24.24.1~24.04.1",
"6.14.0-27.27.1~24.04.1",
"6.14.0-28.28.1~24.04.1",
"6.14.0-29.29.1~24.04.1",
"6.14.0-32.32.1~24.04.1",
"6.14.0-33.33.1~24.04.1",
"6.14.0-34.34.1~24.04.1",
"6.14.0-35.35.1~24.04.1",
"6.14.0-36.36.1~24.04.1",
"6.14.0-37.37.1~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1~24.04.1"
},
{
"binary_name": "linux-image-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1~24.04.1"
},
{
"binary_name": "linux-riscv-6.17-headers-6.17.0-22",
"binary_version": "6.17.0-22.22.1~24.04.1"
},
{
"binary_name": "linux-riscv-6.17-tools-6.17.0-22",
"binary_version": "6.17.0-22.22.1~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-riscv-6.17",
"purl": "pkg:deb/ubuntu/linux-riscv-6.17@6.17.0-22.22.1~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-22.22.1~24.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-14.14.1~24.04.1",
"6.17.0-19.19.1~24.04.1",
"6.17.0-20.20.1~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1028-xilinx",
"binary_version": "6.8.0-1028.29"
},
{
"binary_name": "linux-headers-6.8.0-1028-xilinx",
"binary_version": "6.8.0-1028.29"
},
{
"binary_name": "linux-image-6.8.0-1028-xilinx",
"binary_version": "6.8.0-1028.29"
},
{
"binary_name": "linux-modules-6.8.0-1028-xilinx",
"binary_version": "6.8.0-1028.29"
},
{
"binary_name": "linux-tools-6.8.0-1028-xilinx",
"binary_version": "6.8.0-1028.29"
},
{
"binary_name": "linux-xilinx-headers-6.8.0-1028",
"binary_version": "6.8.0-1028.29"
},
{
"binary_name": "linux-xilinx-tools-6.8.0-1028",
"binary_version": "6.8.0-1028.29"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-xilinx",
"purl": "pkg:deb/ubuntu/linux-xilinx@6.8.0-1028.29?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1028.29"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.9",
"6.8.0-1009.10",
"6.8.0-1011.12",
"6.8.0-1012.13",
"6.8.0-1013.14",
"6.8.0-1014.15",
"6.8.0-1015.16",
"6.8.0-1017.18",
"6.8.0-1018.19",
"6.8.0-1019.20",
"6.8.0-1020.21",
"6.8.0-1021.22",
"6.8.0-1022.23",
"6.8.0-1023.24",
"6.8.0-1024.25"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-bluefield-headers-6.8.0-1028",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-bluefield-tools-6.8.0-1028",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-buildinfo-6.8.0-1028-bluefield",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-buildinfo-6.8.0-1028-bluefield-64k",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-headers-6.8.0-1028-bluefield",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-headers-6.8.0-1028-bluefield-64k",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1028-bluefield",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1028-bluefield-64k",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-modules-6.8.0-1028-bluefield",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-modules-6.8.0-1028-bluefield-64k",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-modules-extra-6.8.0-1028-bluefield",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-modules-extra-6.8.0-1028-bluefield-64k",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-tools-6.8.0-1028-bluefield",
"binary_version": "6.8.0-1028.33"
},
{
"binary_name": "linux-tools-6.8.0-1028-bluefield-64k",
"binary_version": "6.8.0-1028.33"
}
]
},
"package": {
"ecosystem": "Ubuntu:Nvidia-BlueField:24.04:LTS",
"name": "linux-bluefield",
"purl": "pkg:deb/ubuntu/linux-bluefield@6.8.0-1028.33?arch=source\u0026distro=bluefield/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1011.15",
"6.8.0-1012.16",
"6.8.0-1013.17",
"6.8.0-1014.18",
"6.8.0-1016.20",
"6.8.0-1017.21",
"6.8.0-1022.26",
"6.8.0-1023.27",
"6.8.0-1026.30",
"6.8.0-1028.33"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-aws-fips-cloud-tools-6.8.0-1052",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-aws-fips-headers-6.8.0-1052",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-aws-fips-tools-6.8.0-1052",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1052-aws-fips",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1052-aws-fips",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-headers-6.8.0-1052-aws-fips",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1052-aws-fips",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-image-unsigned-hmac-6.8.0-1052-aws-fips",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-modules-6.8.0-1052-aws-fips",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1052-aws-fips",
"binary_version": "6.8.0-1052.55+fips1"
},
{
"binary_name": "linux-tools-6.8.0-1052-aws-fips",
"binary_version": "6.8.0-1052.55+fips1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS",
"name": "linux-aws-fips",
"purl": "pkg:deb/ubuntu/linux-aws-fips@6.8.0-1052.55+fips1?arch=source\u0026distro=fips-updates/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1052.55+fips1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1035.37+fips1",
"6.8.0-1036.38+fips1",
"6.8.0-1038.40+fips1",
"6.8.0-1039.41+fips1",
"6.8.0-1040.42+fips1",
"6.8.0-1041.43+fips1",
"6.8.0-1042.44+fips1",
"6.8.0-1043.45+fips1",
"6.8.0-1044.46+fips1",
"6.8.0-1045.47+fips1",
"6.8.0-1046.49+fips1",
"6.8.0-1047.50+fips1",
"6.8.0-1050.53+fips1",
"6.8.0-1051.54+fips1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-azure-fips-cloud-tools-6.8.0-1053",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-azure-fips-headers-6.8.0-1053",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-azure-fips-tools-6.8.0-1053",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-headers-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-image-unsigned-hmac-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-modules-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
},
{
"binary_name": "linux-tools-6.8.0-1053-azure-fips",
"binary_version": "6.8.0-1053.59+fips1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS",
"name": "linux-azure-fips",
"purl": "pkg:deb/ubuntu/linux-azure-fips@6.8.0-1053.59+fips1?arch=source\u0026distro=fips-updates/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1053.59+fips1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1034.39+fips1",
"6.8.0-1040.46+fips1",
"6.8.0-1044.50+fips1",
"6.8.0-1046.52+fips1",
"6.8.0-1047.53+fips1",
"6.8.0-1052.58+fips1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-cloud-tools-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-fips-cloud-tools-6.8.0-110",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-fips-headers-6.8.0-110",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-fips-lib-rust-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-fips-tools-6.8.0-110",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-headers-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-image-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-image-hmac-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-image-unsigned-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-image-unsigned-hmac-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-modules-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-modules-extra-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-modules-ipu6-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-modules-usbio-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
},
{
"binary_name": "linux-tools-6.8.0-110-fips",
"binary_version": "6.8.0-110.110+fips2"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS",
"name": "linux-fips",
"purl": "pkg:deb/ubuntu/linux-fips@6.8.0-110.110+fips2?arch=source\u0026distro=fips-updates/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-110.110+fips2"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-38.38+fips4",
"6.8.0-78.78+fips1",
"6.8.0-79.79+fips1",
"6.8.0-83.83+fips1",
"6.8.0-84.84+fips1",
"6.8.0-85.85+fips1",
"6.8.0-86.87+fips1",
"6.8.0-87.88+fips1",
"6.8.0-88.89+fips1",
"6.8.0-90.91+fips1",
"6.8.0-94.96+fips1",
"6.8.0-100.100+fips1",
"6.8.0-101.101+fips1",
"6.8.0-106.106+fips1",
"6.8.0-107.107+fips1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1054-gcp-fips",
"binary_version": "6.8.0-1054.57+fips1"
},
{
"binary_name": "linux-gcp-fips-headers-6.8.0-1054",
"binary_version": "6.8.0-1054.57+fips1"
},
{
"binary_name": "linux-gcp-fips-tools-6.8.0-1054",
"binary_version": "6.8.0-1054.57+fips1"
},
{
"binary_name": "linux-headers-6.8.0-1054-gcp-fips",
"binary_version": "6.8.0-1054.57+fips1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1054-gcp-fips",
"binary_version": "6.8.0-1054.57+fips1"
},
{
"binary_name": "linux-image-unsigned-hmac-6.8.0-1054-gcp-fips",
"binary_version": "6.8.0-1054.57+fips1"
},
{
"binary_name": "linux-modules-6.8.0-1054-gcp-fips",
"binary_version": "6.8.0-1054.57+fips1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1054-gcp-fips",
"binary_version": "6.8.0-1054.57+fips1"
},
{
"binary_name": "linux-tools-6.8.0-1054-gcp-fips",
"binary_version": "6.8.0-1054.57+fips1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS",
"name": "linux-gcp-fips",
"purl": "pkg:deb/ubuntu/linux-gcp-fips@6.8.0-1054.57+fips1?arch=source\u0026distro=fips-updates/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1054.57+fips1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1036.38+fips1",
"6.8.0-1037.39+fips1",
"6.8.0-1039.41+fips1",
"6.8.0-1040.42+fips1",
"6.8.0-1041.43+fips1",
"6.8.0-1042.45+fips1",
"6.8.0-1043.46+fips1",
"6.8.0-1044.47+fips1",
"6.8.0-1045.48+fips1",
"6.8.0-1046.49+fips1",
"6.8.0-1047.50+fips1",
"6.8.0-1048.51+fips1",
"6.8.0-1052.55+fips1",
"6.8.0-1053.56+fips1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-2042-raspi-realtime",
"binary_version": "6.8.0-2042.43"
},
{
"binary_name": "linux-headers-6.8.0-2042-raspi-realtime",
"binary_version": "6.8.0-2042.43"
},
{
"binary_name": "linux-image-6.8.0-2042-raspi-realtime",
"binary_version": "6.8.0-2042.43"
},
{
"binary_name": "linux-modules-6.8.0-2042-raspi-realtime",
"binary_version": "6.8.0-2042.43"
},
{
"binary_name": "linux-raspi-realtime-headers-6.8.0-2042",
"binary_version": "6.8.0-2042.43"
},
{
"binary_name": "linux-raspi-realtime-tools-6.8.0-2042",
"binary_version": "6.8.0-2042.43"
},
{
"binary_name": "linux-tools-6.8.0-2042-raspi-realtime",
"binary_version": "6.8.0-2042.43"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:24.04:LTS",
"name": "linux-raspi-realtime",
"purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2042.43?arch=source\u0026distro=realtime/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-2042.43"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.7.0-2001.1",
"6.8.0-2001.1",
"6.8.0-2002.2",
"6.8.0-2004.4",
"6.8.0-2005.5",
"6.8.0-2006.6",
"6.8.0-2007.7",
"6.8.0-2008.8",
"6.8.0-2009.9",
"6.8.0-2010.10",
"6.8.0-2011.11",
"6.8.0-2012.12",
"6.8.0-2013.14",
"6.8.0-2014.15",
"6.8.0-2015.16",
"6.8.0-2016.17",
"6.8.0-2017.18",
"6.8.0-2018.19",
"6.8.0-2019.20",
"6.8.0-2022.23",
"6.8.0-2023.24",
"6.8.0-2024.25",
"6.8.0-2025.26",
"6.8.0-2026.27",
"6.8.0-2028.29",
"6.8.0-2029.30",
"6.8.0-2030.31",
"6.8.0-2031.32",
"6.8.0-2032.33",
"6.8.0-2033.34",
"6.8.0-2034.35",
"6.8.0-2035.36",
"6.8.0-2036.37",
"6.8.0-2037.38",
"6.8.0-2038.39",
"6.8.0-2040.41",
"6.8.0-2041.42"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-cloud-tools-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-headers-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-image-unsigned-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-modules-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-modules-extra-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-realtime-cloud-tools-6.8.1-1047",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-realtime-headers-6.8.1-1047",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-realtime-tools-6.8.1-1047",
"binary_version": "6.8.1-1047.48"
},
{
"binary_name": "linux-tools-6.8.1-1047-realtime",
"binary_version": "6.8.1-1047.48"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:24.04:LTS",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@6.8.1-1047.48?arch=source\u0026distro=realtime/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.1-1047.48"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.19",
"6.8.1-1001.1",
"6.8.1-1002.2",
"6.8.1-1003.3",
"6.8.1-1004.4",
"6.8.1-1005.5",
"6.8.1-1006.6",
"6.8.1-1007.7",
"6.8.1-1008.8",
"6.8.1-1009.9",
"6.8.1-1010.10",
"6.8.1-1011.11",
"6.8.1-1012.12",
"6.8.1-1013.14",
"6.8.1-1014.15",
"6.8.1-1015.16",
"6.8.1-1016.17",
"6.8.1-1017.18",
"6.8.1-1018.19",
"6.8.1-1019.20",
"6.8.1-1020.21",
"6.8.1-1021.22",
"6.8.1-1022.23",
"6.8.1-1023.24",
"6.8.1-1024.25",
"6.8.1-1025.26",
"6.8.1-1026.27",
"6.8.1-1030.31",
"6.8.1-1031.32",
"6.8.1-1033.34",
"6.8.1-1034.35",
"6.8.1-1035.36",
"6.8.1-1036.37",
"6.8.1-1037.38",
"6.8.1-1038.39",
"6.8.1-1039.40",
"6.8.1-1040.41",
"6.8.1-1041.42",
"6.8.1-1042.43",
"6.8.1-1045.46",
"6.8.1-1046.47"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-realtime-6.14-cloud-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-realtime-6.14-headers-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-realtime-6.14-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:24.04:LTS",
"name": "linux-realtime-6.14",
"purl": "pkg:deb/ubuntu/linux-realtime-6.14@6.14.0-1017.17~24.04.1?arch=source\u0026distro=realtime/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1003.3~24.04.3",
"6.14.0-1010.10~24.04.1",
"6.14.0-1011.11~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1015.15~24.04.1",
"6.14.0-1016.16~24.04.1",
"6.14.0-1017.17~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-realtime-6.17-cloud-tools-6.17.0-1010",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-realtime-6.17-headers-6.17.0-1010",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-realtime-6.17-tools-6.17.0-1010",
"binary_version": "6.17.0-1010.11~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11~24.04.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:24.04:LTS",
"name": "linux-realtime-6.17",
"purl": "pkg:deb/ubuntu/linux-realtime-6.17@6.17.0-1010.11~24.04.1?arch=source\u0026distro=realtime/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1010.11~24.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1004.5~24.04.2",
"6.17.0-1006.7~24.04.1",
"6.17.0-1008.9~24.04.1",
"6.17.0-1009.10~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "bpftool",
"binary_version": "7.7.0+6.17.0-22.22"
},
{
"binary_name": "linux-buildinfo-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-buildinfo-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-cloud-tools-6.17.0-22",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-cloud-tools-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-cloud-tools-common",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-headers-6.17.0-22",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-headers-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-headers-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-image-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-image-unsigned-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-image-unsigned-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-lib-rust-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-modules-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-modules-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-modules-ipu6-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-modules-ipu7-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-modules-usbio-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-modules-vision-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-perf",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-source-6.17.0",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-tools-6.17.0-22",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-tools-6.17.0-22-generic",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-tools-6.17.0-22-generic-64k",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-tools-common",
"binary_version": "6.17.0-22.22"
},
{
"binary_name": "linux-tools-host",
"binary_version": "6.17.0-22.22"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux",
"purl": "pkg:deb/ubuntu/linux@6.17.0-22.22?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-22.22"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-15.15",
"6.15.0-3.3",
"6.15.0-4.4",
"6.16.0-13.13",
"6.16.0-16.16",
"6.17.0-3.3",
"6.17.0-4.4",
"6.17.0-5.5",
"6.17.0-6.6",
"6.17.0-7.7",
"6.17.0-8.8",
"6.17.0-12.12",
"6.17.0-14.14",
"6.17.0-19.19",
"6.17.0-20.20"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-aws-cloud-tools-6.17.0-1012",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-aws-headers-6.17.0-1012",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-aws-tools-6.17.0-1012",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-buildinfo-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-buildinfo-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-headers-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-headers-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-modules-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-modules-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-tools-6.17.0-1012-aws",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-tools-6.17.0-1012-aws-64k",
"binary_version": "6.17.0-1012.12"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-aws",
"purl": "pkg:deb/ubuntu/linux-aws@6.17.0-1012.12?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1012.12"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1005.5",
"6.14.0-1007.7+25.10.2",
"6.16.0-1001.1",
"6.17.0-1001.1",
"6.17.0-1002.2",
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1009.9",
"6.17.0-1010.10"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-cloud-tools-6.17.0-1013",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-azure-headers-6.17.0-1013",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-azure-tools-6.17.0-1013",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-buildinfo-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-headers-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-modules-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-tools-6.17.0-1013-azure",
"binary_version": "6.17.0-1013.13"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-azure",
"purl": "pkg:deb/ubuntu/linux-azure@6.17.0-1013.13?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1013.13"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1004.4",
"6.14.0-1007.7+25.10.1",
"6.16.0-1001.1",
"6.17.0-1002.2",
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1008.8",
"6.17.0-1010.10",
"6.17.0-1011.11"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-fde-cloud-tools-6.17.0-1017",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-azure-fde-headers-6.17.0-1017",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-azure-fde-tools-6.17.0-1017",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-buildinfo-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-headers-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-modules-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-tools-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-azure-fde",
"purl": "pkg:deb/ubuntu/linux-azure-fde@6.17.0-1017.17?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1005.5",
"6.17.0-1007.7",
"6.17.0-1008.8",
"6.17.0-1010.10",
"6.17.0-1012.12",
"6.17.0-1014.14",
"6.17.0-1015.15",
"6.17.0-1017.17"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-buildinfo-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-gcp-headers-6.17.0-1012",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-gcp-tools-6.17.0-1012",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-headers-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-headers-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-modules-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-modules-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-tools-6.17.0-1012-gcp",
"binary_version": "6.17.0-1012.12"
},
{
"binary_name": "linux-tools-6.17.0-1012-gcp-64k",
"binary_version": "6.17.0-1012.12"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-gcp",
"purl": "pkg:deb/ubuntu/linux-gcp@6.17.0-1012.12?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1012.12"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1006.6",
"6.14.0-1009.9+25.10.1",
"6.16.0-1001.1",
"6.17.0-1001.1",
"6.17.0-1002.2",
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1009.9",
"6.17.0-1010.10"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-buildinfo-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-headers-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-headers-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-modules-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-modules-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-oracle-headers-6.17.0-1011",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-oracle-tools-6.17.0-1011",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-tools-6.17.0-1011-oracle",
"binary_version": "6.17.0-1011.11"
},
{
"binary_name": "linux-tools-6.17.0-1011-oracle-64k",
"binary_version": "6.17.0-1011.11"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-oracle",
"purl": "pkg:deb/ubuntu/linux-oracle@6.17.0-1011.11?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1011.11"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1005.5",
"6.14.0-1007.7+25.10.1",
"6.16.0-1001.1",
"6.17.0-1001.1",
"6.17.0-1002.2",
"6.17.0-1003.3",
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1009.9",
"6.17.0-1010.10"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1013-raspi",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-headers-6.17.0-1013-raspi",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-image-6.17.0-1013-raspi",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-modules-6.17.0-1013-raspi",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-raspi-headers-6.17.0-1013",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-raspi-tools-6.17.0-1013",
"binary_version": "6.17.0-1013.13"
},
{
"binary_name": "linux-tools-6.17.0-1013-raspi",
"binary_version": "6.17.0-1013.13"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-raspi",
"purl": "pkg:deb/ubuntu/linux-raspi@6.17.0-1013.13?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1013.13"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1005.5",
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1008.8",
"6.17.0-1010.10",
"6.17.0-1011.11"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11"
},
{
"binary_name": "linux-headers-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11"
},
{
"binary_name": "linux-modules-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11"
},
{
"binary_name": "linux-realtime-cloud-tools-6.17.0-1010",
"binary_version": "6.17.0-1010.11"
},
{
"binary_name": "linux-realtime-headers-6.17.0-1010",
"binary_version": "6.17.0-1010.11"
},
{
"binary_name": "linux-realtime-tools-6.17.0-1010",
"binary_version": "6.17.0-1010.11"
},
{
"binary_name": "linux-tools-6.17.0-1010-realtime",
"binary_version": "6.17.0-1010.11"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@6.17.0-1010.11?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-1010.11"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1002.2",
"6.17.0-1001.2",
"6.17.0-1002.3",
"6.17.0-1003.4",
"6.17.0-1004.5",
"6.17.0-1005.6",
"6.17.0-1006.7",
"6.17.0-1008.9",
"6.17.0-1009.10"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1"
},
{
"binary_name": "linux-headers-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1"
},
{
"binary_name": "linux-image-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1"
},
{
"binary_name": "linux-modules-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1"
},
{
"binary_name": "linux-riscv-headers-6.17.0-22",
"binary_version": "6.17.0-22.22.1"
},
{
"binary_name": "linux-riscv-tools-6.17.0-22",
"binary_version": "6.17.0-22.22.1"
},
{
"binary_name": "linux-tools-6.17.0-22-generic",
"binary_version": "6.17.0-22.22.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-riscv",
"purl": "pkg:deb/ubuntu/linux-riscv@6.17.0-22.22.1?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.17.0-22.22.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-13.13.2",
"6.17.0-4.4.1",
"6.17.0-5.5.1",
"6.17.0-6.6.1",
"6.17.0-7.7.1",
"6.17.0-8.8.1",
"6.17.0-12.12.1",
"6.17.0-14.14.1",
"6.17.0-19.19.1",
"6.17.0-20.20.1"
]
}
],
"aliases": [],
"details": "In the Linux kernel, the following vulnerability has been resolved: shmem: fix recovery on rename failures maple_tree insertions can fail if we are seriously short on memory; simple_offset_rename() does not recover well if it runs into that. The same goes for simple_offset_rename_exchange(). Moreover, shmem_whiteout() expects that if it succeeds, the caller will progress to d_move(), i.e. that shmem_rename2() won\u0027t fail past the successful call of shmem_whiteout(). Not hard to fix, fortunately - mtree_store() can\u0027t fail if the index we are trying to store into is already present in the tree as a singleton. For simple_offset_rename_exchange() that\u0027s enough - we just need to be careful about the order of operations. For simple_offset_rename() solution is to preinsert the target into the tree for new_dir; the rest can be done without any potentially failing operations. That preinsertion has to be done in shmem_rename2() rather than in simple_offset_rename() itself - otherwise we\u0027d need to deal with the possibility of failure after successful shmem_whiteout().",
"id": "UBUNTU-CVE-2025-71072",
"modified": "2026-08-11T17:16:05Z",
"published": "2026-01-13T16:16:00Z",
"references": [
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-71072"
},
{
"type": "REPORT",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-71072"
},
{
"type": "REPORT",
"url": "https://git.kernel.org/linus/e1b4c6a58304fd490124cc2b454d80edc786665c"
},
{
"type": "REPORT",
"url": "https://git.kernel.org/stable/c/4642686699a46718d7f2fb5acd1e9d866a9d9cca"
},
{
"type": "REPORT",
"url": "https://git.kernel.org/stable/c/4b0fe71fb3965d0db83cdfc2f4fe0b3227d70113"
},
{
"type": "REPORT",
"url": "https://git.kernel.org/stable/c/e1b4c6a58304fd490124cc2b454d80edc786665c"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8177-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8179-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8177-2"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8183-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8184-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8179-2"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8185-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8183-2"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8179-3"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8203-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8204-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8185-2"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8179-4"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8245-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8257-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8258-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8260-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8261-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8265-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8440-1"
}
],
"related": [
"USN-8177-1",
"USN-8179-1",
"USN-8177-2",
"USN-8183-1",
"USN-8184-1",
"USN-8179-2",
"USN-8185-1",
"USN-8183-2",
"USN-8179-3",
"USN-8203-1",
"USN-8204-1",
"USN-8185-2",
"USN-8179-4",
"USN-8245-1",
"USN-8257-1",
"USN-8258-1",
"USN-8260-1",
"USN-8261-1",
"USN-8265-1",
"USN-8440-1"
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"type": "CVSS_V3"
},
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"type": "CVSS_V3"
},
{
"score": "medium",
"type": "Ubuntu"
}
],
"upstream": [
"CVE-2025-71072"
]
}
WID-SEC-W-2026-0086
Vulnerability from csaf_certbund - Published: 2026-01-13 23:00 - Updated: 2026-07-21 22:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5
|
V11.1.1110.0-V11.1.1111.5 | |
|
IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2
|
V10.3.1050.0-V10.3.1063.2 | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
IBM DataPower Gateway
IBM
|
cpe:/a:ibm:datapower_gateway:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
IBM QRadar SIEM
IBM
|
cpe:/a:ibm:qradar_siem:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— |
| URL | Category |
|---|---|
| https://wid.cert-bund.de/.well-known/csaf/white/2… | self |
| https://wid.cert-bund.de/portal/wid/securityadvis… | self |
| https://lore.kernel.org/linux-cve-announce/ | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lore.kernel.org/linux-cve-announce/202601… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:2282 | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2026-2282.html | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://errata.build.resf.org/RLSA-2026:2282 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:2722 | external |
| https://linux.oracle.com/errata/ELSA-2026-2722.html | external |
| https://linux.oracle.com/errata/ELSA-2026-50113.html | external |
| https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.10-… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2026-50112.html | external |
| https://access.redhat.com/errata/RHSA-2026:3110 | external |
| https://access.redhat.com/errata/RHSA-2026:3083 | external |
| https://errata.build.resf.org/RLSA-2026:2722 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:3275 | external |
| https://linux.oracle.com/errata/ELSA-2026-3083.html | external |
| https://linux.oracle.com/errata/ELSA-2026-3275.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:3488 | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2026-50133.html | external |
| https://linux.oracle.com/errata/ELSA-2026-3488.html | external |
| https://errata.build.resf.org/RLSA-2026:3488 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.15-… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:3963 | external |
| https://access.redhat.com/errata/RHSA-2026:3964 | external |
| https://access.redhat.com/errata/RHSA-2026:4012 | external |
| https://linux.oracle.com/errata/ELSA-2026-3963.html | external |
| https://access.redhat.com/errata/RHSA-2026:4246 | external |
| https://linux.oracle.com/errata/ELSA-2026-4012.html | external |
| https://linux.oracle.com/errata/ELSA-2026-3966.html | external |
| https://linux.oracle.com/errata/ELSA-2026-50145.html | external |
| https://linux.oracle.com/errata/ELSA-2026-50144.html | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://ubuntu.com/security/notices/USN-8096-1 | external |
| https://ubuntu.com/security/notices/USN-8096-2 | external |
| https://access.redhat.com/errata/RHSA-2026:4759 | external |
| https://access.redhat.com/errata/RHSA-2026:4745 | external |
| https://ubuntu.com/security/notices/USN-8096-4 | external |
| https://ubuntu.com/security/notices/USN-8096-3 | external |
| https://linux.oracle.com/errata/ELSA-2026-4759.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.15-… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8116-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8096-5 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:5732 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:5689 | external |
| https://access.redhat.com/errata/RHSA-2026:5690 | external |
| https://access.redhat.com/errata/RHSA-2026:5693 | external |
| https://access.redhat.com/errata/RHSA-2026:5691 | external |
| https://access.redhat.com/errata/RHSA-2026:5727 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:5813 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://errata.build.resf.org/RLSA-2026:3964 | external |
| https://errata.build.resf.org/RLSA-2026:3963 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://errata.build.resf.org/RLSA-2026:4759 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:6164 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:6193 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://oss.oracle.com/pipermail/el-errata/2026-M… | external |
| https://www.ibm.com/support/pages/node/7268179 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8141-1 | external |
| https://access.redhat.com/errata/RHSA-2026:6692 | external |
| https://access.redhat.com/errata/RHSA-2026:7003 | external |
| https://ubuntu.com/security/notices/USN-8163-1 | external |
| https://ubuntu.com/security/notices/USN-8162-1 | external |
| https://ubuntu.com/security/notices/USN-8163-2 | external |
| https://ubuntu.com/security/notices/USN-8177-1 | external |
| https://ubuntu.com/security/notices/USN-8179-1 | external |
| https://ubuntu.com/security/notices/USN-8180-1 | external |
| https://linux.oracle.com/errata/ELSA-2026-50234.html | external |
| https://ubuntu.com/security/notices/USN-8183-1 | external |
| https://ubuntu.com/security/notices/USN-8184-1 | external |
| https://ubuntu.com/security/notices/USN-8177-2 | external |
| https://ubuntu.com/security/notices/USN-8179-2 | external |
| https://ubuntu.com/security/notices/USN-8185-1 | external |
| https://ubuntu.com/security/notices/USN-8180-2 | external |
| https://ubuntu.com/security/notices/USN-8186-1 | external |
| https://ubuntu.com/security/notices/USN-8187-1 | external |
| https://ubuntu.com/security/notices/USN-8188-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:9512 | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://access.redhat.com/errata/RHSA-2026:9644 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:10108 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8180-3 | external |
| https://ubuntu.com/security/notices/USN-8180-4 | external |
| https://ubuntu.com/security/notices/USN-8180-5 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8185-2 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://linux.oracle.com/errata/ELSA-2026-50255.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8179-4 | external |
| https://ubuntu.com/security/notices/USN-8179-3 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8243-1 | external |
| https://ubuntu.com/security/notices/USN-8245-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8260-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8257-1 | external |
| https://ubuntu.com/security/notices/USN-8258-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8265-1 | external |
| https://ubuntu.com/security/notices/USN-8180-6 | external |
| https://linux.oracle.com/errata/ELSA-2026-50262.html | external |
| https://linux.oracle.com/errata/ELSA-2026-50261.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8275-1 | external |
| https://ubuntu.com/security/notices/USN-8278-1 | external |
| https://ubuntu.com/security/notices/USN-8277-1 | external |
| https://ubuntu.com/security/notices/USN-8289-1 | external |
| https://oss.oracle.com/pipermail/el-errata/2026-M… | external |
| https://ubuntu.com/security/notices/USN-8310-1 | external |
| https://ubuntu.com/security/notices/USN-8278-2 | external |
| https://linux.oracle.com/errata/ELSA-2026-50275.html | external |
| https://access.redhat.com/errata/RHSA-2026:21556 | external |
| https://errata.build.resf.org/RLSA-2026:21556 | external |
| https://ubuntu.com/security/notices/USN-8374-1 | external |
| http://linux.oracle.com/errata/ELSA-2026-50294.html | external |
| http://linux.oracle.com/errata/ELSA-2026-50299.html | external |
| https://access.redhat.com/errata/RHSA-2026:23237 | external |
| https://access.redhat.com/errata/RHSA-2026:25218 | external |
| https://www.ibm.com/support/pages/node/7275957 | external |
| https://access.redhat.com/errata/RHSA-2026:25533 | external |
| https://access.redhat.com/errata/RHSA-2026:26515 | external |
| https://access.redhat.com/errata/RHSA-2026:26462 | external |
| https://access.redhat.com/errata/RHSA-2026:26535 | external |
| https://access.redhat.com/errata/RHSA-2026:26570 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:26563 | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://linux.oracle.com/errata/ELSA-2026-19225.html | external |
| http://linux.oracle.com/errata/ELSA-2026-27789.html | external |
| https://linux.oracle.com/errata/ELSA-2026-24381.html | external |
| https://linux.oracle.com/errata/ELSA-2026-25217.html | external |
| https://linux.oracle.com/errata/ELSA-2026-19568.html | external |
| https://linux.oracle.com/errata/ELSA-2026-21556.html | external |
| https://linux.oracle.com/errata/ELSA-2026-18587.html | external |
| https://ubuntu.com/security/notices/USN-8493-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8499-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://ubuntu.com/security/notices/USN-8508-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:36956 | external |
| https://ubuntu.com/security/notices/USN-8527-1 | external |
| https://ubuntu.com/security/notices/USN-8528-1 | external |
| https://errata.build.resf.org/RLSA-2026:36956 | external |
| https://errata.build.resf.org/RLSA-2026:36957 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2026-36957.html | external |
| https://access.redhat.com/errata/RHSA-2026:39083 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:39082 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://cert-portal.siemens.com/productcert/html/… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8547-1 | external |
| https://linux.oracle.com/errata/ELSA-2026-39494.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| http://linux.oracle.com/errata/ELSA-2026-25191.html | external |
| https://linux.oracle.com/errata/ELSA-2026-18134.html | external |
| https://www.ibm.com/support/pages/node/7280626 | external |
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Der Kernel stellt den Kern des Linux Betriebssystems dar.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein Angreifer kann mehrere Schwachstellen im Linux Kernel ausnutzen um nicht n\u00e4her spezifizierte Angriffe durchzuf\u00fchren, die m\u00f6glicherweise zu einer Denial-of-Service- Bedingung f\u00fchren oder eine Speicherbesch\u00e4digung verursachen k\u00f6nnen.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2026-0086 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-0086.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-0086 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-0086"
},
{
"category": "external",
"summary": "Kernel CVE Announce Mailingliste",
"url": "https://lore.kernel.org/linux-cve-announce/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68767",
"url": "https://lore.kernel.org/linux-cve-announce/2026011353-CVE-2025-68767-cd16@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68768",
"url": "https://lore.kernel.org/linux-cve-announce/2026011356-CVE-2025-68768-d458@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68769",
"url": "https://lore.kernel.org/linux-cve-announce/2026011357-CVE-2025-68769-e471@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68770",
"url": "https://lore.kernel.org/linux-cve-announce/2026011357-CVE-2025-68770-6464@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68771",
"url": "https://lore.kernel.org/linux-cve-announce/2026011357-CVE-2025-68771-cf0d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68772",
"url": "https://lore.kernel.org/linux-cve-announce/2026011358-CVE-2025-68772-9d70@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68773",
"url": "https://lore.kernel.org/linux-cve-announce/2026011358-CVE-2025-68773-bd5d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68774",
"url": "https://lore.kernel.org/linux-cve-announce/2026011358-CVE-2025-68774-f2fd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68775",
"url": "https://lore.kernel.org/linux-cve-announce/2026011359-CVE-2025-68775-6e68@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68776",
"url": "https://lore.kernel.org/linux-cve-announce/2026011359-CVE-2025-68776-5aed@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68777",
"url": "https://lore.kernel.org/linux-cve-announce/2026011359-CVE-2025-68777-2073@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68778",
"url": "https://lore.kernel.org/linux-cve-announce/2026011300-CVE-2025-68778-c392@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68779",
"url": "https://lore.kernel.org/linux-cve-announce/2026011300-CVE-2025-68779-726e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68780",
"url": "https://lore.kernel.org/linux-cve-announce/2026011300-CVE-2025-68780-f5c8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68781",
"url": "https://lore.kernel.org/linux-cve-announce/2026011301-CVE-2025-68781-f30f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68782",
"url": "https://lore.kernel.org/linux-cve-announce/2026011301-CVE-2025-68782-a72f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68783",
"url": "https://lore.kernel.org/linux-cve-announce/2026011302-CVE-2025-68783-e807@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68784",
"url": "https://lore.kernel.org/linux-cve-announce/2026011302-CVE-2025-68784-b1e0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68785",
"url": "https://lore.kernel.org/linux-cve-announce/2026011302-CVE-2025-68785-c96c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68786",
"url": "https://lore.kernel.org/linux-cve-announce/2026011303-CVE-2025-68786-d145@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68787",
"url": "https://lore.kernel.org/linux-cve-announce/2026011303-CVE-2025-68787-af6d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68788",
"url": "https://lore.kernel.org/linux-cve-announce/2026011303-CVE-2025-68788-05bd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68789",
"url": "https://lore.kernel.org/linux-cve-announce/2026011304-CVE-2025-68789-cca8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68790",
"url": "https://lore.kernel.org/linux-cve-announce/2026011304-CVE-2025-68790-6166@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68791",
"url": "https://lore.kernel.org/linux-cve-announce/2026011304-CVE-2025-68791-e739@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68792",
"url": "https://lore.kernel.org/linux-cve-announce/2026011305-CVE-2025-68792-9a3f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68793",
"url": "https://lore.kernel.org/linux-cve-announce/2026011305-CVE-2025-68793-bb5f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68794",
"url": "https://lore.kernel.org/linux-cve-announce/2026011305-CVE-2025-68794-32db@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68795",
"url": "https://lore.kernel.org/linux-cve-announce/2026011306-CVE-2025-68795-4e3e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68796",
"url": "https://lore.kernel.org/linux-cve-announce/2026011306-CVE-2025-68796-9eee@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68797",
"url": "https://lore.kernel.org/linux-cve-announce/2026011306-CVE-2025-68797-b45e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68798",
"url": "https://lore.kernel.org/linux-cve-announce/2026011307-CVE-2025-68798-ea9c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68799",
"url": "https://lore.kernel.org/linux-cve-announce/2026011307-CVE-2025-68799-b0dd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68800",
"url": "https://lore.kernel.org/linux-cve-announce/2026011307-CVE-2025-68800-39d2@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68801",
"url": "https://lore.kernel.org/linux-cve-announce/2026011308-CVE-2025-68801-d3d5@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68802",
"url": "https://lore.kernel.org/linux-cve-announce/2026011308-CVE-2025-68802-a7f9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68803",
"url": "https://lore.kernel.org/linux-cve-announce/2026011309-CVE-2025-68803-d897@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68804",
"url": "https://lore.kernel.org/linux-cve-announce/2026011309-CVE-2025-68804-f10e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68805",
"url": "https://lore.kernel.org/linux-cve-announce/2026011309-CVE-2025-68805-3284@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68806",
"url": "https://lore.kernel.org/linux-cve-announce/2026011310-CVE-2025-68806-a2fb@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68807",
"url": "https://lore.kernel.org/linux-cve-announce/2026011310-CVE-2025-68807-0fd6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68808",
"url": "https://lore.kernel.org/linux-cve-announce/2026011310-CVE-2025-68808-4cb9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68809",
"url": "https://lore.kernel.org/linux-cve-announce/2026011311-CVE-2025-68809-e875@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68810",
"url": "https://lore.kernel.org/linux-cve-announce/2026011311-CVE-2025-68810-308a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68811",
"url": "https://lore.kernel.org/linux-cve-announce/2026011311-CVE-2025-68811-7e46@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68812",
"url": "https://lore.kernel.org/linux-cve-announce/2026011312-CVE-2025-68812-4098@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68813",
"url": "https://lore.kernel.org/linux-cve-announce/2026011312-CVE-2025-68813-13a5@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68814",
"url": "https://lore.kernel.org/linux-cve-announce/2026011312-CVE-2025-68814-146a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68815",
"url": "https://lore.kernel.org/linux-cve-announce/2026011313-CVE-2025-68815-2112@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68816",
"url": "https://lore.kernel.org/linux-cve-announce/2026011313-CVE-2025-68816-e773@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68817",
"url": "https://lore.kernel.org/linux-cve-announce/2026011313-CVE-2025-68817-03ab@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68818",
"url": "https://lore.kernel.org/linux-cve-announce/2026011314-CVE-2025-68818-08ea@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68819",
"url": "https://lore.kernel.org/linux-cve-announce/2026011314-CVE-2025-68819-64a3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68820",
"url": "https://lore.kernel.org/linux-cve-announce/2026011315-CVE-2025-68820-7a4f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68821",
"url": "https://lore.kernel.org/linux-cve-announce/2026011315-CVE-2025-68821-b515@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68822",
"url": "https://lore.kernel.org/linux-cve-announce/2026011315-CVE-2025-68822-a75d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-68823",
"url": "https://lore.kernel.org/linux-cve-announce/2026011316-CVE-2025-68823-8bf1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71064",
"url": "https://lore.kernel.org/linux-cve-announce/2026011322-CVE-2025-71064-94ea@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71065",
"url": "https://lore.kernel.org/linux-cve-announce/2026011322-CVE-2025-71065-6818@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71066",
"url": "https://lore.kernel.org/linux-cve-announce/2026011323-CVE-2025-71066-f1fa@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71067",
"url": "https://lore.kernel.org/linux-cve-announce/2026011323-CVE-2025-71067-9c81@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71068",
"url": "https://lore.kernel.org/linux-cve-announce/2026011323-CVE-2025-71068-f1a9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71069",
"url": "https://lore.kernel.org/linux-cve-announce/2026011324-CVE-2025-71069-33d4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71070",
"url": "https://lore.kernel.org/linux-cve-announce/2026011324-CVE-2025-71070-b6c2@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71071",
"url": "https://lore.kernel.org/linux-cve-announce/2026011325-CVE-2025-71071-67e9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71072",
"url": "https://lore.kernel.org/linux-cve-announce/2026011325-CVE-2025-71072-b52b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71073",
"url": "https://lore.kernel.org/linux-cve-announce/2026011325-CVE-2025-71073-b002@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71074",
"url": "https://lore.kernel.org/linux-cve-announce/2026011326-CVE-2025-71074-f3ed@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71075",
"url": "https://lore.kernel.org/linux-cve-announce/2026011326-CVE-2025-71075-c85d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71076",
"url": "https://lore.kernel.org/linux-cve-announce/2026011326-CVE-2025-71076-19ff@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71077",
"url": "https://lore.kernel.org/linux-cve-announce/2026011327-CVE-2025-71077-6e08@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71078",
"url": "https://lore.kernel.org/linux-cve-announce/2026011337-CVE-2025-71078-9a51@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71079",
"url": "https://lore.kernel.org/linux-cve-announce/2026011338-CVE-2025-71079-9f24@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71080",
"url": "https://lore.kernel.org/linux-cve-announce/2026011338-CVE-2025-71080-f9ae@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71081",
"url": "https://lore.kernel.org/linux-cve-announce/2026011338-CVE-2025-71081-df43@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71082",
"url": "https://lore.kernel.org/linux-cve-announce/2026011339-CVE-2025-71082-ef8a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71083",
"url": "https://lore.kernel.org/linux-cve-announce/2026011339-CVE-2025-71083-ddb3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71084",
"url": "https://lore.kernel.org/linux-cve-announce/2026011339-CVE-2025-71084-52a2@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71085",
"url": "https://lore.kernel.org/linux-cve-announce/2026011340-CVE-2025-71085-e6c1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71086",
"url": "https://lore.kernel.org/linux-cve-announce/2026011340-CVE-2025-71086-18be@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71087",
"url": "https://lore.kernel.org/linux-cve-announce/2026011340-CVE-2025-71087-53c4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71088",
"url": "https://lore.kernel.org/linux-cve-announce/2026011341-CVE-2025-71088-9436@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71089",
"url": "https://lore.kernel.org/linux-cve-announce/2026011341-CVE-2025-71089-a642@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71090",
"url": "https://lore.kernel.org/linux-cve-announce/2026011341-CVE-2025-71090-6e3a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71091",
"url": "https://lore.kernel.org/linux-cve-announce/2026011342-CVE-2025-71091-860d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71092",
"url": "https://lore.kernel.org/linux-cve-announce/2026011342-CVE-2025-71092-9f73@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71093",
"url": "https://lore.kernel.org/linux-cve-announce/2026011343-CVE-2025-71093-387f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71094",
"url": "https://lore.kernel.org/linux-cve-announce/2026011343-CVE-2025-71094-087b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71095",
"url": "https://lore.kernel.org/linux-cve-announce/2026011343-CVE-2025-71095-6fad@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71096",
"url": "https://lore.kernel.org/linux-cve-announce/2026011344-CVE-2025-71096-fb73@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71097",
"url": "https://lore.kernel.org/linux-cve-announce/2026011344-CVE-2025-71097-7cfc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71098",
"url": "https://lore.kernel.org/linux-cve-announce/2026011344-CVE-2025-71098-ef6d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71099",
"url": "https://lore.kernel.org/linux-cve-announce/2026011345-CVE-2025-71099-b6f8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71100",
"url": "https://lore.kernel.org/linux-cve-announce/2026011345-CVE-2025-71100-537f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-71101",
"url": "https://lore.kernel.org/linux-cve-announce/2026011345-CVE-2025-71101-1886@gregkh/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0350-1 vom 2026-01-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-January/024000.html"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2026:20145-1 vom 2026-02-03",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/FIKVKDA42VXBWDNHA6WP345IDVA2E3XU/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0369-1 vom 2026-02-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024037.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20207-1 vom 2026-02-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024052.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20220-1 vom 2026-02-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024067.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20228-1 vom 2026-02-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024063.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:2282 vom 2026-02-09",
"url": "https://access.redhat.com/errata/RHSA-2026:2282"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6127 vom 2026-02-10",
"url": "https://lists.debian.org/debian-security-announce/2026/msg00036.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6126 vom 2026-02-09",
"url": "https://lists.debian.org/debian-security-announce/2026/msg00035.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0411-1 vom 2026-02-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024085.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-2282 vom 2026-02-10",
"url": "https://linux.oracle.com/errata/ELSA-2026-2282.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4476 vom 2026-02-11",
"url": "https://lists.debian.org/debian-lts-announce/2026/02/msg00017.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0447-1 vom 2026-02-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024124.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4475 vom 2026-02-11",
"url": "https://lists.debian.org/debian-lts-announce/2026/02/msg00016.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0473-1 vom 2026-02-12",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024136.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0471-1 vom 2026-02-12",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024142.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0472-1 vom 2026-02-12",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024141.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0474-1 vom 2026-02-12",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024140.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0475-1 vom 2026-02-12",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024139.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0495-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024159.html"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:2282 vom 2026-02-15",
"url": "https://errata.build.resf.org/RLSA-2026:2282"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0496-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024158.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:2722 vom 2026-02-16",
"url": "https://access.redhat.com/errata/RHSA-2026:2722"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-2722 vom 2026-02-17",
"url": "https://linux.oracle.com/errata/ELSA-2026-2722.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50113 vom 2026-02-17",
"url": "https://linux.oracle.com/errata/ELSA-2026-50113.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2KERNEL-5.10-2026-113 vom 2026-02-19",
"url": "https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.10-2026-113.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0587-1 vom 2026-02-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024356.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50112 vom 2026-02-23",
"url": "https://linux.oracle.com/errata/ELSA-2026-50112.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:3110 vom 2026-02-23",
"url": "https://access.redhat.com/errata/RHSA-2026:3110"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:3083 vom 2026-02-23",
"url": "https://access.redhat.com/errata/RHSA-2026:3083"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:2722 vom 2026-02-24",
"url": "https://errata.build.resf.org/RLSA-2026:2722"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0617-1 vom 2026-02-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024378.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:3275 vom 2026-02-25",
"url": "https://access.redhat.com/errata/RHSA-2026:3275"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-3083 vom 2026-02-25",
"url": "https://linux.oracle.com/errata/ELSA-2026-3083.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-3275 vom 2026-02-26",
"url": "https://linux.oracle.com/errata/ELSA-2026-3275.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20477-1 vom 2026-02-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024409.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20479-1 vom 2026-02-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024407.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:3488 vom 2026-03-02",
"url": "https://access.redhat.com/errata/RHSA-2026:3488"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2026:20287-1 vom 2026-02-28",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/K7KIWX7XP3UMVFSHT47OOZ24TQQYNNHI/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20520-1 vom 2026-02-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024455.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20498-1 vom 2026-02-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024476.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50133 vom 2026-03-02",
"url": "https://linux.oracle.com/errata/ELSA-2026-50133.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-3488 vom 2026-03-02",
"url": "https://linux.oracle.com/errata/ELSA-2026-3488.html"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:3488 vom 2026-03-05",
"url": "https://errata.build.resf.org/RLSA-2026:3488"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20615-1 vom 2026-03-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024605.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20570-1 vom 2026-03-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024574.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2KERNEL-5.15-2026-098 vom 2026-03-06",
"url": "https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.15-2026-098.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20564-1 vom 2026-03-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024575.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20555-1 vom 2026-03-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024590.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20599-1 vom 2026-03-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024614.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:3963 vom 2026-03-09",
"url": "https://access.redhat.com/errata/RHSA-2026:3963"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:3964 vom 2026-03-09",
"url": "https://access.redhat.com/errata/RHSA-2026:3964"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:4012 vom 2026-03-09",
"url": "https://access.redhat.com/errata/RHSA-2026:4012"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-3963 vom 2026-03-09",
"url": "https://linux.oracle.com/errata/ELSA-2026-3963.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:4246 vom 2026-03-11",
"url": "https://access.redhat.com/errata/RHSA-2026:4246"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-4012 vom 2026-03-10",
"url": "https://linux.oracle.com/errata/ELSA-2026-4012.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-3966 vom 2026-03-10",
"url": "https://linux.oracle.com/errata/ELSA-2026-3966.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50145 vom 2026-03-12",
"url": "https://linux.oracle.com/errata/ELSA-2026-50145.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50144 vom 2026-03-11",
"url": "https://linux.oracle.com/errata/ELSA-2026-50144.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6163 vom 2026-03-13",
"url": "https://lists.debian.org/debian-security-announce/2026/msg00071.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4499 vom 2026-03-13",
"url": "https://lists.debian.org/debian-lts-announce/2026/03/msg00003.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8096-1 vom 2026-03-17",
"url": "https://ubuntu.com/security/notices/USN-8096-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8096-2 vom 2026-03-17",
"url": "https://ubuntu.com/security/notices/USN-8096-2"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:4759 vom 2026-03-17",
"url": "https://access.redhat.com/errata/RHSA-2026:4759"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:4745 vom 2026-03-17",
"url": "https://access.redhat.com/errata/RHSA-2026:4745"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8096-4 vom 2026-03-17",
"url": "https://ubuntu.com/security/notices/USN-8096-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8096-3 vom 2026-03-17",
"url": "https://ubuntu.com/security/notices/USN-8096-3"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-4759 vom 2026-03-18",
"url": "https://linux.oracle.com/errata/ELSA-2026-4759.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20711-1 vom 2026-03-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024715.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20667-1 vom 2026-03-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024746.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0928-1 vom 2026-03-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024762.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20720-1 vom 2026-03-19",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024766.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2KERNEL-5.15-2026-099 vom 2026-03-19",
"url": "https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.15-2026-099.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20713-1 vom 2026-03-19",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024771.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0943-1 vom 2026-03-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024780.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0953-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024785.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0941-1 vom 2026-03-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024781.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0939-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024788.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0945-1 vom 2026-03-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024778.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0946-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024787.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0951-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024786.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0944-1 vom 2026-03-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024779.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0940-1 vom 2026-03-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024782.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0958-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024804.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8116-1 vom 2026-03-23",
"url": "https://ubuntu.com/security/notices/USN-8116-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0961-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024805.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0970-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024807.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0954-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024792.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8096-5 vom 2026-03-23",
"url": "https://ubuntu.com/security/notices/USN-8096-5"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0967-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024808.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0964-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024809.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0983-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024814.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0962-1 vom 2026-03-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024803.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20772-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024862.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20773-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024861.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20774-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024860.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20775-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024859.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0984-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024841.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:5732 vom 2026-03-25",
"url": "https://access.redhat.com/errata/RHSA-2026:5732"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0985-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024837.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:5689 vom 2026-03-25",
"url": "https://access.redhat.com/errata/RHSA-2026:5689"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:5690 vom 2026-03-25",
"url": "https://access.redhat.com/errata/RHSA-2026:5690"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:5693 vom 2026-03-25",
"url": "https://access.redhat.com/errata/RHSA-2026:5693"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:5691 vom 2026-03-25",
"url": "https://access.redhat.com/errata/RHSA-2026:5691"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:5727 vom 2026-03-25",
"url": "https://access.redhat.com/errata/RHSA-2026:5727"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20792-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024842.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20791-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024843.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20790-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024844.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20789-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024845.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20788-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024846.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20780-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024854.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20781-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024853.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20782-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024852.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20783-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024851.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20784-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024850.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20785-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024849.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20786-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024848.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20787-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024847.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0997-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024896.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20794-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024895.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20807-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024882.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20806-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024883.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20805-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024884.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20804-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024885.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20803-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024886.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20802-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024887.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20801-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024888.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20800-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024889.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20799-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024890.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20798-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024891.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20819-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024871.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20817-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024872.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20815-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024874.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0992-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024869.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20814-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024875.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20816-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024873.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20813-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024876.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20812-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024877.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20811-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024878.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20810-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024879.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20809-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024880.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20808-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024881.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20779-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024855.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20778-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024856.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20777-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024857.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20776-1 vom 2026-03-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024858.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1039-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024926.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1041-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024928.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:5813 vom 2026-03-25",
"url": "https://access.redhat.com/errata/RHSA-2026:5813"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1000-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024902.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1003-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024925.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1002-1 vom 2026-03-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024904.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1046-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024929.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1044-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024931.html"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:3964 vom 2026-03-26",
"url": "https://errata.build.resf.org/RLSA-2026:3964"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:3963 vom 2026-03-26",
"url": "https://errata.build.resf.org/RLSA-2026:3963"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1049-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024933.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1073-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024955.html"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:4759 vom 2026-03-26",
"url": "https://errata.build.resf.org/RLSA-2026:4759"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1077-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024956.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1083-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024952.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1059-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024940.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1078-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024954.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1081-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024953.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1048-1 vom 2026-03-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024934.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1089-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024960.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1088-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024961.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20872-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024969.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20838-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024999.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1131-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025031.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20864-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024976.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20865-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024975.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20866-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024974.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1136-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025028.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20873-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024968.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20847-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024993.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20845-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024994.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1099-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025013.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20828-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025009.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1102-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025010.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1101-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025011.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1100-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025012.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1096-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025014.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1125-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025019.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20837-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025000.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20852-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024988.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20836-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025001.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20853-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024987.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20832-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025005.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20854-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024986.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20831-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025006.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20855-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024985.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20856-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024984.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20857-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024983.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20858-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024982.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20859-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024981.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20860-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024980.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20861-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024979.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20840-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024997.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20848-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024992.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20841-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024996.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20849-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024991.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20842-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024995.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20850-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024990.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1132-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025029.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20851-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024989.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20862-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024978.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20863-1 vom 2026-03-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/024977.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20830-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025007.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20829-1 vom 2026-03-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025008.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20876-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025054.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20891-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025041.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20892-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025040.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20893-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025039.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20894-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025038.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20895-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025037.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20896-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025036.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20897-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025035.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:6164 vom 2026-03-30",
"url": "https://access.redhat.com/errata/RHSA-2026:6164"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20898-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025034.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20899-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025033.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20900-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025032.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:6193 vom 2026-03-30",
"url": "https://access.redhat.com/errata/RHSA-2026:6193"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20880-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025051.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20881-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025050.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20882-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025049.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20883-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025048.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20884-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025047.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20885-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025046.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20886-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025045.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20887-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025044.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20888-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025043.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20889-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025042.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50171 vom 2026-03-31",
"url": "https://oss.oracle.com/pipermail/el-errata/2026-March/020110.html"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7268179 vom 2026-03-31",
"url": "https://www.ibm.com/support/pages/node/7268179"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20945-1 vom 2026-04-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025075.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20946-1 vom 2026-04-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025074.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20944-1 vom 2026-04-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025076.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20943-1 vom 2026-04-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025077.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20947-1 vom 2026-04-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025073.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20931-1 vom 2026-04-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025086.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8141-1 vom 2026-04-01",
"url": "https://ubuntu.com/security/notices/USN-8141-1"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:6692 vom 2026-04-06",
"url": "https://access.redhat.com/errata/RHSA-2026:6692"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:7003 vom 2026-04-08",
"url": "https://access.redhat.com/errata/RHSA-2026:7003"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8163-1 vom 2026-04-10",
"url": "https://ubuntu.com/security/notices/USN-8163-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8162-1 vom 2026-04-10",
"url": "https://ubuntu.com/security/notices/USN-8162-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8163-2 vom 2026-04-14",
"url": "https://ubuntu.com/security/notices/USN-8163-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8177-1 vom 2026-04-16",
"url": "https://ubuntu.com/security/notices/USN-8177-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8179-1 vom 2026-04-16",
"url": "https://ubuntu.com/security/notices/USN-8179-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8180-1 vom 2026-04-16",
"url": "https://ubuntu.com/security/notices/USN-8180-1"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50234 vom 2026-04-17",
"url": "https://linux.oracle.com/errata/ELSA-2026-50234.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8183-1 vom 2026-04-17",
"url": "https://ubuntu.com/security/notices/USN-8183-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8184-1 vom 2026-04-17",
"url": "https://ubuntu.com/security/notices/USN-8184-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8177-2 vom 2026-04-17",
"url": "https://ubuntu.com/security/notices/USN-8177-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8179-2 vom 2026-04-17",
"url": "https://ubuntu.com/security/notices/USN-8179-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8185-1 vom 2026-04-17",
"url": "https://ubuntu.com/security/notices/USN-8185-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8180-2 vom 2026-04-17",
"url": "https://ubuntu.com/security/notices/USN-8180-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8186-1 vom 2026-04-17",
"url": "https://ubuntu.com/security/notices/USN-8186-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8187-1 vom 2026-04-17",
"url": "https://ubuntu.com/security/notices/USN-8187-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8188-1 vom 2026-04-17",
"url": "https://ubuntu.com/security/notices/USN-8188-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21129-1 vom 2026-04-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025416.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21114-1 vom 2026-04-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025429.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21123-1 vom 2026-04-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025421.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21131-1 vom 2026-04-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025414.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:9512 vom 2026-04-22",
"url": "https://access.redhat.com/errata/RHSA-2026:9512"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2026:20572-1 vom 2026-04-21",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/STWYWECAV6YINBQYRNTOUWNIHBOUY3YT/"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:9644 vom 2026-04-22",
"url": "https://access.redhat.com/errata/RHSA-2026:9644"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21237-1 vom 2026-04-22",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025557.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21230-1 vom 2026-04-22",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025560.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1557-1 vom 2026-04-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025570.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1573-1 vom 2026-04-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025596.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1563-1 vom 2026-04-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025575.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:10108 vom 2026-04-24",
"url": "https://access.redhat.com/errata/RHSA-2026:10108"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21255-1 vom 2026-04-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025583.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1574-1 vom 2026-04-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025600.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21241-1 vom 2026-04-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025595.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8180-3 vom 2026-04-24",
"url": "https://ubuntu.com/security/notices/USN-8180-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8180-4 vom 2026-04-24",
"url": "https://ubuntu.com/security/notices/USN-8180-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8180-5 vom 2026-04-24",
"url": "https://ubuntu.com/security/notices/USN-8180-5"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1606-1 vom 2026-04-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025614.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21284-1 vom 2026-04-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025706.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8185-2 vom 2026-04-28",
"url": "https://ubuntu.com/security/notices/USN-8185-2"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21361-1 vom 2026-04-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025743.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21352-1 vom 2026-04-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025751.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1661-1 vom 2026-04-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025787.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6243 vom 2026-05-04",
"url": "https://lists.debian.org/debian-security-announce/2026/msg00154.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4561 vom 2026-05-02",
"url": "https://lists.debian.org/debian-lts-announce/2026/05/msg00005.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50255 vom 2026-05-02",
"url": "https://linux.oracle.com/errata/ELSA-2026-50255.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1684-1 vom 2026-05-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025843.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1686-1 vom 2026-05-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025842.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1691-1 vom 2026-05-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025839.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8179-4 vom 2026-05-07",
"url": "https://ubuntu.com/security/notices/USN-8179-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8179-3 vom 2026-05-07",
"url": "https://ubuntu.com/security/notices/USN-8179-3"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21487-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025862.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21480-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025869.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21485-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025864.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21484-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025865.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1710-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025851.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21483-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025866.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1698-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025845.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21481-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025868.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21479-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025870.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21477-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025872.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21476-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025873.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1694-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025846.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21475-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025874.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21474-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025875.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21473-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025876.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21472-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025877.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21471-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025878.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21470-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025879.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21491-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025858.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21469-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025880.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21468-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025881.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21482-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025867.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1708-1 vom 2026-05-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025852.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8243-1 vom 2026-05-07",
"url": "https://ubuntu.com/security/notices/USN-8243-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8245-1 vom 2026-05-07",
"url": "https://ubuntu.com/security/notices/USN-8245-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21515-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025895.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21514-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025896.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21513-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025897.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21512-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025898.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21511-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025899.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21510-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025900.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21509-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025901.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21508-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025902.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21507-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025903.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21506-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025904.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21505-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025905.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21504-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025906.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21503-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025907.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21501-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025909.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21499-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025911.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21498-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025912.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21497-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025913.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21496-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025914.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21495-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025915.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1725-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025918.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8260-1 vom 2026-05-07",
"url": "https://ubuntu.com/security/notices/USN-8260-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1733-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025919.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1728-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025921.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1735-1 vom 2026-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025922.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8257-1 vom 2026-05-07",
"url": "https://ubuntu.com/security/notices/USN-8257-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8258-1 vom 2026-05-07",
"url": "https://ubuntu.com/security/notices/USN-8258-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1770-1 vom 2026-05-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025938.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1776-1 vom 2026-05-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025948.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1771-1 vom 2026-05-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025937.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21555-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025966.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1801-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025981.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1787-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025995.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21532-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025988.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21529-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025991.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21533-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025986.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1793-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025982.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21554-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025967.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21562-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025961.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21522-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025993.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21563-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025960.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1804-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025951.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:1798-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/025979.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21523-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026006.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21531-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026007.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21526-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026003.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21527-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026002.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21528-1 vom 2026-05-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026001.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8265-1 vom 2026-05-11",
"url": "https://ubuntu.com/security/notices/USN-8265-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8180-6 vom 2026-05-11",
"url": "https://ubuntu.com/security/notices/USN-8180-6"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50262 vom 2026-05-12",
"url": "https://linux.oracle.com/errata/ELSA-2026-50262.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50261 vom 2026-05-12",
"url": "https://linux.oracle.com/errata/ELSA-2026-50261.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21598-1 vom 2026-05-15",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026037.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21591-1 vom 2026-05-15",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026041.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8275-1 vom 2026-05-19",
"url": "https://ubuntu.com/security/notices/USN-8275-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8278-1 vom 2026-05-20",
"url": "https://ubuntu.com/security/notices/USN-8278-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8277-1 vom 2026-05-20",
"url": "https://ubuntu.com/security/notices/USN-8277-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8289-1 vom 2026-05-21",
"url": "https://ubuntu.com/security/notices/USN-8289-1"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50280 vom 2026-05-22",
"url": "https://oss.oracle.com/pipermail/el-errata/2026-May/020528.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8310-1 vom 2026-05-26",
"url": "https://ubuntu.com/security/notices/USN-8310-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8278-2 vom 2026-05-26",
"url": "https://ubuntu.com/security/notices/USN-8278-2"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50275 vom 2026-05-28",
"url": "https://linux.oracle.com/errata/ELSA-2026-50275.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:21556 vom 2026-05-28",
"url": "https://access.redhat.com/errata/RHSA-2026:21556"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:21556 vom 2026-05-30",
"url": "https://errata.build.resf.org/RLSA-2026:21556"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8374-1 vom 2026-06-02",
"url": "https://ubuntu.com/security/notices/USN-8374-1"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50294 vom 2026-06-04",
"url": "http://linux.oracle.com/errata/ELSA-2026-50294.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50299 vom 2026-06-04",
"url": "http://linux.oracle.com/errata/ELSA-2026-50299.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:23237 vom 2026-06-04",
"url": "https://access.redhat.com/errata/RHSA-2026:23237"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:25218 vom 2026-06-11",
"url": "https://access.redhat.com/errata/RHSA-2026:25218"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7275957 vom 2026-06-11",
"url": "https://www.ibm.com/support/pages/node/7275957"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:25533 vom 2026-06-13",
"url": "https://access.redhat.com/errata/RHSA-2026:25533"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:26515 vom 2026-06-17",
"url": "https://access.redhat.com/errata/RHSA-2026:26515"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:26462 vom 2026-06-17",
"url": "https://access.redhat.com/errata/RHSA-2026:26462"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:26535 vom 2026-06-17",
"url": "https://access.redhat.com/errata/RHSA-2026:26535"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:26570 vom 2026-06-17",
"url": "https://access.redhat.com/errata/RHSA-2026:26570"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2450-1 vom 2026-06-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026829.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:26563 vom 2026-06-22",
"url": "https://access.redhat.com/errata/RHSA-2026:26563"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6355 vom 2026-06-22",
"url": "https://lists.debian.org/debian-security-announce/2026/msg00266.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-19225 vom 2026-06-23",
"url": "https://linux.oracle.com/errata/ELSA-2026-19225.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-27789 vom 2026-06-27",
"url": "http://linux.oracle.com/errata/ELSA-2026-27789.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-24381 vom 2026-06-30",
"url": "https://linux.oracle.com/errata/ELSA-2026-24381.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-25217 vom 2026-06-30",
"url": "https://linux.oracle.com/errata/ELSA-2026-25217.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-19568 vom 2026-07-01",
"url": "https://linux.oracle.com/errata/ELSA-2026-19568.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-21556 vom 2026-07-01",
"url": "https://linux.oracle.com/errata/ELSA-2026-21556.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-18587 vom 2026-07-01",
"url": "https://linux.oracle.com/errata/ELSA-2026-18587.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8493-1 vom 2026-07-01",
"url": "https://ubuntu.com/security/notices/USN-8493-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2722-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027161.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8499-1 vom 2026-07-02",
"url": "https://ubuntu.com/security/notices/USN-8499-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22436-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027171.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22433-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027172.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22394-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027210.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22393-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027211.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22460-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027249.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22440-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027266.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22458-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027251.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4671 vom 2026-07-05",
"url": "https://lists.debian.org/debian-lts-announce/2026/07/msg00012.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4665 vom 2026-07-03",
"url": "https://lists.debian.org/debian-lts-announce/2026/07/msg00006.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8508-1 vom 2026-07-06",
"url": "https://ubuntu.com/security/notices/USN-8508-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2799-1 vom 2026-07-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027328.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:36956 vom 2026-07-09",
"url": "https://access.redhat.com/errata/RHSA-2026:36956"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8527-1 vom 2026-07-10",
"url": "https://ubuntu.com/security/notices/USN-8527-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8528-1 vom 2026-07-10",
"url": "https://ubuntu.com/security/notices/USN-8528-1"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:36956 vom 2026-07-11",
"url": "https://errata.build.resf.org/RLSA-2026:36956"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:36957 vom 2026-07-13",
"url": "https://errata.build.resf.org/RLSA-2026:36957"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2864-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027381.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2857-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027384.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-36957 vom 2026-07-13",
"url": "https://linux.oracle.com/errata/ELSA-2026-36957.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:39083 vom 2026-07-14",
"url": "https://access.redhat.com/errata/RHSA-2026:39083"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2910-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027418.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2899-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027419.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2902-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027420.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2867-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027391.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2890-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027407.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:39082 vom 2026-07-14",
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2868-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027390.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2889-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027404.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2894-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027403.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2930-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027424.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2933-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027421.html"
},
{
"category": "external",
"summary": "Siemens Security Advisory SSA-019113 vom 2026-07-14",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-019113.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2920-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027423.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8547-1 vom 2026-07-15",
"url": "https://ubuntu.com/security/notices/USN-8547-1"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-39494 vom 2026-07-16",
"url": "https://linux.oracle.com/errata/ELSA-2026-39494.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22673-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027654.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22674-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027653.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22675-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027652.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22676-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027651.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22680-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027647.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22681-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027646.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22682-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027645.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22689-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027638.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22690-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027637.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22696-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027631.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-25191 vom 2026-07-20",
"url": "http://linux.oracle.com/errata/ELSA-2026-25191.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-18134 vom 2026-07-21",
"url": "https://linux.oracle.com/errata/ELSA-2026-18134.html"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7280626 vom 2026-07-21",
"url": "https://www.ibm.com/support/pages/node/7280626"
}
],
"source_lang": "en-US",
"title": "Linux Kernel: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-07-21T22:00:00.000+00:00",
"generator": {
"date": "2026-07-22T09:18:45.130+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.6.0"
}
},
"id": "WID-SEC-W-2026-0086",
"initial_release_date": "2026-01-13T23:00:00.000+00:00",
"revision_history": [
{
"date": "2026-01-13T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-02-01T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-03T23:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von openSUSE und SUSE aufgenommen"
},
{
"date": "2026-02-04T23:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-05T23:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-09T23:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von Red Hat und Debian aufgenommen"
},
{
"date": "2026-02-11T23:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von Debian und SUSE aufgenommen"
},
{
"date": "2026-02-12T23:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-15T23:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von SUSE und Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-02-16T23:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-02-17T23:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-02-18T23:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2026-02-22T23:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-23T23:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-02-24T23:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von Rocky Enterprise Software Foundation, SUSE und Red Hat aufgenommen"
},
{
"date": "2026-02-25T23:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-02-26T23:00:00.000+00:00",
"number": "17",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-03-01T23:00:00.000+00:00",
"number": "18",
"summary": "Neue Updates von Red Hat, openSUSE und SUSE aufgenommen"
},
{
"date": "2026-03-02T23:00:00.000+00:00",
"number": "19",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-03-04T23:00:00.000+00:00",
"number": "20",
"summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-03-05T23:00:00.000+00:00",
"number": "21",
"summary": "Neue Updates von SUSE und Amazon aufgenommen"
},
{
"date": "2026-03-08T23:00:00.000+00:00",
"number": "22",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-03-09T23:00:00.000+00:00",
"number": "23",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-03-10T23:00:00.000+00:00",
"number": "24",
"summary": "Neue Updates von Red Hat und Oracle Linux aufgenommen"
},
{
"date": "2026-03-11T23:00:00.000+00:00",
"number": "25",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-03-12T23:00:00.000+00:00",
"number": "26",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2026-03-15T23:00:00.000+00:00",
"number": "27",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2026-03-16T23:00:00.000+00:00",
"number": "28",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-03-17T23:00:00.000+00:00",
"number": "29",
"summary": "Neue Updates von Red Hat und Ubuntu aufgenommen"
},
{
"date": "2026-03-18T23:00:00.000+00:00",
"number": "30",
"summary": "Neue Updates von Oracle Linux und SUSE aufgenommen"
},
{
"date": "2026-03-19T23:00:00.000+00:00",
"number": "31",
"summary": "Neue Updates von SUSE und Amazon aufgenommen"
},
{
"date": "2026-03-22T23:00:00.000+00:00",
"number": "32",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-03-23T23:00:00.000+00:00",
"number": "33",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2026-03-24T23:00:00.000+00:00",
"number": "34",
"summary": "Neue Updates von SUSE und Red Hat aufgenommen"
},
{
"date": "2026-03-25T23:00:00.000+00:00",
"number": "35",
"summary": "Neue Updates von SUSE und Red Hat aufgenommen"
},
{
"date": "2026-03-26T23:00:00.000+00:00",
"number": "36",
"summary": "Neue Updates von SUSE und Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-03-29T22:00:00.000+00:00",
"number": "37",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-03-30T22:00:00.000+00:00",
"number": "38",
"summary": "Neue Updates von SUSE und Red Hat aufgenommen"
},
{
"date": "2026-03-31T22:00:00.000+00:00",
"number": "39",
"summary": "Neue Updates von Oracle Linux und IBM aufgenommen"
},
{
"date": "2026-04-01T22:00:00.000+00:00",
"number": "40",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2026-04-06T22:00:00.000+00:00",
"number": "41",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-04-07T22:00:00.000+00:00",
"number": "42",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-04-09T22:00:00.000+00:00",
"number": "43",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-04-13T22:00:00.000+00:00",
"number": "44",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-04-16T22:00:00.000+00:00",
"number": "45",
"summary": "Neue Updates von Ubuntu und Oracle Linux aufgenommen"
},
{
"date": "2026-04-19T22:00:00.000+00:00",
"number": "46",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-04-21T22:00:00.000+00:00",
"number": "47",
"summary": "Neue Updates von Red Hat und openSUSE aufgenommen"
},
{
"date": "2026-04-22T22:00:00.000+00:00",
"number": "48",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-04-23T22:00:00.000+00:00",
"number": "49",
"summary": "Neue Updates von SUSE und Red Hat aufgenommen"
},
{
"date": "2026-04-26T22:00:00.000+00:00",
"number": "50",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-04-28T22:00:00.000+00:00",
"number": "51",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2026-05-03T22:00:00.000+00:00",
"number": "52",
"summary": "Neue Updates von SUSE, Debian und Oracle Linux aufgenommen"
},
{
"date": "2026-05-05T22:00:00.000+00:00",
"number": "53",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-05-06T22:00:00.000+00:00",
"number": "54",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2026-05-07T22:00:00.000+00:00",
"number": "55",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2026-05-10T22:00:00.000+00:00",
"number": "56",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-05-11T22:00:00.000+00:00",
"number": "57",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-05-12T22:00:00.000+00:00",
"number": "58",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-05-14T22:00:00.000+00:00",
"number": "59",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-05-18T22:00:00.000+00:00",
"number": "60",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-05-19T22:00:00.000+00:00",
"number": "61",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-05-20T22:00:00.000+00:00",
"number": "62",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-05-21T22:00:00.000+00:00",
"number": "63",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-05-26T22:00:00.000+00:00",
"number": "64",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-05-27T22:00:00.000+00:00",
"number": "65",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-05-31T22:00:00.000+00:00",
"number": "66",
"summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-06-02T22:00:00.000+00:00",
"number": "67",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-06-04T22:00:00.000+00:00",
"number": "68",
"summary": "Neue Updates von Oracle Linux und Red Hat aufgenommen"
},
{
"date": "2026-06-10T22:00:00.000+00:00",
"number": "69",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-06-11T22:00:00.000+00:00",
"number": "70",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2026-06-14T22:00:00.000+00:00",
"number": "71",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-06-16T22:00:00.000+00:00",
"number": "72",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-06-17T22:00:00.000+00:00",
"number": "73",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-06-18T22:00:00.000+00:00",
"number": "74",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-06-21T22:00:00.000+00:00",
"number": "75",
"summary": "Neue Updates von Red Hat und Debian aufgenommen"
},
{
"date": "2026-06-22T22:00:00.000+00:00",
"number": "76",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-06-28T22:00:00.000+00:00",
"number": "77",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-06-29T22:00:00.000+00:00",
"number": "78",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-06-30T22:00:00.000+00:00",
"number": "79",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-07-01T22:00:00.000+00:00",
"number": "80",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2026-07-02T22:00:00.000+00:00",
"number": "81",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-07-05T22:00:00.000+00:00",
"number": "82",
"summary": "Neue Updates von SUSE und Debian aufgenommen"
},
{
"date": "2026-07-08T22:00:00.000+00:00",
"number": "83",
"summary": "Neue Updates von SUSE und Red Hat aufgenommen"
},
{
"date": "2026-07-09T22:00:00.000+00:00",
"number": "84",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-07-12T22:00:00.000+00:00",
"number": "85",
"summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-07-13T22:00:00.000+00:00",
"number": "86",
"summary": "Neue Updates von Red Hat und SUSE aufgenommen"
},
{
"date": "2026-07-14T22:00:00.000+00:00",
"number": "87",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-07-16T22:00:00.000+00:00",
"number": "88",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-07-20T22:00:00.000+00:00",
"number": "89",
"summary": "Neue Updates von SUSE und Oracle Linux aufgenommen"
},
{
"date": "2026-07-21T22:00:00.000+00:00",
"number": "90",
"summary": "Neue Updates von IBM aufgenommen"
}
],
"status": "final",
"version": "90"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Amazon Linux 2",
"product": {
"name": "Amazon Linux 2",
"product_id": "398363",
"product_identification_helper": {
"cpe": "cpe:/o:amazon:linux_2:-"
}
}
}
],
"category": "vendor",
"name": "Amazon"
},
{
"branches": [
{
"category": "product_name",
"name": "Debian Linux",
"product": {
"name": "Debian Linux",
"product_id": "2951",
"product_identification_helper": {
"cpe": "cpe:/o:debian:debian_linux:-"
}
}
}
],
"category": "vendor",
"name": "Debian"
},
{
"branches": [
{
"category": "product_name",
"name": "IBM DataPower Gateway",
"product": {
"name": "IBM DataPower Gateway",
"product_id": "393635",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:datapower_gateway:-"
}
}
},
{
"branches": [
{
"category": "product_version",
"name": "V10.3.1050.0-V10.3.1063.2",
"product": {
"name": "IBM Power Hardware Management Console V10.3.1050.0-V10.3.1063.2",
"product_id": "T055287",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:hardware_management_console:v10.3.1050.0_-_v10.3.1063.2"
}
}
},
{
"category": "product_version",
"name": "V11.1.1110.0-V11.1.1111.5",
"product": {
"name": "IBM Power Hardware Management Console V11.1.1110.0-V11.1.1111.5",
"product_id": "T055288",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:hardware_management_console:v11.1.1110.0_-_v11.1.1111.5"
}
}
}
],
"category": "product_name",
"name": "Power Hardware Management Console"
},
{
"category": "product_name",
"name": "IBM QRadar SIEM",
"product": {
"name": "IBM QRadar SIEM",
"product_id": "T021415",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:qradar_siem:-"
}
}
}
],
"category": "vendor",
"name": "IBM"
},
{
"branches": [
{
"category": "product_name",
"name": "Open Source Linux Kernel",
"product": {
"name": "Open Source Linux Kernel",
"product_id": "T049905",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:-"
}
}
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"category": "product_name",
"name": "Oracle Linux",
"product": {
"name": "Oracle Linux",
"product_id": "T004914",
"product_identification_helper": {
"cpe": "cpe:/o:oracle:linux:-"
}
}
}
],
"category": "vendor",
"name": "Oracle"
},
{
"branches": [
{
"category": "product_name",
"name": "RESF Rocky Linux",
"product": {
"name": "RESF Rocky Linux",
"product_id": "T032255",
"product_identification_helper": {
"cpe": "cpe:/o:resf:rocky_linux:-"
}
}
}
],
"category": "vendor",
"name": "RESF"
},
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
}
],
"category": "vendor",
"name": "Red Hat"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux",
"product": {
"name": "SUSE Linux",
"product_id": "T002207",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse_linux:-"
}
}
},
{
"category": "product_name",
"name": "SUSE openSUSE",
"product": {
"name": "SUSE openSUSE",
"product_id": "T027843",
"product_identification_helper": {
"cpe": "cpe:/o:suse:opensuse:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
},
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "1500 CPU",
"product": {
"name": "Siemens SIMATIC S7 1500 CPU",
"product_id": "T053842",
"product_identification_helper": {
"cpe": "cpe:/h:siemens:simatic_s7:1500_cpu"
}
}
}
],
"category": "product_name",
"name": "SIMATIC S7"
}
],
"category": "vendor",
"name": "Siemens"
},
{
"branches": [
{
"category": "product_name",
"name": "Ubuntu Linux",
"product": {
"name": "Ubuntu Linux",
"product_id": "T000126",
"product_identification_helper": {
"cpe": "cpe:/o:canonical:ubuntu_linux:-"
}
}
}
],
"category": "vendor",
"name": "Ubuntu"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-68767",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68767"
},
{
"cve": "CVE-2025-68768",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68768"
},
{
"cve": "CVE-2025-68769",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68769"
},
{
"cve": "CVE-2025-68770",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68770"
},
{
"cve": "CVE-2025-68771",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68771"
},
{
"cve": "CVE-2025-68772",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68772"
},
{
"cve": "CVE-2025-68773",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68773"
},
{
"cve": "CVE-2025-68774",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68774"
},
{
"cve": "CVE-2025-68775",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68775"
},
{
"cve": "CVE-2025-68776",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68776"
},
{
"cve": "CVE-2025-68777",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68777"
},
{
"cve": "CVE-2025-68778",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68778"
},
{
"cve": "CVE-2025-68779",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68779"
},
{
"cve": "CVE-2025-68780",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68780"
},
{
"cve": "CVE-2025-68781",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68781"
},
{
"cve": "CVE-2025-68782",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68782"
},
{
"cve": "CVE-2025-68783",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68783"
},
{
"cve": "CVE-2025-68784",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68784"
},
{
"cve": "CVE-2025-68785",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68785"
},
{
"cve": "CVE-2025-68786",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68786"
},
{
"cve": "CVE-2025-68787",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68787"
},
{
"cve": "CVE-2025-68788",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68788"
},
{
"cve": "CVE-2025-68789",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68789"
},
{
"cve": "CVE-2025-68790",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68790"
},
{
"cve": "CVE-2025-68791",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68791"
},
{
"cve": "CVE-2025-68792",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68792"
},
{
"cve": "CVE-2025-68793",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68793"
},
{
"cve": "CVE-2025-68794",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68794"
},
{
"cve": "CVE-2025-68795",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68795"
},
{
"cve": "CVE-2025-68796",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68796"
},
{
"cve": "CVE-2025-68797",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68797"
},
{
"cve": "CVE-2025-68798",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68798"
},
{
"cve": "CVE-2025-68799",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68799"
},
{
"cve": "CVE-2025-68800",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68800"
},
{
"cve": "CVE-2025-68801",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68801"
},
{
"cve": "CVE-2025-68802",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68802"
},
{
"cve": "CVE-2025-68803",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68803"
},
{
"cve": "CVE-2025-68804",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68804"
},
{
"cve": "CVE-2025-68805",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68805"
},
{
"cve": "CVE-2025-68806",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68806"
},
{
"cve": "CVE-2025-68807",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68807"
},
{
"cve": "CVE-2025-68808",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68808"
},
{
"cve": "CVE-2025-68809",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68809"
},
{
"cve": "CVE-2025-68810",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68810"
},
{
"cve": "CVE-2025-68811",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68811"
},
{
"cve": "CVE-2025-68812",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68812"
},
{
"cve": "CVE-2025-68813",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68813"
},
{
"cve": "CVE-2025-68814",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68814"
},
{
"cve": "CVE-2025-68815",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68815"
},
{
"cve": "CVE-2025-68816",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68816"
},
{
"cve": "CVE-2025-68817",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68817"
},
{
"cve": "CVE-2025-68818",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68818"
},
{
"cve": "CVE-2025-68819",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68819"
},
{
"cve": "CVE-2025-68820",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68820"
},
{
"cve": "CVE-2025-68821",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68821"
},
{
"cve": "CVE-2025-68822",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68822"
},
{
"cve": "CVE-2025-68823",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-68823"
},
{
"cve": "CVE-2025-71064",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71064"
},
{
"cve": "CVE-2025-71065",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71065"
},
{
"cve": "CVE-2025-71066",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71066"
},
{
"cve": "CVE-2025-71067",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71067"
},
{
"cve": "CVE-2025-71068",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71068"
},
{
"cve": "CVE-2025-71069",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71069"
},
{
"cve": "CVE-2025-71070",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71070"
},
{
"cve": "CVE-2025-71071",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71071"
},
{
"cve": "CVE-2025-71072",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71072"
},
{
"cve": "CVE-2025-71073",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71073"
},
{
"cve": "CVE-2025-71074",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71074"
},
{
"cve": "CVE-2025-71075",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71075"
},
{
"cve": "CVE-2025-71076",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71076"
},
{
"cve": "CVE-2025-71077",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71077"
},
{
"cve": "CVE-2025-71078",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71078"
},
{
"cve": "CVE-2025-71079",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71079"
},
{
"cve": "CVE-2025-71080",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71080"
},
{
"cve": "CVE-2025-71081",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71081"
},
{
"cve": "CVE-2025-71082",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71082"
},
{
"cve": "CVE-2025-71083",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71083"
},
{
"cve": "CVE-2025-71084",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71084"
},
{
"cve": "CVE-2025-71085",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71085"
},
{
"cve": "CVE-2025-71086",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71086"
},
{
"cve": "CVE-2025-71087",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71087"
},
{
"cve": "CVE-2025-71088",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71088"
},
{
"cve": "CVE-2025-71089",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71089"
},
{
"cve": "CVE-2025-71090",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71090"
},
{
"cve": "CVE-2025-71091",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71091"
},
{
"cve": "CVE-2025-71092",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71092"
},
{
"cve": "CVE-2025-71093",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71093"
},
{
"cve": "CVE-2025-71094",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71094"
},
{
"cve": "CVE-2025-71095",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71095"
},
{
"cve": "CVE-2025-71096",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71096"
},
{
"cve": "CVE-2025-71097",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71097"
},
{
"cve": "CVE-2025-71098",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71098"
},
{
"cve": "CVE-2025-71099",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71099"
},
{
"cve": "CVE-2025-71100",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71100"
},
{
"cve": "CVE-2025-71101",
"product_status": {
"known_affected": [
"T055288",
"T055287",
"67646",
"393635",
"T053842",
"T004914",
"T032255",
"2951",
"T002207",
"T000126",
"T021415",
"T049905",
"T027843",
"398363"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-71101"
}
]
}
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.
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.