Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2024-53071 (GCVE-0-2024-53071)
Vulnerability from cvelistv5 – Published: 2024-11-19 17:22 – Updated: 2026-05-11 20:50| Vendor | Product | Version | |
|---|---|---|---|
| Linux | Linux |
Affected:
5fe909cae118a757a77afb37174b99436a36d2e2 , < 2604afd65043e8f9d4be036cb1242adf6b5723cf
(git)
Affected: 5fe909cae118a757a77afb37174b99436a36d2e2 , < f432a1621f049bb207e78363d9d0e3c6fa2da5db (git) |
|
| Linux | Linux |
Affected:
6.10
Unaffected: 0 , < 6.10 (semver) Unaffected: 6.11.8 , ≤ 6.11.* (semver) Unaffected: 6.12 , ≤ * (original_commit_for_fix) |
{
"containers": {
"adp": [
{
"metrics": [
{
"cvssV3_1": {
"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"
}
},
{
"other": {
"content": {
"id": "CVE-2024-53071",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2025-10-01T20:12:23.550632Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"description": "CWE-noinfo Not enough information",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2025-10-01T20:17:16.169Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"drivers/gpu/drm/panthor/panthor_device.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "2604afd65043e8f9d4be036cb1242adf6b5723cf",
"status": "affected",
"version": "5fe909cae118a757a77afb37174b99436a36d2e2",
"versionType": "git"
},
{
"lessThan": "f432a1621f049bb207e78363d9d0e3c6fa2da5db",
"status": "affected",
"version": "5fe909cae118a757a77afb37174b99436a36d2e2",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"drivers/gpu/drm/panthor/panthor_device.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.10"
},
{
"lessThan": "6.10",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.11.*",
"status": "unaffected",
"version": "6.11.8",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "6.12",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.11.8",
"versionStartIncluding": "6.10",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12",
"versionStartIncluding": "6.10",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\ndrm/panthor: Be stricter about IO mapping flags\n\nThe current panthor_device_mmap_io() implementation has two issues:\n\n1. For mapping DRM_PANTHOR_USER_FLUSH_ID_MMIO_OFFSET,\n panthor_device_mmap_io() bails if VM_WRITE is set, but does not clear\n VM_MAYWRITE. That means userspace can use mprotect() to make the mapping\n writable later on. This is a classic Linux driver gotcha.\n I don\u0027t think this actually has any impact in practice:\n When the GPU is powered, writes to the FLUSH_ID seem to be ignored; and\n when the GPU is not powered, the dummy_latest_flush page provided by the\n driver is deliberately designed to not do any flushes, so the only thing\n writing to the dummy_latest_flush could achieve would be to make *more*\n flushes happen.\n\n2. panthor_device_mmap_io() does not block MAP_PRIVATE mappings (which are\n mappings without the VM_SHARED flag).\n MAP_PRIVATE in combination with VM_MAYWRITE indicates that the VMA has\n copy-on-write semantics, which for VM_PFNMAP are semi-supported but\n fairly cursed.\n In particular, in such a mapping, the driver can only install PTEs\n during mmap() by calling remap_pfn_range() (because remap_pfn_range()\n wants to **store the physical address of the mapped physical memory into\n the vm_pgoff of the VMA**); installing PTEs later on with a fault\n handler (as panthor does) is not supported in private mappings, and so\n if you try to fault in such a mapping, vmf_insert_pfn_prot() splats when\n it hits a BUG() check.\n\nFix it by clearing the VM_MAYWRITE flag (userspace writing to the FLUSH_ID\ndoesn\u0027t make sense) and requiring VM_SHARED (copy-on-write semantics for\nthe FLUSH_ID don\u0027t make sense).\n\nReproducers for both scenarios are in the notes of my patch on the mailing\nlist; I tested that these bugs exist on a Rock 5B machine.\n\nNote that I only compile-tested the patch, I haven\u0027t tested it; I don\u0027t\nhave a working kernel build setup for the test machine yet. Please test it\nbefore applying it."
}
],
"providerMetadata": {
"dateUpdated": "2026-05-11T20:50:17.522Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/2604afd65043e8f9d4be036cb1242adf6b5723cf"
},
{
"url": "https://git.kernel.org/stable/c/f432a1621f049bb207e78363d9d0e3c6fa2da5db"
}
],
"title": "drm/panthor: Be stricter about IO mapping flags",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2024-53071",
"datePublished": "2024-11-19T17:22:38.327Z",
"dateReserved": "2024-11-19T17:17:24.976Z",
"dateUpdated": "2026-05-11T20:50:17.522Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2024-53071",
"date": "2026-07-16",
"epss": "0.00195",
"percentile": "0.09332"
},
"fkie_nvd": {
"configurations": "[{\"nodes\": [{\"operator\": \"OR\", \"negate\": false, \"cpeMatch\": [{\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"versionStartIncluding\": \"6.10\", \"versionEndExcluding\": \"6.11.8\", \"matchCriteriaId\": \"ECA7D13C-A6AD-4239-BDEF-6B70FF23A4A9\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc1:*:*:*:*:*:*\", \"matchCriteriaId\": \"7F361E1D-580F-4A2D-A509-7615F73167A1\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc2:*:*:*:*:*:*\", \"matchCriteriaId\": \"925478D0-3E3D-4E6F-ACD5-09F28D5DF82C\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc3:*:*:*:*:*:*\", \"matchCriteriaId\": \"3C95E234-D335-4B6C-96BF-E2CEBD8654ED\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc4:*:*:*:*:*:*\", \"matchCriteriaId\": \"E0F717D8-3014-4F84-8086-0124B2111379\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc5:*:*:*:*:*:*\", \"matchCriteriaId\": \"24DBE6C7-2AAE-4818-AED2-E131F153D2FA\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc6:*:*:*:*:*:*\", \"matchCriteriaId\": \"24B88717-53F5-42AA-9B72-14C707639E3F\"}]}]}]",
"descriptions": "[{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\ndrm/panthor: Be stricter about IO mapping flags\\n\\nThe current panthor_device_mmap_io() implementation has two issues:\\n\\n1. For mapping DRM_PANTHOR_USER_FLUSH_ID_MMIO_OFFSET,\\n panthor_device_mmap_io() bails if VM_WRITE is set, but does not clear\\n VM_MAYWRITE. That means userspace can use mprotect() to make the mapping\\n writable later on. This is a classic Linux driver gotcha.\\n I don\u0027t think this actually has any impact in practice:\\n When the GPU is powered, writes to the FLUSH_ID seem to be ignored; and\\n when the GPU is not powered, the dummy_latest_flush page provided by the\\n driver is deliberately designed to not do any flushes, so the only thing\\n writing to the dummy_latest_flush could achieve would be to make *more*\\n flushes happen.\\n\\n2. panthor_device_mmap_io() does not block MAP_PRIVATE mappings (which are\\n mappings without the VM_SHARED flag).\\n MAP_PRIVATE in combination with VM_MAYWRITE indicates that the VMA has\\n copy-on-write semantics, which for VM_PFNMAP are semi-supported but\\n fairly cursed.\\n In particular, in such a mapping, the driver can only install PTEs\\n during mmap() by calling remap_pfn_range() (because remap_pfn_range()\\n wants to **store the physical address of the mapped physical memory into\\n the vm_pgoff of the VMA**); installing PTEs later on with a fault\\n handler (as panthor does) is not supported in private mappings, and so\\n if you try to fault in such a mapping, vmf_insert_pfn_prot() splats when\\n it hits a BUG() check.\\n\\nFix it by clearing the VM_MAYWRITE flag (userspace writing to the FLUSH_ID\\ndoesn\u0027t make sense) and requiring VM_SHARED (copy-on-write semantics for\\nthe FLUSH_ID don\u0027t make sense).\\n\\nReproducers for both scenarios are in the notes of my patch on the mailing\\nlist; I tested that these bugs exist on a Rock 5B machine.\\n\\nNote that I only compile-tested the patch, I haven\u0027t tested it; I don\u0027t\\nhave a working kernel build setup for the test machine yet. Please test it\\nbefore applying it.\"}, {\"lang\": \"es\", \"value\": \"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: drm/panthor: Sea m\\u00e1s estricto con las banderas de mapeo de IO La implementaci\\u00f3n actual de panthor_device_mmap_io() tiene dos problemas: 1. Para mapear DRM_PANTHOR_USER_FLUSH_ID_MMIO_OFFSET, panthor_device_mmap_io() abandona si VM_WRITE est\\u00e1 configurado, pero no borra VM_MAYWRITE. Eso significa que el espacio de usuario puede usar mprotect() para hacer que el mapeo sea escribible m\\u00e1s tarde. Este es un problema cl\\u00e1sico del controlador de Linux. No creo que esto realmente tenga alg\\u00fan impacto en la pr\\u00e1ctica: cuando la GPU est\\u00e1 encendida, las escrituras en FLUSH_ID parecen ignorarse; y cuando la GPU no est\\u00e1 encendida, la p\\u00e1gina dummy_latest_flush proporcionada por el controlador est\\u00e1 dise\\u00f1ada deliberadamente para no hacer ning\\u00fan vaciado, por lo que lo \\u00fanico que escribir en dummy_latest_flush podr\\u00eda lograr ser\\u00eda hacer que ocurrieran *m\\u00e1s* vaciados. 2. panthor_device_mmap_io() no bloquea las asignaciones MAP_PRIVATE (que son asignaciones sin el indicador VM_SHARED). MAP_PRIVATE en combinaci\\u00f3n con VM_MAYWRITE indica que la VMA tiene sem\\u00e1ntica de copia en escritura, que para VM_PFNMAP son semicompatibles pero con bastante mala calidad. En particular, en una asignaci\\u00f3n de este tipo, el controlador solo puede instalar PTE durante mmap() llamando a remap_pfn_range() (porque remap_pfn_range() quiere **almacenar la direcci\\u00f3n f\\u00edsica de la memoria f\\u00edsica asignada en el vm_pgoff de la VMA**); la instalaci\\u00f3n de PTE m\\u00e1s tarde con un controlador de errores (como lo hace panthor) no se admite en asignaciones privadas y, por lo tanto, si intenta generar un error en una asignaci\\u00f3n de este tipo, vmf_insert_pfn_prot() se bloquea cuando llega a una comprobaci\\u00f3n de ERROR(). Arr\\u00e9glelo borrando la marca VM_MAYWRITE (la escritura en el espacio de usuario en FLUSH_ID no tiene sentido) y requiriendo VM_SHARED (la sem\\u00e1ntica de copia en escritura para FLUSH_ID no tiene sentido). Los reproductores para ambos escenarios est\\u00e1n en las notas de mi parche en la lista de correo; prob\\u00e9 que estos errores existen en una m\\u00e1quina Rock 5B. Tenga en cuenta que solo prob\\u00e9 la compilaci\\u00f3n del parche, no lo he probado; a\\u00fan no tengo una configuraci\\u00f3n de compilaci\\u00f3n de kernel que funcione para la m\\u00e1quina de prueba. Pru\\u00e9belo antes de aplicarlo.\"}]",
"id": "CVE-2024-53071",
"lastModified": "2024-11-26T22:18:28.540",
"metrics": "{\"cvssMetricV31\": [{\"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}]}",
"published": "2024-11-19T18:15:26.793",
"references": "[{\"url\": \"https://git.kernel.org/stable/c/2604afd65043e8f9d4be036cb1242adf6b5723cf\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"tags\": [\"Patch\"]}, {\"url\": \"https://git.kernel.org/stable/c/f432a1621f049bb207e78363d9d0e3c6fa2da5db\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"tags\": [\"Patch\"]}]",
"sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"vulnStatus": "Analyzed",
"weaknesses": "[{\"source\": \"nvd@nist.gov\", \"type\": \"Primary\", \"description\": [{\"lang\": \"en\", \"value\": \"NVD-CWE-noinfo\"}]}]"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2024-53071\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-11-19T18:15:26.793\",\"lastModified\":\"2026-06-17T08:08:11.980\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\ndrm/panthor: Be stricter about IO mapping flags\\n\\nThe current panthor_device_mmap_io() implementation has two issues:\\n\\n1. For mapping DRM_PANTHOR_USER_FLUSH_ID_MMIO_OFFSET,\\n panthor_device_mmap_io() bails if VM_WRITE is set, but does not clear\\n VM_MAYWRITE. That means userspace can use mprotect() to make the mapping\\n writable later on. This is a classic Linux driver gotcha.\\n I don\u0027t think this actually has any impact in practice:\\n When the GPU is powered, writes to the FLUSH_ID seem to be ignored; and\\n when the GPU is not powered, the dummy_latest_flush page provided by the\\n driver is deliberately designed to not do any flushes, so the only thing\\n writing to the dummy_latest_flush could achieve would be to make *more*\\n flushes happen.\\n\\n2. panthor_device_mmap_io() does not block MAP_PRIVATE mappings (which are\\n mappings without the VM_SHARED flag).\\n MAP_PRIVATE in combination with VM_MAYWRITE indicates that the VMA has\\n copy-on-write semantics, which for VM_PFNMAP are semi-supported but\\n fairly cursed.\\n In particular, in such a mapping, the driver can only install PTEs\\n during mmap() by calling remap_pfn_range() (because remap_pfn_range()\\n wants to **store the physical address of the mapped physical memory into\\n the vm_pgoff of the VMA**); installing PTEs later on with a fault\\n handler (as panthor does) is not supported in private mappings, and so\\n if you try to fault in such a mapping, vmf_insert_pfn_prot() splats when\\n it hits a BUG() check.\\n\\nFix it by clearing the VM_MAYWRITE flag (userspace writing to the FLUSH_ID\\ndoesn\u0027t make sense) and requiring VM_SHARED (copy-on-write semantics for\\nthe FLUSH_ID don\u0027t make sense).\\n\\nReproducers for both scenarios are in the notes of my patch on the mailing\\nlist; I tested that these bugs exist on a Rock 5B machine.\\n\\nNote that I only compile-tested the patch, I haven\u0027t tested it; I don\u0027t\\nhave a working kernel build setup for the test machine yet. Please test it\\nbefore applying it.\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: drm/panthor: Sea m\u00e1s estricto con las banderas de mapeo de IO La implementaci\u00f3n actual de panthor_device_mmap_io() tiene dos problemas: 1. Para mapear DRM_PANTHOR_USER_FLUSH_ID_MMIO_OFFSET, panthor_device_mmap_io() abandona si VM_WRITE est\u00e1 configurado, pero no borra VM_MAYWRITE. Eso significa que el espacio de usuario puede usar mprotect() para hacer que el mapeo sea escribible m\u00e1s tarde. Este es un problema cl\u00e1sico del controlador de Linux. No creo que esto realmente tenga alg\u00fan impacto en la pr\u00e1ctica: cuando la GPU est\u00e1 encendida, las escrituras en FLUSH_ID parecen ignorarse; y cuando la GPU no est\u00e1 encendida, la p\u00e1gina dummy_latest_flush proporcionada por el controlador est\u00e1 dise\u00f1ada deliberadamente para no hacer ning\u00fan vaciado, por lo que lo \u00fanico que escribir en dummy_latest_flush podr\u00eda lograr ser\u00eda hacer que ocurrieran *m\u00e1s* vaciados. 2. panthor_device_mmap_io() no bloquea las asignaciones MAP_PRIVATE (que son asignaciones sin el indicador VM_SHARED). MAP_PRIVATE en combinaci\u00f3n con VM_MAYWRITE indica que la VMA tiene sem\u00e1ntica de copia en escritura, que para VM_PFNMAP son semicompatibles pero con bastante mala calidad. En particular, en una asignaci\u00f3n de este tipo, el controlador solo puede instalar PTE durante mmap() llamando a remap_pfn_range() (porque remap_pfn_range() quiere **almacenar la direcci\u00f3n f\u00edsica de la memoria f\u00edsica asignada en el vm_pgoff de la VMA**); la instalaci\u00f3n de PTE m\u00e1s tarde con un controlador de errores (como lo hace panthor) no se admite en asignaciones privadas y, por lo tanto, si intenta generar un error en una asignaci\u00f3n de este tipo, vmf_insert_pfn_prot() se bloquea cuando llega a una comprobaci\u00f3n de ERROR(). Arr\u00e9glelo borrando la marca VM_MAYWRITE (la escritura en el espacio de usuario en FLUSH_ID no tiene sentido) y requiriendo VM_SHARED (la sem\u00e1ntica de copia en escritura para FLUSH_ID no tiene sentido). Los reproductores para ambos escenarios est\u00e1n en las notas de mi parche en la lista de correo; prob\u00e9 que estos errores existen en una m\u00e1quina Rock 5B. Tenga en cuenta que solo prob\u00e9 la compilaci\u00f3n del parche, no lo he probado; a\u00fan no tengo una configuraci\u00f3n de compilaci\u00f3n de kernel que funcione para la m\u00e1quina de prueba. Pru\u00e9belo antes de aplicarlo.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"drivers/gpu/drm/panthor/panthor_device.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"5fe909cae118a757a77afb37174b99436a36d2e2\",\"lessThan\":\"2604afd65043e8f9d4be036cb1242adf6b5723cf\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"5fe909cae118a757a77afb37174b99436a36d2e2\",\"lessThan\":\"f432a1621f049bb207e78363d9d0e3c6fa2da5db\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"drivers/gpu/drm/panthor/panthor_device.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.10\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.10\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.11.8\",\"lessThanOrEqual\":\"6.11.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.12\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"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},{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"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}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2025-10-01T20:12:23.550632Z\",\"id\":\"CVE-2024-53071\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"no\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"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.10\",\"versionEndExcluding\":\"6.11.8\",\"matchCriteriaId\":\"ECA7D13C-A6AD-4239-BDEF-6B70FF23A4A9\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"7F361E1D-580F-4A2D-A509-7615F73167A1\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc2:*:*:*:*:*:*\",\"matchCriteriaId\":\"925478D0-3E3D-4E6F-ACD5-09F28D5DF82C\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc3:*:*:*:*:*:*\",\"matchCriteriaId\":\"3C95E234-D335-4B6C-96BF-E2CEBD8654ED\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc4:*:*:*:*:*:*\",\"matchCriteriaId\":\"E0F717D8-3014-4F84-8086-0124B2111379\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc5:*:*:*:*:*:*\",\"matchCriteriaId\":\"24DBE6C7-2AAE-4818-AED2-E131F153D2FA\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc6:*:*:*:*:*:*\",\"matchCriteriaId\":\"24B88717-53F5-42AA-9B72-14C707639E3F\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/2604afd65043e8f9d4be036cb1242adf6b5723cf\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/f432a1621f049bb207e78363d9d0e3c6fa2da5db\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2025-11-21T14:01:23+00:00",
"cve": "CVE-2024-53071",
"id": "CVE-2024-53071",
"initial_release_date": "2024-11-19T00:00:00+00:00",
"product_status:known_not_affected": "198",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "kernel: drm/panthor: Be stricter about IO mapping flags",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2024/cve-2024-53071.json",
"version": "3"
}
}
}
usn-7277-1
Vulnerability from osv_ubuntu
Several security issues were discovered in the Linux kernel. An attacker could possibly use these to compromise the system. This update corrects flaws in the following subsystems: - ARM32 architecture; - ARM64 architecture; - PowerPC architecture; - RISC-V architecture; - S390 architecture; - SuperH RISC architecture; - User-Mode Linux (UML); - x86 architecture; - Block layer subsystem; - Cryptographic API; - Compute Acceleration Framework; - ACPI drivers; - Drivers core; - ATA over ethernet (AOE) driver; - RAM backed block device driver; - Network block device driver; - Ublk userspace block driver; - Compressed RAM block device driver; - Bluetooth drivers; - TPM device driver; - Clock framework and drivers; - Data acquisition framework and drivers; - CPU frequency scaling framework; - Hardware crypto device drivers; - CXL (Compute Express Link) drivers; - DAX dirext access to differentiated memory framework; - Buffer Sharing and Synchronization framework; - EDAC drivers; - FireWire subsystem; - ARM SCMI message protocol; - ARM SCPI message protocol; - EFI core; - Qualcomm firmware drivers; - GPIO subsystem; - GPU drivers; - HID subsystem; - I2C subsystem; - I3C subsystem; - IIO ADC drivers; - IIO subsystem; - InfiniBand drivers; - Input Device core drivers; - IOMMU subsystem; - IRQ chip drivers; - Mailbox framework; - Multiple devices driver; - Media drivers; - Multifunction device drivers; - MMC subsystem; - MTD block device drivers; - Ethernet bonding driver; - Network drivers; - Mellanox network drivers; - STMicroelectronics network drivers; - NTB driver; - Virtio pmem driver; - NVME drivers; - Parport drivers; - PCI subsystem; - Alibaba DDR Sub-System Driveway PMU driver; - PHY drivers; - Pin controllers subsystem; - x86 platform drivers; - i.MX PM domains; - Powercap sysfs driver; - Voltage and Current Regulator drivers; - Remote Processor subsystem; - StarFive reset controller drivers; - Real Time Clock drivers; - SCSI subsystem; - SuperH / SH-Mobile drivers; - QCOM SoC drivers; - Xilinx SoC drivers; - SPI subsystem; - Direct Digital Synthesis drivers; - Media staging drivers; - TCM subsystem; - Thermal drivers; - Thunderbolt and USB4 drivers; - TTY drivers; - UFS subsystem; - USB Device Class drivers; - DesignWare USB3 driver; - USB Gadget drivers; - USB Host Controller drivers; - USB Dual Role (OTG-ready) Controller drivers; - USB Serial drivers; - USB Type-C support driver; - USB Type-C Port Controller Manager driver; - TI TPS6598x USB Power Delivery controller driver; - USB Type-C Connector System Software Interface driver; - vDPA drivers; - VFIO drivers; - Virtio Host (VHOST) subsystem; - Framebuffer layer; - Virtio drivers; - Xen hypervisor drivers; - AFS file system; - BTRFS file system; - File systems infrastructure; - Ceph distributed file system; - EROFS file system; - Ext4 file system; - F2FS file system; - GFS2 file system; - JFS file system; - Network file systems library; - Network file system (NFS) client; - Network file system (NFS) server daemon; - NILFS2 file system; - File system notification infrastructure; - NTFS3 file system; - Proc file system; - SMB network file system; - UBI file system; - BPF subsystem; - Network file system (NFS) superblock; - Virtio network driver; - Bluetooth subsystem; - Network traffic control; - Network sockets; - TCP network protocol; - Tracing infrastructure; - User-space API (UAPI); - Kernel init infrastructure; - io_uring subsystem; - IPC subsystem; - Perf events; - Kernel fork() syscall; - Kernel thread helper (kthread); - Padata parallel execution mechanism; - RCU subsystem; - Arbitrary resource management; - Scheduler infrastructure; - Signal handling mechanism; - Static call mechanism; - Task handling mechanism; - Timer substystem drivers; - Maple Tree data structure library; - Memory management; - 9P file system network protocol; - Ethernet bridge; - CAN network layer; - Networking core; - DCCP (Datagram Congestion Control Protocol); - Distributed Switch Architecture; - IPv4 networking; - IPv6 networking; - IUCV driver; - L2TP protocol; - MAC80211 subsystem; - IEEE 802.15.4 subsystem; - Multipath TCP; - NCSI (Network Controller Sideband Interface) driver; - Netfilter; - Netlink; - RxRPC session sockets; - SCTP protocol; - SMC sockets; - Sun RPC protocol; - TIPC protocol; - Unix domain sockets; - VMware vSockets driver; - Wireless networking; - eXpress Data Path; - XFRM subsystem; - AppArmor security module; - Integrity Measurement Architecture(IMA) framework; - Key management; - ALSA framework; - FireWire sound drivers; - AudioScience HPI driver; - HD-audio driver; - SoC Audio for Freescale CPUs drivers; - Intel ASoC drivers; - MediaTek ASoC drivers; - QCOM ASoC drivers; - SoC audio core drivers; - STMicroelectronics SoC drivers; - USB sound devices; - KVM core; (CVE-2024-50030, CVE-2024-47689, CVE-2024-50088, CVE-2024-50154, CVE-2024-49994, CVE-2024-50243, CVE-2024-50284, CVE-2024-50207, CVE-2024-53200, CVE-2024-53155, CVE-2024-50179, CVE-2024-50171, CVE-2024-53167, CVE-2024-49885, CVE-2024-49869, CVE-2024-49934, CVE-2024-53089, CVE-2024-50196, CVE-2024-53090, CVE-2024-47675, CVE-2024-47690, CVE-2024-56674, CVE-2024-50082, CVE-2024-47742, CVE-2024-53220, CVE-2024-50172, CVE-2024-50009, CVE-2024-49881, CVE-2024-50249, CVE-2024-47752, CVE-2024-56707, CVE-2024-53105, CVE-2024-53048, CVE-2024-50148, CVE-2024-50036, CVE-2024-53141, CVE-2024-50213, CVE-2024-49911, CVE-2024-50285, CVE-2024-56535, CVE-2024-49882, CVE-2024-50225, CVE-2024-50090, CVE-2024-53063, CVE-2024-56703, CVE-2024-47687, CVE-2024-53079, CVE-2024-47744, CVE-2024-50020, CVE-2024-53078, CVE-2024-53176, CVE-2024-53183, CVE-2024-50248, CVE-2024-50283, CVE-2024-49907, CVE-2024-50084, CVE-2024-56541, CVE-2024-49979, CVE-2024-53175, CVE-2024-49871, CVE-2024-47678, CVE-2024-47720, CVE-2024-53059, CVE-2024-56685, CVE-2024-56702, CVE-2024-50071, CVE-2024-56534, CVE-2024-56745, CVE-2024-53154, CVE-2024-47736, CVE-2024-49965, CVE-2024-47701, CVE-2024-50159, CVE-2024-50040, CVE-2024-50274, CVE-2024-49876, CVE-2024-49895, CVE-2024-50189, CVE-2024-56704, CVE-2024-47681, CVE-2024-53106, CVE-2024-56744, CVE-2024-53197, CVE-2024-50120, CVE-2024-50204, CVE-2024-50184, CVE-2024-53095, CVE-2024-50101, CVE-2024-53146, CVE-2024-50256, CVE-2024-53226, CVE-2024-47712, CVE-2024-50137, CVE-2024-53131, CVE-2024-49888, CVE-2024-50235, CVE-2024-50047, CVE-2024-50224, CVE-2024-50142, CVE-2024-50200, CVE-2024-53085, CVE-2024-49892, CVE-2024-50263, CVE-2024-53150, CVE-2024-53121, CVE-2024-49977, CVE-2024-50144, CVE-2024-50127, CVE-2024-53092, CVE-2024-50265, CVE-2024-56691, CVE-2024-53069, CVE-2024-49902, CVE-2024-47715, CVE-2024-56720, CVE-2024-53127, CVE-2024-53142, CVE-2024-49862, CVE-2024-49918, CVE-2024-56684, CVE-2024-50208, CVE-2024-53189, CVE-2024-50103, CVE-2024-56756, CVE-2024-50273, CVE-2024-56536, CVE-2024-53068, CVE-2024-49878, CVE-2024-47705, CVE-2024-53113, CVE-2024-50129, CVE-2024-49942, CVE-2024-50100, CVE-2024-49930, CVE-2024-50043, CVE-2024-53198, CVE-2024-49861, CVE-2024-50124, CVE-2024-50209, CVE-2024-53187, CVE-2024-49864, CVE-2024-56689, CVE-2024-50294, CVE-2024-47706, CVE-2024-50186, CVE-2024-53086, CVE-2024-49954, CVE-2024-56692, CVE-2024-47679, CVE-2024-53109, CVE-2024-50001, CVE-2024-49983, CVE-2024-56679, CVE-2024-50034, CVE-2024-50276, CVE-2024-56680, CVE-2024-49988, CVE-2024-53099, CVE-2024-50021, CVE-2024-50022, CVE-2024-50136, CVE-2024-53193, CVE-2024-50220, CVE-2024-49858, CVE-2024-50229, CVE-2024-50074, CVE-2024-50002, CVE-2024-53117, CVE-2024-50176, CVE-2024-50075, CVE-2024-50045, CVE-2024-49924, CVE-2024-47686, CVE-2024-50104, CVE-2024-47714, CVE-2024-50291, CVE-2024-49929, CVE-2024-53215, CVE-2024-50157, CVE-2024-50147, CVE-2024-49898, CVE-2024-50164, CVE-2024-47711, CVE-2024-53082, CVE-2024-50230, CVE-2024-50152, CVE-2024-53218, CVE-2024-53199, CVE-2024-50253, CVE-2024-47754, CVE-2024-49910, CVE-2024-53137, CVE-2024-50128, CVE-2024-50044, CVE-2024-47719, CVE-2024-53188, CVE-2024-53061, CVE-2024-49944, CVE-2024-50091, CVE-2024-49945, CVE-2024-50119, CVE-2024-50133, CVE-2024-50033, CVE-2024-53083, CVE-2024-50138, CVE-2024-49872, CVE-2024-50140, CVE-2024-56727, CVE-2024-50003, CVE-2024-50015, CVE-2024-50303, CVE-2024-50258, CVE-2024-49867, CVE-2024-50116, CVE-2024-47716, CVE-2024-50132, CVE-2024-50055, CVE-2024-49950, CVE-2024-50203, CVE-2024-47695, CVE-2024-50250, CVE-2024-50165, CVE-2024-50156, CVE-2024-56700, CVE-2024-49913, CVE-2024-50281, CVE-2024-53045, CVE-2024-49998, CVE-2024-53180, CVE-2024-50271, CVE-2024-50286, CVE-2024-49887, CVE-2024-53168, CVE-2024-47676, CVE-2024-47726, CVE-2024-47732, CVE-2024-47704, CVE-2024-49980, CVE-2024-49931, CVE-2024-53229, CVE-2024-50141, CVE-2024-50282, CVE-2024-50233, CVE-2024-56725, CVE-2024-50239, CVE-2024-50299, CVE-2024-50218, CVE-2024-53072, CVE-2024-49903, CVE-2024-50163, CVE-2024-53100, CVE-2024-50146, CVE-2024-49859, CVE-2024-50227, CVE-2024-50188, CVE-2024-56739, CVE-2024-53217, CVE-2024-53118, CVE-2024-49946, CVE-2024-53212, CVE-2024-49926, CVE-2024-53177, CVE-2024-56741, CVE-2024-53234, CVE-2024-49932, CVE-2024-50095, CVE-2024-50190, CVE-2024-49995, CVE-2024-49976, CVE-2024-49906, CVE-2024-49996, CVE-2024-53049, CVE-2024-47751, CVE-2024-56677, CVE-2024-56724, CVE-2024-47746, CVE-2024-50245, CVE-2024-53236, CVE-2024-53191, CVE-2024-50112, CVE-2024-49937, CVE-2024-50234, CVE-2024-50067, CVE-2024-53112, CVE-2024-50017, CVE-2024-50008, CVE-2024-50194, CVE-2024-50076, CVE-2024-47697, CVE-2024-56693, CVE-2024-50280, CVE-2024-50182, CVE-2024-53237, CVE-2024-50011, CVE-2024-49912, CVE-2024-50217, CVE-2024-56532, CVE-2024-53221, CVE-2024-50206, CVE-2024-47700, CVE-2024-56537, CVE-2024-49959, CVE-2024-56681, CVE-2024-49936, CVE-2024-49900, CVE-2024-53077, CVE-2024-56705, CVE-2024-53125, CVE-2024-49968, CVE-2024-49969, CVE-2024-56545, CVE-2024-50106, CVE-2024-53160, CVE-2024-50013, CVE-2024-49880, CVE-2024-53228, CVE-2024-50177, CVE-2024-47684, CVE-2024-47739, CVE-2024-50029, CVE-2024-53194, CVE-2024-50237, CVE-2024-50035, CVE-2024-49941, CVE-2024-49947, CVE-2024-50289, CVE-2024-49949, CVE-2024-50023, CVE-2024-50139, CVE-2024-49886, CVE-2024-50026, CVE-2024-56748, CVE-2024-53080, CVE-2024-56754, CVE-2024-49999, CVE-2024-49963, CVE-2024-49855, CVE-2024-50252, CVE-2024-49975, CVE-2024-50107, CVE-2024-56749, CVE-2024-49928, CVE-2024-49865, CVE-2024-50125, CVE-2024-49899, CVE-2024-47750, CVE-2024-53152, CVE-2024-50081, CVE-2024-49891, CVE-2024-49927, CVE-2024-49852, CVE-2024-50085, CVE-2024-50185, CVE-2024-50205, CVE-2024-49896, CVE-2024-50278, CVE-2024-49866, CVE-2024-53190, CVE-2024-50251, CVE-2024-50269, CVE-2024-49889, CVE-2024-50037, CVE-2024-53144, CVE-2024-53138, CVE-2024-50087, CVE-2024-56678, CVE-2024-53087, CVE-2024-50180, CVE-2024-49940, CVE-2024-50019, CVE-2024-53149, CVE-2024-50122, CVE-2024-50038, CVE-2024-53156, CVE-2024-49943, CVE-2024-50113, CVE-2024-47721, CVE-2024-53076, CVE-2024-50115, CVE-2024-50178, CVE-2024-50268, CVE-2024-50279, CVE-2024-53134, CVE-2024-50199, CVE-2024-49989, CVE-2024-47671, CVE-2024-49909, CVE-2024-53173, CVE-2024-53053, CVE-2024-53088, CVE-2024-50078, CVE-2024-50105, CVE-2024-50223, CVE-2024-50126, CVE-2024-47680, CVE-2024-47724, CVE-2024-53047, CVE-2024-50060, CVE-2024-53056, CVE-2024-49987, CVE-2024-49879, CVE-2024-53128, CVE-2024-53123, CVE-2024-49981, CVE-2024-50277, CVE-2024-50166, CVE-2024-53067, CVE-2024-49964, CVE-2024-56728, CVE-2024-49853, CVE-2024-53064, CVE-2024-56531, CVE-2024-53213, CVE-2024-50246, CVE-2024-50192, CVE-2024-53184, CVE-2024-56697, CVE-2024-47710, CVE-2024-53052, CVE-2024-47718, CVE-2024-49938, CVE-2024-49893, CVE-2024-53133, CVE-2024-50096, CVE-2024-53129, CVE-2024-49951, CVE-2024-53181, CVE-2024-50059, CVE-2024-50193, CVE-2024-53120, CVE-2024-50114, CVE-2024-49962, CVE-2024-49921, CVE-2024-50298, CVE-2024-50255, CVE-2024-53219, CVE-2024-49905, CVE-2024-50211, CVE-2024-49860, CVE-2024-47727, CVE-2024-50028, CVE-2024-47723, CVE-2024-53081, CVE-2024-56683, CVE-2024-49897, CVE-2024-50065, CVE-2024-56708, CVE-2024-50151, CVE-2023-52917, CVE-2024-56538, CVE-2024-47691, CVE-2024-53196, CVE-2024-50150, CVE-2024-50069, CVE-2024-50301, CVE-2024-50131, CVE-2024-53110, CVE-2024-56701, CVE-2024-53115, CVE-2024-53062, CVE-2024-50058, CVE-2024-53148, CVE-2024-53147, CVE-2024-50226, CVE-2024-56540, CVE-2024-53124, CVE-2024-50170, CVE-2024-50266, CVE-2024-50296, CVE-2024-49953, CVE-2024-47692, CVE-2024-49916, CVE-2024-53239, CVE-2024-50173, CVE-2024-49868, CVE-2024-47677, CVE-2024-49972, CVE-2024-50130, CVE-2024-56698, CVE-2024-50231, CVE-2024-50272, CVE-2024-53153, CVE-2024-50158, CVE-2024-53046, CVE-2024-49908, CVE-2024-47709, CVE-2024-53058, CVE-2024-50006, CVE-2024-49948, CVE-2024-47685, CVE-2024-47693, CVE-2024-50260, CVE-2024-50079, CVE-2024-50149, CVE-2024-53151, CVE-2024-47757, CVE-2024-49917, CVE-2024-50288, CVE-2024-50117, CVE-2024-50039, CVE-2024-56690, CVE-2024-50293, CVE-2024-50145, CVE-2024-53166, CVE-2024-47713, CVE-2024-53158, CVE-2024-50068, CVE-2024-53074, CVE-2024-49914, CVE-2024-49870, CVE-2024-50031, CVE-2024-47735, CVE-2024-50007, CVE-2024-49915, CVE-2024-47699, CVE-2024-50244, CVE-2024-50216, CVE-2024-53114, CVE-2024-53043, CVE-2024-47688, CVE-2024-47734, CVE-2024-53230, CVE-2024-53122, CVE-2024-50123, CVE-2024-53116, CVE-2024-56726, CVE-2024-56747, CVE-2024-56548, CVE-2024-50174, CVE-2024-53042, CVE-2024-53135, CVE-2024-50080, CVE-2024-49997, CVE-2024-49974, CVE-2024-53145, CVE-2024-53075, CVE-2024-47730, CVE-2024-50304, CVE-2024-50161, CVE-2024-49883, CVE-2024-53111, CVE-2024-53233, CVE-2024-47698, CVE-2024-50012, CVE-2024-50240, CVE-2024-53163, CVE-2024-53071, CVE-2024-50168, CVE-2024-47740, CVE-2024-50275, CVE-2024-49961, CVE-2024-50183, CVE-2024-53203, CVE-2024-47738, CVE-2024-49856, CVE-2024-50014, CVE-2024-50191, CVE-2024-46869, CVE-2024-56721, CVE-2024-50056, CVE-2024-53210, CVE-2024-49978, CVE-2024-53161, CVE-2024-50155, CVE-2024-50270, CVE-2024-50169, CVE-2024-49952, CVE-2024-50236, CVE-2024-49863, CVE-2024-49857, CVE-2024-53140, CVE-2024-53107, CVE-2024-50247, CVE-2024-53084, CVE-2024-50077, CVE-2024-50121, CVE-2024-53091, CVE-2024-49925, CVE-2024-47745, CVE-2024-50086, CVE-2024-53101, CVE-2024-56729, CVE-2024-56751, CVE-2024-50016, CVE-2024-49901, CVE-2024-47694, CVE-2024-53098, CVE-2024-53232, CVE-2024-50108, CVE-2024-50197, CVE-2024-50242, CVE-2024-50222, CVE-2024-53132, CVE-2024-50212, CVE-2024-49933, CVE-2024-53169, CVE-2024-49957, CVE-2024-56533, CVE-2024-47708, CVE-2024-50267, CVE-2024-56723, CVE-2024-50110, CVE-2024-50064, CVE-2024-56722, CVE-2024-53130, CVE-2024-53208, CVE-2024-50102, CVE-2024-50153, CVE-2024-49939, CVE-2024-53094, CVE-2024-50262, CVE-2024-49850, CVE-2024-53195, CVE-2024-53170, CVE-2024-50093, CVE-2024-53223, CVE-2024-53093, CVE-2024-56699, CVE-2024-50070, CVE-2024-49992, CVE-2024-50111, CVE-2024-47728, CVE-2024-53202, CVE-2024-47741, CVE-2024-49920, CVE-2024-56694, CVE-2024-53126, CVE-2024-49851, CVE-2024-50099, CVE-2024-50302, CVE-2024-50214, CVE-2024-49973, CVE-2024-50024, CVE-2024-50162, CVE-2024-53214, CVE-2024-50073, CVE-2024-50061, CVE-2024-56549, CVE-2024-56688, CVE-2024-49960, CVE-2024-56543, CVE-2024-53178, CVE-2024-50027, CVE-2024-50295, CVE-2024-53104, CVE-2024-53065, CVE-2024-47747, CVE-2024-49991, CVE-2024-50202, CVE-2024-49935, CVE-2024-50062, CVE-2024-50094, CVE-2024-56544, CVE-2024-50010, CVE-2024-49971, CVE-2024-50083, CVE-2024-56687, CVE-2024-47753, CVE-2024-50297, CVE-2024-47733, CVE-2024-50135, CVE-2024-50066, CVE-2024-50118, CVE-2024-56746, CVE-2024-47682, CVE-2024-53165, CVE-2024-50025, CVE-2024-49875, CVE-2024-47717, CVE-2024-49894, CVE-2024-50198, CVE-2024-50167, CVE-2024-49958, CVE-2024-49966, CVE-2024-50254, CVE-2024-49904, CVE-2024-50041, CVE-2024-50005, CVE-2024-53066, CVE-2024-50000, CVE-2024-50215, CVE-2024-47748, CVE-2024-56742, CVE-2024-50259, CVE-2024-50092, CVE-2024-47737, CVE-2024-53238, CVE-2024-50300, CVE-2024-53192, CVE-2024-47696, CVE-2024-50134, CVE-2024-50201, CVE-2024-50181, CVE-2024-49873, CVE-2024-50187, CVE-2024-53171, CVE-2024-50160, CVE-2024-49923, CVE-2024-50063, CVE-2024-53174, CVE-2024-50143, CVE-2024-49982, CVE-2024-56546, CVE-2024-50109, CVE-2024-53119, CVE-2024-47707, CVE-2024-56696, CVE-2024-53108, CVE-2024-47731, CVE-2024-50261, CVE-2024-50042, CVE-2024-49884, CVE-2024-53162, CVE-2024-56755, CVE-2024-49919, CVE-2024-53216, CVE-2024-50287, CVE-2024-53143, CVE-2024-50257, CVE-2024-49890, CVE-2024-53172, CVE-2024-53209, CVE-2024-49956, CVE-2024-50238, CVE-2024-49955, CVE-2024-50046, CVE-2024-50098, CVE-2024-50232, CVE-2024-50292, CVE-2024-56752, CVE-2024-50195, CVE-2024-47743, CVE-2024-53044, CVE-2024-50049, CVE-2024-49986, CVE-2024-53055, CVE-2024-56539, CVE-2024-50048, CVE-2024-49985, CVE-2024-53227, CVE-2024-49970, CVE-2024-47702, CVE-2024-49874, CVE-2024-47703, CVE-2024-53139, CVE-2024-50072, CVE-2024-53224, CVE-2024-49877, CVE-2024-49922, CVE-2024-50290, CVE-2024-47756, CVE-2024-50221, CVE-2024-50057, CVE-2022-49034, CVE-2024-53157, CVE-2024-47749, CVE-2024-53231)
{
"affected": [
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-aws-cloud-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-aws-headers-6.11.0-1009",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-aws-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-buildinfo-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-headers-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-aws-dbgsym",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-modules-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-modules-extra-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-tools-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-aws",
"purl": "pkg:deb/ubuntu/linux-aws@6.11.0-1009.10?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1009.10"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.8",
"6.11.0-1002.2",
"6.11.0-1004.4",
"6.11.0-1005.5",
"6.11.0-1006.6",
"6.11.0-1007.7",
"6.11.0-1008.8"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-cloud-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-azure-headers-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-azure-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-buildinfo-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-headers-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-azure-dbgsym",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-extra-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-tools-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-azure",
"purl": "pkg:deb/ubuntu/linux-azure@6.11.0-1009.9?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1009.9"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1007.7",
"6.11.0-1003.3",
"6.11.0-1004.4",
"6.11.0-1005.5",
"6.11.0-1007.7",
"6.11.0-1008.8"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-gcp-headers-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-gcp-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-headers-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-gcp-dbgsym",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-extra-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-tools-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-gcp",
"purl": "pkg:deb/ubuntu/linux-gcp@6.11.0-1009.9?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1009.9"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1007.7",
"6.11.0-1001.1",
"6.11.0-1002.2",
"6.11.0-1003.3",
"6.11.0-1004.4",
"6.11.0-1005.5",
"6.11.0-1006.6",
"6.11.0-1007.7"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-buildinfo-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-headers-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-headers-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-oracle-64k-dbgsym",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-oracle-dbgsym",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-extra-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-extra-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-oracle-headers-6.11.0-1011",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-oracle-tools-6.11.0-1011",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-tools-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-tools-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-oracle",
"purl": "pkg:deb/ubuntu/linux-oracle@6.11.0-1011.12?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1011.12"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1005.5",
"6.11.0-1004.4",
"6.11.0-1006.6",
"6.11.0-1007.7",
"6.11.0-1008.8",
"6.11.0-1009.9",
"6.11.0-1010.10"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-headers-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-image-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-image-6.11.0-1008-raspi-dbgsym",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-modules-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-raspi-headers-6.11.0-1008",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-raspi-tools-6.11.0-1008",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-tools-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-raspi",
"purl": "pkg:deb/ubuntu/linux-raspi@6.11.0-1008.8?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1008.8"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1004.4",
"6.11.0-1003.3",
"6.11.0-1004.4",
"6.11.0-1005.5",
"6.11.0-1006.6",
"6.11.0-1007.7"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-headers-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1005-realtime-dbgsym",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-modules-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-modules-extra-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-realtime-cloud-tools-6.11.0-1005",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-realtime-headers-6.11.0-1005",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-realtime-tools-6.11.0-1005",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-tools-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@6.11.0-1005.5?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1005.5"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1001.1",
"6.11.0-1002.2",
"6.11.0-1003.3",
"6.11.0-1004.4"
]
}
],
"aliases": [],
"details": "Several security issues were discovered in the Linux kernel.\nAn attacker could possibly use these to compromise the system.\nThis update corrects flaws in the following subsystems:\n - ARM32 architecture;\n - ARM64 architecture;\n - PowerPC architecture;\n - RISC-V architecture;\n - S390 architecture;\n - SuperH RISC architecture;\n - User-Mode Linux (UML);\n - x86 architecture;\n - Block layer subsystem;\n - Cryptographic API;\n - Compute Acceleration Framework;\n - ACPI drivers;\n - Drivers core;\n - ATA over ethernet (AOE) driver;\n - RAM backed block device driver;\n - Network block device driver;\n - Ublk userspace block driver;\n - Compressed RAM block device driver;\n - Bluetooth drivers;\n - TPM device driver;\n - Clock framework and drivers;\n - Data acquisition framework and drivers;\n - CPU frequency scaling framework;\n - Hardware crypto device drivers;\n - CXL (Compute Express Link) drivers;\n - DAX dirext access to differentiated memory framework;\n - Buffer Sharing and Synchronization framework;\n - EDAC drivers;\n - FireWire subsystem;\n - ARM SCMI message protocol;\n - ARM SCPI message protocol;\n - EFI core;\n - Qualcomm firmware drivers;\n - GPIO subsystem;\n - GPU drivers;\n - HID subsystem;\n - I2C subsystem;\n - I3C subsystem;\n - IIO ADC drivers;\n - IIO subsystem;\n - InfiniBand drivers;\n - Input Device core drivers;\n - IOMMU subsystem;\n - IRQ chip drivers;\n - Mailbox framework;\n - Multiple devices driver;\n - Media drivers;\n - Multifunction device drivers;\n - MMC subsystem;\n - MTD block device drivers;\n - Ethernet bonding driver;\n - Network drivers;\n - Mellanox network drivers;\n - STMicroelectronics network drivers;\n - NTB driver;\n - Virtio pmem driver;\n - NVME drivers;\n - Parport drivers;\n - PCI subsystem;\n - Alibaba DDR Sub-System Driveway PMU driver;\n - PHY drivers;\n - Pin controllers subsystem;\n - x86 platform drivers;\n - i.MX PM domains;\n - Powercap sysfs driver;\n - Voltage and Current Regulator drivers;\n - Remote Processor subsystem;\n - StarFive reset controller drivers;\n - Real Time Clock drivers;\n - SCSI subsystem;\n - SuperH / SH-Mobile drivers;\n - QCOM SoC drivers;\n - Xilinx SoC drivers;\n - SPI subsystem;\n - Direct Digital Synthesis drivers;\n - Media staging drivers;\n - TCM subsystem;\n - Thermal drivers;\n - Thunderbolt and USB4 drivers;\n - TTY drivers;\n - UFS subsystem;\n - USB Device Class drivers;\n - DesignWare USB3 driver;\n - USB Gadget drivers;\n - USB Host Controller drivers;\n - USB Dual Role (OTG-ready) Controller drivers;\n - USB Serial drivers;\n - USB Type-C support driver;\n - USB Type-C Port Controller Manager driver;\n - TI TPS6598x USB Power Delivery controller driver;\n - USB Type-C Connector System Software Interface driver;\n - vDPA drivers;\n - VFIO drivers;\n - Virtio Host (VHOST) subsystem;\n - Framebuffer layer;\n - Virtio drivers;\n - Xen hypervisor drivers;\n - AFS file system;\n - BTRFS file system;\n - File systems infrastructure;\n - Ceph distributed file system;\n - EROFS file system;\n - Ext4 file system;\n - F2FS file system;\n - GFS2 file system;\n - JFS file system;\n - Network file systems library;\n - Network file system (NFS) client;\n - Network file system (NFS) server daemon;\n - NILFS2 file system;\n - File system notification infrastructure;\n - NTFS3 file system;\n - Proc file system;\n - SMB network file system;\n - UBI file system;\n - BPF subsystem;\n - Network file system (NFS) superblock;\n - Virtio network driver;\n - Bluetooth subsystem;\n - Network traffic control;\n - Network sockets;\n - TCP network protocol;\n - Tracing infrastructure;\n - User-space API (UAPI);\n - Kernel init infrastructure;\n - io_uring subsystem;\n - IPC subsystem;\n - Perf events;\n - Kernel fork() syscall;\n - Kernel thread helper (kthread);\n - Padata parallel execution mechanism;\n - RCU subsystem;\n - Arbitrary resource management;\n - Scheduler infrastructure;\n - Signal handling mechanism;\n - Static call mechanism;\n - Task handling mechanism;\n - Timer substystem drivers;\n - Maple Tree data structure library;\n - Memory management;\n - 9P file system network protocol;\n - Ethernet bridge;\n - CAN network layer;\n - Networking core;\n - DCCP (Datagram Congestion Control Protocol);\n - Distributed Switch Architecture;\n - IPv4 networking;\n - IPv6 networking;\n - IUCV driver;\n - L2TP protocol;\n - MAC80211 subsystem;\n - IEEE 802.15.4 subsystem;\n - Multipath TCP;\n - NCSI (Network Controller Sideband Interface) driver;\n - Netfilter;\n - Netlink;\n - RxRPC session sockets;\n - SCTP protocol;\n - SMC sockets;\n - Sun RPC protocol;\n - TIPC protocol;\n - Unix domain sockets;\n - VMware vSockets driver;\n - Wireless networking;\n - eXpress Data Path;\n - XFRM subsystem;\n - AppArmor security module;\n - Integrity Measurement Architecture(IMA) framework;\n - Key management;\n - ALSA framework;\n - FireWire sound drivers;\n - AudioScience HPI driver;\n - HD-audio driver;\n - SoC Audio for Freescale CPUs drivers;\n - Intel ASoC drivers;\n - MediaTek ASoC drivers;\n - QCOM ASoC drivers;\n - SoC audio core drivers;\n - STMicroelectronics SoC drivers;\n - USB sound devices;\n - KVM core;\n(CVE-2024-50030, CVE-2024-47689, CVE-2024-50088, CVE-2024-50154,\nCVE-2024-49994, CVE-2024-50243, CVE-2024-50284, CVE-2024-50207,\nCVE-2024-53200, CVE-2024-53155, CVE-2024-50179, CVE-2024-50171,\nCVE-2024-53167, CVE-2024-49885, CVE-2024-49869, CVE-2024-49934,\nCVE-2024-53089, CVE-2024-50196, CVE-2024-53090, CVE-2024-47675,\nCVE-2024-47690, CVE-2024-56674, CVE-2024-50082, CVE-2024-47742,\nCVE-2024-53220, CVE-2024-50172, CVE-2024-50009, CVE-2024-49881,\nCVE-2024-50249, CVE-2024-47752, CVE-2024-56707, CVE-2024-53105,\nCVE-2024-53048, CVE-2024-50148, CVE-2024-50036, CVE-2024-53141,\nCVE-2024-50213, CVE-2024-49911, CVE-2024-50285, CVE-2024-56535,\nCVE-2024-49882, CVE-2024-50225, CVE-2024-50090, CVE-2024-53063,\nCVE-2024-56703, CVE-2024-47687, CVE-2024-53079, CVE-2024-47744,\nCVE-2024-50020, CVE-2024-53078, CVE-2024-53176, CVE-2024-53183,\nCVE-2024-50248, CVE-2024-50283, CVE-2024-49907, CVE-2024-50084,\nCVE-2024-56541, CVE-2024-49979, CVE-2024-53175, CVE-2024-49871,\nCVE-2024-47678, CVE-2024-47720, CVE-2024-53059, CVE-2024-56685,\nCVE-2024-56702, CVE-2024-50071, CVE-2024-56534, CVE-2024-56745,\nCVE-2024-53154, CVE-2024-47736, CVE-2024-49965, CVE-2024-47701,\nCVE-2024-50159, CVE-2024-50040, CVE-2024-50274, CVE-2024-49876,\nCVE-2024-49895, CVE-2024-50189, CVE-2024-56704, CVE-2024-47681,\nCVE-2024-53106, CVE-2024-56744, CVE-2024-53197, CVE-2024-50120,\nCVE-2024-50204, CVE-2024-50184, CVE-2024-53095, CVE-2024-50101,\nCVE-2024-53146, CVE-2024-50256, CVE-2024-53226, CVE-2024-47712,\nCVE-2024-50137, CVE-2024-53131, CVE-2024-49888, CVE-2024-50235,\nCVE-2024-50047, CVE-2024-50224, CVE-2024-50142, CVE-2024-50200,\nCVE-2024-53085, CVE-2024-49892, CVE-2024-50263, CVE-2024-53150,\nCVE-2024-53121, CVE-2024-49977, CVE-2024-50144, CVE-2024-50127,\nCVE-2024-53092, CVE-2024-50265, CVE-2024-56691, CVE-2024-53069,\nCVE-2024-49902, CVE-2024-47715, CVE-2024-56720, CVE-2024-53127,\nCVE-2024-53142, CVE-2024-49862, CVE-2024-49918, CVE-2024-56684,\nCVE-2024-50208, CVE-2024-53189, CVE-2024-50103, CVE-2024-56756,\nCVE-2024-50273, CVE-2024-56536, CVE-2024-53068, CVE-2024-49878,\nCVE-2024-47705, CVE-2024-53113, CVE-2024-50129, CVE-2024-49942,\nCVE-2024-50100, CVE-2024-49930, CVE-2024-50043, CVE-2024-53198,\nCVE-2024-49861, CVE-2024-50124, CVE-2024-50209, CVE-2024-53187,\nCVE-2024-49864, CVE-2024-56689, CVE-2024-50294, CVE-2024-47706,\nCVE-2024-50186, CVE-2024-53086, CVE-2024-49954, CVE-2024-56692,\nCVE-2024-47679, CVE-2024-53109, CVE-2024-50001, CVE-2024-49983,\nCVE-2024-56679, CVE-2024-50034, CVE-2024-50276, CVE-2024-56680,\nCVE-2024-49988, CVE-2024-53099, CVE-2024-50021, CVE-2024-50022,\nCVE-2024-50136, CVE-2024-53193, CVE-2024-50220, CVE-2024-49858,\nCVE-2024-50229, CVE-2024-50074, CVE-2024-50002, CVE-2024-53117,\nCVE-2024-50176, CVE-2024-50075, CVE-2024-50045, CVE-2024-49924,\nCVE-2024-47686, CVE-2024-50104, CVE-2024-47714, CVE-2024-50291,\nCVE-2024-49929, CVE-2024-53215, CVE-2024-50157, CVE-2024-50147,\nCVE-2024-49898, CVE-2024-50164, CVE-2024-47711, CVE-2024-53082,\nCVE-2024-50230, CVE-2024-50152, CVE-2024-53218, CVE-2024-53199,\nCVE-2024-50253, CVE-2024-47754, CVE-2024-49910, CVE-2024-53137,\nCVE-2024-50128, CVE-2024-50044, CVE-2024-47719, CVE-2024-53188,\nCVE-2024-53061, CVE-2024-49944, CVE-2024-50091, CVE-2024-49945,\nCVE-2024-50119, CVE-2024-50133, CVE-2024-50033, CVE-2024-53083,\nCVE-2024-50138, CVE-2024-49872, CVE-2024-50140, CVE-2024-56727,\nCVE-2024-50003, CVE-2024-50015, CVE-2024-50303, CVE-2024-50258,\nCVE-2024-49867, CVE-2024-50116, CVE-2024-47716, CVE-2024-50132,\nCVE-2024-50055, CVE-2024-49950, CVE-2024-50203, CVE-2024-47695,\nCVE-2024-50250, CVE-2024-50165, CVE-2024-50156, CVE-2024-56700,\nCVE-2024-49913, CVE-2024-50281, CVE-2024-53045, CVE-2024-49998,\nCVE-2024-53180, CVE-2024-50271, CVE-2024-50286, CVE-2024-49887,\nCVE-2024-53168, CVE-2024-47676, CVE-2024-47726, CVE-2024-47732,\nCVE-2024-47704, CVE-2024-49980, CVE-2024-49931, CVE-2024-53229,\nCVE-2024-50141, CVE-2024-50282, CVE-2024-50233, CVE-2024-56725,\nCVE-2024-50239, CVE-2024-50299, CVE-2024-50218, CVE-2024-53072,\nCVE-2024-49903, CVE-2024-50163, CVE-2024-53100, CVE-2024-50146,\nCVE-2024-49859, CVE-2024-50227, CVE-2024-50188, CVE-2024-56739,\nCVE-2024-53217, CVE-2024-53118, CVE-2024-49946, CVE-2024-53212,\nCVE-2024-49926, CVE-2024-53177, CVE-2024-56741, CVE-2024-53234,\nCVE-2024-49932, CVE-2024-50095, CVE-2024-50190, CVE-2024-49995,\nCVE-2024-49976, CVE-2024-49906, CVE-2024-49996, CVE-2024-53049,\nCVE-2024-47751, CVE-2024-56677, CVE-2024-56724, CVE-2024-47746,\nCVE-2024-50245, CVE-2024-53236, CVE-2024-53191, CVE-2024-50112,\nCVE-2024-49937, CVE-2024-50234, CVE-2024-50067, CVE-2024-53112,\nCVE-2024-50017, CVE-2024-50008, CVE-2024-50194, CVE-2024-50076,\nCVE-2024-47697, CVE-2024-56693, CVE-2024-50280, CVE-2024-50182,\nCVE-2024-53237, CVE-2024-50011, CVE-2024-49912, CVE-2024-50217,\nCVE-2024-56532, CVE-2024-53221, CVE-2024-50206, CVE-2024-47700,\nCVE-2024-56537, CVE-2024-49959, CVE-2024-56681, CVE-2024-49936,\nCVE-2024-49900, CVE-2024-53077, CVE-2024-56705, CVE-2024-53125,\nCVE-2024-49968, CVE-2024-49969, CVE-2024-56545, CVE-2024-50106,\nCVE-2024-53160, CVE-2024-50013, CVE-2024-49880, CVE-2024-53228,\nCVE-2024-50177, CVE-2024-47684, CVE-2024-47739, CVE-2024-50029,\nCVE-2024-53194, CVE-2024-50237, CVE-2024-50035, CVE-2024-49941,\nCVE-2024-49947, CVE-2024-50289, CVE-2024-49949, CVE-2024-50023,\nCVE-2024-50139, CVE-2024-49886, CVE-2024-50026, CVE-2024-56748,\nCVE-2024-53080, CVE-2024-56754, CVE-2024-49999, CVE-2024-49963,\nCVE-2024-49855, CVE-2024-50252, CVE-2024-49975, CVE-2024-50107,\nCVE-2024-56749, CVE-2024-49928, CVE-2024-49865, CVE-2024-50125,\nCVE-2024-49899, CVE-2024-47750, CVE-2024-53152, CVE-2024-50081,\nCVE-2024-49891, CVE-2024-49927, CVE-2024-49852, CVE-2024-50085,\nCVE-2024-50185, CVE-2024-50205, CVE-2024-49896, CVE-2024-50278,\nCVE-2024-49866, CVE-2024-53190, CVE-2024-50251, CVE-2024-50269,\nCVE-2024-49889, CVE-2024-50037, CVE-2024-53144, CVE-2024-53138,\nCVE-2024-50087, CVE-2024-56678, CVE-2024-53087, CVE-2024-50180,\nCVE-2024-49940, CVE-2024-50019, CVE-2024-53149, CVE-2024-50122,\nCVE-2024-50038, CVE-2024-53156, CVE-2024-49943, CVE-2024-50113,\nCVE-2024-47721, CVE-2024-53076, CVE-2024-50115, CVE-2024-50178,\nCVE-2024-50268, CVE-2024-50279, CVE-2024-53134, CVE-2024-50199,\nCVE-2024-49989, CVE-2024-47671, CVE-2024-49909, CVE-2024-53173,\nCVE-2024-53053, CVE-2024-53088, CVE-2024-50078, CVE-2024-50105,\nCVE-2024-50223, CVE-2024-50126, CVE-2024-47680, CVE-2024-47724,\nCVE-2024-53047, CVE-2024-50060, CVE-2024-53056, CVE-2024-49987,\nCVE-2024-49879, CVE-2024-53128, CVE-2024-53123, CVE-2024-49981,\nCVE-2024-50277, CVE-2024-50166, CVE-2024-53067, CVE-2024-49964,\nCVE-2024-56728, CVE-2024-49853, CVE-2024-53064, CVE-2024-56531,\nCVE-2024-53213, CVE-2024-50246, CVE-2024-50192, CVE-2024-53184,\nCVE-2024-56697, CVE-2024-47710, CVE-2024-53052, CVE-2024-47718,\nCVE-2024-49938, CVE-2024-49893, CVE-2024-53133, CVE-2024-50096,\nCVE-2024-53129, CVE-2024-49951, CVE-2024-53181, CVE-2024-50059,\nCVE-2024-50193, CVE-2024-53120, CVE-2024-50114, CVE-2024-49962,\nCVE-2024-49921, CVE-2024-50298, CVE-2024-50255, CVE-2024-53219,\nCVE-2024-49905, CVE-2024-50211, CVE-2024-49860, CVE-2024-47727,\nCVE-2024-50028, CVE-2024-47723, CVE-2024-53081, CVE-2024-56683,\nCVE-2024-49897, CVE-2024-50065, CVE-2024-56708, CVE-2024-50151,\nCVE-2023-52917, CVE-2024-56538, CVE-2024-47691, CVE-2024-53196,\nCVE-2024-50150, CVE-2024-50069, CVE-2024-50301, CVE-2024-50131,\nCVE-2024-53110, CVE-2024-56701, CVE-2024-53115, CVE-2024-53062,\nCVE-2024-50058, CVE-2024-53148, CVE-2024-53147, CVE-2024-50226,\nCVE-2024-56540, CVE-2024-53124, CVE-2024-50170, CVE-2024-50266,\nCVE-2024-50296, CVE-2024-49953, CVE-2024-47692, CVE-2024-49916,\nCVE-2024-53239, CVE-2024-50173, CVE-2024-49868, CVE-2024-47677,\nCVE-2024-49972, CVE-2024-50130, CVE-2024-56698, CVE-2024-50231,\nCVE-2024-50272, CVE-2024-53153, CVE-2024-50158, CVE-2024-53046,\nCVE-2024-49908, CVE-2024-47709, CVE-2024-53058, CVE-2024-50006,\nCVE-2024-49948, CVE-2024-47685, CVE-2024-47693, CVE-2024-50260,\nCVE-2024-50079, CVE-2024-50149, CVE-2024-53151, CVE-2024-47757,\nCVE-2024-49917, CVE-2024-50288, CVE-2024-50117, CVE-2024-50039,\nCVE-2024-56690, CVE-2024-50293, CVE-2024-50145, CVE-2024-53166,\nCVE-2024-47713, CVE-2024-53158, CVE-2024-50068, CVE-2024-53074,\nCVE-2024-49914, CVE-2024-49870, CVE-2024-50031, CVE-2024-47735,\nCVE-2024-50007, CVE-2024-49915, CVE-2024-47699, CVE-2024-50244,\nCVE-2024-50216, CVE-2024-53114, CVE-2024-53043, CVE-2024-47688,\nCVE-2024-47734, CVE-2024-53230, CVE-2024-53122, CVE-2024-50123,\nCVE-2024-53116, CVE-2024-56726, CVE-2024-56747, CVE-2024-56548,\nCVE-2024-50174, CVE-2024-53042, CVE-2024-53135, CVE-2024-50080,\nCVE-2024-49997, CVE-2024-49974, CVE-2024-53145, CVE-2024-53075,\nCVE-2024-47730, CVE-2024-50304, CVE-2024-50161, CVE-2024-49883,\nCVE-2024-53111, CVE-2024-53233, CVE-2024-47698, CVE-2024-50012,\nCVE-2024-50240, CVE-2024-53163, CVE-2024-53071, CVE-2024-50168,\nCVE-2024-47740, CVE-2024-50275, CVE-2024-49961, CVE-2024-50183,\nCVE-2024-53203, CVE-2024-47738, CVE-2024-49856, CVE-2024-50014,\nCVE-2024-50191, CVE-2024-46869, CVE-2024-56721, CVE-2024-50056,\nCVE-2024-53210, CVE-2024-49978, CVE-2024-53161, CVE-2024-50155,\nCVE-2024-50270, CVE-2024-50169, CVE-2024-49952, CVE-2024-50236,\nCVE-2024-49863, CVE-2024-49857, CVE-2024-53140, CVE-2024-53107,\nCVE-2024-50247, CVE-2024-53084, CVE-2024-50077, CVE-2024-50121,\nCVE-2024-53091, CVE-2024-49925, CVE-2024-47745, CVE-2024-50086,\nCVE-2024-53101, CVE-2024-56729, CVE-2024-56751, CVE-2024-50016,\nCVE-2024-49901, CVE-2024-47694, CVE-2024-53098, CVE-2024-53232,\nCVE-2024-50108, CVE-2024-50197, CVE-2024-50242, CVE-2024-50222,\nCVE-2024-53132, CVE-2024-50212, CVE-2024-49933, CVE-2024-53169,\nCVE-2024-49957, CVE-2024-56533, CVE-2024-47708, CVE-2024-50267,\nCVE-2024-56723, CVE-2024-50110, CVE-2024-50064, CVE-2024-56722,\nCVE-2024-53130, CVE-2024-53208, CVE-2024-50102, CVE-2024-50153,\nCVE-2024-49939, CVE-2024-53094, CVE-2024-50262, CVE-2024-49850,\nCVE-2024-53195, CVE-2024-53170, CVE-2024-50093, CVE-2024-53223,\nCVE-2024-53093, CVE-2024-56699, CVE-2024-50070, CVE-2024-49992,\nCVE-2024-50111, CVE-2024-47728, CVE-2024-53202, CVE-2024-47741,\nCVE-2024-49920, CVE-2024-56694, CVE-2024-53126, CVE-2024-49851,\nCVE-2024-50099, CVE-2024-50302, CVE-2024-50214, CVE-2024-49973,\nCVE-2024-50024, CVE-2024-50162, CVE-2024-53214, CVE-2024-50073,\nCVE-2024-50061, CVE-2024-56549, CVE-2024-56688, CVE-2024-49960,\nCVE-2024-56543, CVE-2024-53178, CVE-2024-50027, CVE-2024-50295,\nCVE-2024-53104, CVE-2024-53065, CVE-2024-47747, CVE-2024-49991,\nCVE-2024-50202, CVE-2024-49935, CVE-2024-50062, CVE-2024-50094,\nCVE-2024-56544, CVE-2024-50010, CVE-2024-49971, CVE-2024-50083,\nCVE-2024-56687, CVE-2024-47753, CVE-2024-50297, CVE-2024-47733,\nCVE-2024-50135, CVE-2024-50066, CVE-2024-50118, CVE-2024-56746,\nCVE-2024-47682, CVE-2024-53165, CVE-2024-50025, CVE-2024-49875,\nCVE-2024-47717, CVE-2024-49894, CVE-2024-50198, CVE-2024-50167,\nCVE-2024-49958, CVE-2024-49966, CVE-2024-50254, CVE-2024-49904,\nCVE-2024-50041, CVE-2024-50005, CVE-2024-53066, CVE-2024-50000,\nCVE-2024-50215, CVE-2024-47748, CVE-2024-56742, CVE-2024-50259,\nCVE-2024-50092, CVE-2024-47737, CVE-2024-53238, CVE-2024-50300,\nCVE-2024-53192, CVE-2024-47696, CVE-2024-50134, CVE-2024-50201,\nCVE-2024-50181, CVE-2024-49873, CVE-2024-50187, CVE-2024-53171,\nCVE-2024-50160, CVE-2024-49923, CVE-2024-50063, CVE-2024-53174,\nCVE-2024-50143, CVE-2024-49982, CVE-2024-56546, CVE-2024-50109,\nCVE-2024-53119, CVE-2024-47707, CVE-2024-56696, CVE-2024-53108,\nCVE-2024-47731, CVE-2024-50261, CVE-2024-50042, CVE-2024-49884,\nCVE-2024-53162, CVE-2024-56755, CVE-2024-49919, CVE-2024-53216,\nCVE-2024-50287, CVE-2024-53143, CVE-2024-50257, CVE-2024-49890,\nCVE-2024-53172, CVE-2024-53209, CVE-2024-49956, CVE-2024-50238,\nCVE-2024-49955, CVE-2024-50046, CVE-2024-50098, CVE-2024-50232,\nCVE-2024-50292, CVE-2024-56752, CVE-2024-50195, CVE-2024-47743,\nCVE-2024-53044, CVE-2024-50049, CVE-2024-49986, CVE-2024-53055,\nCVE-2024-56539, CVE-2024-50048, CVE-2024-49985, CVE-2024-53227,\nCVE-2024-49970, CVE-2024-47702, CVE-2024-49874, CVE-2024-47703,\nCVE-2024-53139, CVE-2024-50072, CVE-2024-53224, CVE-2024-49877,\nCVE-2024-49922, CVE-2024-50290, CVE-2024-47756, CVE-2024-50221,\nCVE-2024-50057, CVE-2022-49034, CVE-2024-53157, CVE-2024-47749,\nCVE-2024-53231)\n",
"id": "USN-7277-1",
"modified": "2025-02-19T16:34:05.394270Z",
"published": "2025-02-19T16:34:05.394270Z",
"references": [
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-7277-1"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2022-49034"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-46869"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47671"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47675"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47676"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47677"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47678"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47679"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47680"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47681"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47682"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47684"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47685"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47686"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47687"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47688"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47689"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47690"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47691"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47692"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47693"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47694"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47695"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47696"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47697"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47698"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47699"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47700"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47701"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47702"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47703"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47704"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47705"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47706"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47707"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47708"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47709"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47710"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47711"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47712"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47713"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47714"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47715"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47716"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47717"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47718"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47719"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47720"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47721"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47723"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47724"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47726"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47727"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47728"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47730"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47731"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47732"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47733"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47734"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47735"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47736"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47737"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47738"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47739"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47740"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47741"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47742"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47743"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47744"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47745"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47746"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47747"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47748"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47749"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47750"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47751"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47752"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47753"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47754"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47756"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47757"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49850"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49851"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49852"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49853"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49855"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49856"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49857"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49858"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49859"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49860"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49861"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49862"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49863"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49864"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49865"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49866"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49867"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49868"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49869"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49870"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49871"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49872"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49873"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49874"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49875"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49876"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49877"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49878"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49879"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49880"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49881"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49882"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49883"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49884"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49885"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49886"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49887"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49888"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49889"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49890"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49891"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49892"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49893"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49894"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49895"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49896"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49897"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49898"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49899"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49900"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49901"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49902"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49903"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49904"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49905"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49906"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49907"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49908"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49909"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49910"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49911"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49912"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49913"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49914"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49915"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49916"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49917"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49918"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49919"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49920"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49921"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49922"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49923"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49924"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49925"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49926"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49927"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49928"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49929"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49930"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49931"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49932"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49933"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49934"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49935"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49936"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49937"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49938"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49939"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49940"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49941"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49942"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49943"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49944"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49945"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49946"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49947"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49948"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49949"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49950"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49951"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49952"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49953"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49954"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49955"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49956"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49957"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49958"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49959"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49960"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49961"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49962"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49963"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49964"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49965"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49966"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49968"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49969"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49970"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49971"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49972"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49973"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49974"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49975"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49976"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49977"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49978"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49979"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49980"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49981"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49982"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49983"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49985"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49986"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49987"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49988"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49989"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49991"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49992"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49994"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49995"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49996"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49997"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49998"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49999"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50000"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50001"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50002"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50003"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50005"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50006"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50007"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50008"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50009"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50010"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50011"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50012"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50013"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50014"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50015"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50017"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50019"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50020"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50021"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50022"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50023"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50024"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50025"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50026"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50027"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50028"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50029"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50030"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50031"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50033"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50034"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50035"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50036"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50037"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50038"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50039"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50040"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50041"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50042"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50043"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50044"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50045"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50046"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50047"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50048"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50049"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50055"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50056"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50057"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50058"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50059"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50060"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50061"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50062"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50063"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50064"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50065"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50066"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50067"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50068"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50069"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50070"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50071"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50072"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50073"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50074"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50075"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50076"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50077"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50078"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50079"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50080"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50081"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50082"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50083"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50084"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50085"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50086"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50087"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50088"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50090"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50091"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50092"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50093"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50094"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50095"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50096"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50098"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50099"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50100"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50101"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50102"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50103"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50104"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50105"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50106"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50107"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50108"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50109"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50110"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50111"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50112"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50113"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50114"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50115"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50116"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50117"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50118"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50119"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50120"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50121"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50122"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50123"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50124"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50125"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50126"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50127"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50128"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50129"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50130"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50131"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50132"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50133"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50134"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50135"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50136"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50137"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50138"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50139"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50140"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50141"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50142"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50143"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50144"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50145"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50146"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50147"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50148"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50149"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50150"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50151"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50152"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50153"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50154"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50155"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50156"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50157"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50158"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50159"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50160"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50161"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50162"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50163"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50164"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50165"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50166"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50167"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50168"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50169"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50170"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50171"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50172"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50173"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50174"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50176"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50177"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50178"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50179"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50180"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50182"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50183"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50184"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50185"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50186"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50187"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50188"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50189"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50190"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50191"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50192"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50193"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50194"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50195"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50196"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50197"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50198"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50199"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50200"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50201"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50202"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50203"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50204"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50205"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50206"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50207"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50208"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50209"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50211"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50212"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50213"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50214"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50215"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50216"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50217"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50218"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50220"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50221"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50222"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50223"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50224"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50225"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50226"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50227"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50229"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50230"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50231"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50232"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50233"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50234"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50235"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50236"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50237"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50238"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50239"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50240"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50242"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50243"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50244"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50245"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50246"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50247"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50248"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50249"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50250"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50251"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50252"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50253"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50254"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50255"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50256"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50257"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50258"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50259"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50260"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50261"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50262"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50263"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50265"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50266"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50267"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50268"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50269"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50270"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50271"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50272"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50273"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50274"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50275"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50276"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50277"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50278"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50279"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50280"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50281"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50282"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50283"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50284"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50285"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50286"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50287"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50288"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50289"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50290"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50291"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50292"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50293"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50294"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50295"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50296"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50297"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50298"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50299"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50300"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50301"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50302"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50303"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50304"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53042"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53043"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53044"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53045"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53046"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53047"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53048"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53049"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53052"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53053"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53055"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53056"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53058"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53059"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53061"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53062"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53063"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53064"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53065"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53066"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53067"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53068"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53069"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53071"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53072"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53074"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53075"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53076"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53077"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53078"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53079"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53080"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53081"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53082"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53083"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53084"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53085"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53086"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53087"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53088"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53089"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53090"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53091"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53092"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53093"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53094"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53095"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53098"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53099"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53100"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53101"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53104"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53105"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53106"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53107"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53108"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53109"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53110"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53111"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53112"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53113"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53114"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53115"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53116"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53117"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53118"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53119"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53120"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53121"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53122"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53123"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53124"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53125"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53126"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53127"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53128"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53129"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53130"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53131"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53132"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53133"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53134"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53135"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53137"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53138"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53139"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53140"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53141"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53142"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53143"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53144"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53145"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53146"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53147"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53148"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53149"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53150"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53151"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53152"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53153"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53154"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53155"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53156"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53157"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53158"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53160"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53161"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53162"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53163"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53165"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53166"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53167"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53168"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53169"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53170"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53171"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53172"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53173"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53174"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53175"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53176"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53177"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53178"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53180"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53181"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53183"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53184"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53187"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53188"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53189"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53190"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53191"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53192"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53193"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53194"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53195"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53196"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53197"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53198"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53199"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53200"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53202"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53203"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53208"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53209"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53210"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53212"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53213"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53214"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53215"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53216"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53217"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53218"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53219"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53220"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53221"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53223"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53224"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53226"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53227"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53228"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53229"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53230"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53231"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53232"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53233"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53234"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53236"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53237"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53238"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53239"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56531"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56532"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56533"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56534"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56535"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56536"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56537"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56538"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56539"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56540"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56541"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56543"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56544"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56545"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56546"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56548"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56549"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56674"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56677"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56678"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56679"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56680"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56681"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56683"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56684"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56685"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56687"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56688"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56689"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56690"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56691"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56692"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56693"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56694"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56696"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56697"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56698"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56699"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56700"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56701"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56702"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56703"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56704"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56705"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56707"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56708"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56720"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56721"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56722"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56723"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56724"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56725"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56726"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56727"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56728"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56729"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56739"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56742"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56744"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56745"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56746"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56747"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56748"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56749"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56751"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56752"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56754"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56755"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56756"
}
],
"related": [
"CVE-2022-49034",
"UBUNTU-CVE-2022-49034",
"CVE-2024-46869",
"UBUNTU-CVE-2024-46869",
"CVE-2024-47671",
"UBUNTU-CVE-2024-47671",
"CVE-2024-47675",
"UBUNTU-CVE-2024-47675",
"CVE-2024-47676",
"UBUNTU-CVE-2024-47676",
"CVE-2024-47677",
"UBUNTU-CVE-2024-47677",
"CVE-2024-47678",
"UBUNTU-CVE-2024-47678",
"CVE-2024-47679",
"UBUNTU-CVE-2024-47679",
"CVE-2024-47680",
"UBUNTU-CVE-2024-47680",
"CVE-2024-47681",
"UBUNTU-CVE-2024-47681",
"CVE-2024-47682",
"UBUNTU-CVE-2024-47682",
"CVE-2024-47684",
"UBUNTU-CVE-2024-47684",
"CVE-2024-47685",
"UBUNTU-CVE-2024-47685",
"CVE-2024-47686",
"UBUNTU-CVE-2024-47686",
"CVE-2024-47687",
"UBUNTU-CVE-2024-47687",
"CVE-2024-47688",
"UBUNTU-CVE-2024-47688",
"CVE-2024-47689",
"UBUNTU-CVE-2024-47689",
"CVE-2024-47690",
"UBUNTU-CVE-2024-47690",
"CVE-2024-47691",
"UBUNTU-CVE-2024-47691",
"CVE-2024-47692",
"UBUNTU-CVE-2024-47692",
"CVE-2024-47693",
"UBUNTU-CVE-2024-47693",
"CVE-2024-47694",
"UBUNTU-CVE-2024-47694",
"CVE-2024-47695",
"UBUNTU-CVE-2024-47695",
"CVE-2024-47696",
"UBUNTU-CVE-2024-47696",
"CVE-2024-47697",
"UBUNTU-CVE-2024-47697",
"CVE-2024-47698",
"UBUNTU-CVE-2024-47698",
"CVE-2024-47699",
"UBUNTU-CVE-2024-47699",
"CVE-2024-47700",
"UBUNTU-CVE-2024-47700",
"CVE-2024-47701",
"UBUNTU-CVE-2024-47701",
"CVE-2024-47702",
"UBUNTU-CVE-2024-47702",
"CVE-2024-47703",
"UBUNTU-CVE-2024-47703",
"CVE-2024-47704",
"UBUNTU-CVE-2024-47704",
"CVE-2024-47705",
"UBUNTU-CVE-2024-47705",
"CVE-2024-47706",
"UBUNTU-CVE-2024-47706",
"CVE-2024-47707",
"UBUNTU-CVE-2024-47707",
"CVE-2024-47708",
"UBUNTU-CVE-2024-47708",
"CVE-2024-47709",
"UBUNTU-CVE-2024-47709",
"CVE-2024-47710",
"UBUNTU-CVE-2024-47710",
"CVE-2024-47711",
"UBUNTU-CVE-2024-47711",
"CVE-2024-47712",
"UBUNTU-CVE-2024-47712",
"CVE-2024-47713",
"UBUNTU-CVE-2024-47713",
"CVE-2024-47714",
"UBUNTU-CVE-2024-47714",
"CVE-2024-47715",
"UBUNTU-CVE-2024-47715",
"CVE-2024-47716",
"UBUNTU-CVE-2024-47716",
"CVE-2024-47717",
"UBUNTU-CVE-2024-47717",
"CVE-2024-47718",
"UBUNTU-CVE-2024-47718",
"CVE-2024-47719",
"UBUNTU-CVE-2024-47719",
"CVE-2024-47720",
"UBUNTU-CVE-2024-47720",
"CVE-2024-47721",
"UBUNTU-CVE-2024-47721",
"CVE-2024-47723",
"UBUNTU-CVE-2024-47723",
"CVE-2024-47724",
"UBUNTU-CVE-2024-47724",
"CVE-2024-47726",
"UBUNTU-CVE-2024-47726",
"CVE-2024-47727",
"UBUNTU-CVE-2024-47727",
"CVE-2024-47728",
"UBUNTU-CVE-2024-47728",
"CVE-2024-47730",
"UBUNTU-CVE-2024-47730",
"CVE-2024-47731",
"UBUNTU-CVE-2024-47731",
"CVE-2024-47732",
"UBUNTU-CVE-2024-47732",
"CVE-2024-47733",
"UBUNTU-CVE-2024-47733",
"CVE-2024-47734",
"UBUNTU-CVE-2024-47734",
"CVE-2024-47735",
"UBUNTU-CVE-2024-47735",
"CVE-2024-47736",
"UBUNTU-CVE-2024-47736",
"CVE-2024-47737",
"UBUNTU-CVE-2024-47737",
"CVE-2024-47738",
"UBUNTU-CVE-2024-47738",
"CVE-2024-47739",
"UBUNTU-CVE-2024-47739",
"CVE-2024-47740",
"UBUNTU-CVE-2024-47740",
"CVE-2024-47741",
"UBUNTU-CVE-2024-47741",
"CVE-2024-47742",
"UBUNTU-CVE-2024-47742",
"CVE-2024-47743",
"UBUNTU-CVE-2024-47743",
"CVE-2024-47744",
"UBUNTU-CVE-2024-47744",
"CVE-2024-47745",
"UBUNTU-CVE-2024-47745",
"CVE-2024-47746",
"UBUNTU-CVE-2024-47746",
"CVE-2024-47747",
"UBUNTU-CVE-2024-47747",
"CVE-2024-47748",
"UBUNTU-CVE-2024-47748",
"CVE-2024-47749",
"UBUNTU-CVE-2024-47749",
"CVE-2024-47750",
"UBUNTU-CVE-2024-47750",
"CVE-2024-47751",
"UBUNTU-CVE-2024-47751",
"CVE-2024-47752",
"UBUNTU-CVE-2024-47752",
"CVE-2024-47753",
"UBUNTU-CVE-2024-47753",
"CVE-2024-47754",
"UBUNTU-CVE-2024-47754",
"CVE-2024-47756",
"UBUNTU-CVE-2024-47756",
"CVE-2024-47757",
"UBUNTU-CVE-2024-47757",
"CVE-2024-49850",
"UBUNTU-CVE-2024-49850",
"CVE-2024-49851",
"UBUNTU-CVE-2024-49851",
"CVE-2024-49852",
"UBUNTU-CVE-2024-49852",
"CVE-2024-49853",
"UBUNTU-CVE-2024-49853",
"CVE-2024-49855",
"UBUNTU-CVE-2024-49855",
"CVE-2024-49856",
"UBUNTU-CVE-2024-49856",
"CVE-2024-49857",
"UBUNTU-CVE-2024-49857",
"CVE-2024-49858",
"UBUNTU-CVE-2024-49858",
"CVE-2024-49859",
"UBUNTU-CVE-2024-49859",
"CVE-2024-49860",
"UBUNTU-CVE-2024-49860",
"CVE-2024-49861",
"UBUNTU-CVE-2024-49861",
"CVE-2024-49862",
"UBUNTU-CVE-2024-49862",
"CVE-2024-49863",
"UBUNTU-CVE-2024-49863",
"CVE-2024-49864",
"UBUNTU-CVE-2024-49864",
"CVE-2024-49865",
"UBUNTU-CVE-2024-49865",
"CVE-2024-49866",
"UBUNTU-CVE-2024-49866",
"CVE-2024-49867",
"UBUNTU-CVE-2024-49867",
"CVE-2024-49868",
"UBUNTU-CVE-2024-49868",
"CVE-2024-49869",
"UBUNTU-CVE-2024-49869",
"CVE-2024-49870",
"UBUNTU-CVE-2024-49870",
"CVE-2024-49871",
"UBUNTU-CVE-2024-49871",
"CVE-2024-49872",
"UBUNTU-CVE-2024-49872",
"CVE-2024-49873",
"UBUNTU-CVE-2024-49873",
"CVE-2024-49874",
"UBUNTU-CVE-2024-49874",
"CVE-2024-49875",
"UBUNTU-CVE-2024-49875",
"CVE-2024-49876",
"UBUNTU-CVE-2024-49876",
"CVE-2024-49877",
"UBUNTU-CVE-2024-49877",
"CVE-2024-49878",
"UBUNTU-CVE-2024-49878",
"CVE-2024-49879",
"UBUNTU-CVE-2024-49879",
"CVE-2024-49880",
"UBUNTU-CVE-2024-49880",
"CVE-2024-49881",
"UBUNTU-CVE-2024-49881",
"CVE-2024-49882",
"UBUNTU-CVE-2024-49882",
"CVE-2024-49883",
"UBUNTU-CVE-2024-49883",
"CVE-2024-49884",
"UBUNTU-CVE-2024-49884",
"CVE-2024-49885",
"UBUNTU-CVE-2024-49885",
"CVE-2024-49886",
"UBUNTU-CVE-2024-49886",
"CVE-2024-49887",
"UBUNTU-CVE-2024-49887",
"CVE-2024-49888",
"UBUNTU-CVE-2024-49888",
"CVE-2024-49889",
"UBUNTU-CVE-2024-49889",
"CVE-2024-49890",
"UBUNTU-CVE-2024-49890",
"CVE-2024-49891",
"UBUNTU-CVE-2024-49891",
"CVE-2024-49892",
"UBUNTU-CVE-2024-49892",
"CVE-2024-49893",
"UBUNTU-CVE-2024-49893",
"CVE-2024-49894",
"UBUNTU-CVE-2024-49894",
"CVE-2024-49895",
"UBUNTU-CVE-2024-49895",
"CVE-2024-49896",
"UBUNTU-CVE-2024-49896",
"CVE-2024-49897",
"UBUNTU-CVE-2024-49897",
"CVE-2024-49898",
"UBUNTU-CVE-2024-49898",
"CVE-2024-49899",
"UBUNTU-CVE-2024-49899",
"CVE-2024-49900",
"UBUNTU-CVE-2024-49900",
"CVE-2024-49901",
"UBUNTU-CVE-2024-49901",
"CVE-2024-49902",
"UBUNTU-CVE-2024-49902",
"CVE-2024-49903",
"UBUNTU-CVE-2024-49903",
"CVE-2024-49904",
"UBUNTU-CVE-2024-49904",
"CVE-2024-49905",
"UBUNTU-CVE-2024-49905",
"CVE-2024-49906",
"UBUNTU-CVE-2024-49906",
"CVE-2024-49907",
"UBUNTU-CVE-2024-49907",
"CVE-2024-49908",
"UBUNTU-CVE-2024-49908",
"CVE-2024-49909",
"UBUNTU-CVE-2024-49909",
"CVE-2024-49910",
"UBUNTU-CVE-2024-49910",
"CVE-2024-49911",
"UBUNTU-CVE-2024-49911",
"CVE-2024-49912",
"UBUNTU-CVE-2024-49912",
"CVE-2024-49913",
"UBUNTU-CVE-2024-49913",
"CVE-2024-49914",
"UBUNTU-CVE-2024-49914",
"CVE-2024-49915",
"UBUNTU-CVE-2024-49915",
"CVE-2024-49916",
"UBUNTU-CVE-2024-49916",
"CVE-2024-49917",
"UBUNTU-CVE-2024-49917",
"CVE-2024-49918",
"UBUNTU-CVE-2024-49918",
"CVE-2024-49919",
"UBUNTU-CVE-2024-49919",
"CVE-2024-49920",
"UBUNTU-CVE-2024-49920",
"CVE-2024-49921",
"UBUNTU-CVE-2024-49921",
"CVE-2024-49922",
"UBUNTU-CVE-2024-49922",
"CVE-2024-49923",
"UBUNTU-CVE-2024-49923",
"CVE-2024-49924",
"UBUNTU-CVE-2024-49924",
"CVE-2024-49925",
"UBUNTU-CVE-2024-49925",
"CVE-2024-49926",
"UBUNTU-CVE-2024-49926",
"CVE-2024-49927",
"UBUNTU-CVE-2024-49927",
"CVE-2024-49928",
"UBUNTU-CVE-2024-49928",
"CVE-2024-49929",
"UBUNTU-CVE-2024-49929",
"CVE-2024-49930",
"UBUNTU-CVE-2024-49930",
"CVE-2024-49931",
"UBUNTU-CVE-2024-49931",
"CVE-2024-49932",
"UBUNTU-CVE-2024-49932",
"CVE-2024-49933",
"UBUNTU-CVE-2024-49933",
"CVE-2024-49934",
"UBUNTU-CVE-2024-49934",
"CVE-2024-49935",
"UBUNTU-CVE-2024-49935",
"CVE-2024-49936",
"UBUNTU-CVE-2024-49936",
"CVE-2024-49937",
"UBUNTU-CVE-2024-49937",
"CVE-2024-49938",
"UBUNTU-CVE-2024-49938",
"CVE-2024-49939",
"UBUNTU-CVE-2024-49939",
"CVE-2024-49940",
"UBUNTU-CVE-2024-49940",
"CVE-2024-49941",
"UBUNTU-CVE-2024-49941",
"CVE-2024-49942",
"UBUNTU-CVE-2024-49942",
"CVE-2024-49943",
"UBUNTU-CVE-2024-49943",
"CVE-2024-49944",
"UBUNTU-CVE-2024-49944",
"CVE-2024-49945",
"UBUNTU-CVE-2024-49945",
"CVE-2024-49946",
"UBUNTU-CVE-2024-49946",
"CVE-2024-49947",
"UBUNTU-CVE-2024-49947",
"CVE-2024-49948",
"UBUNTU-CVE-2024-49948",
"CVE-2024-49949",
"UBUNTU-CVE-2024-49949",
"CVE-2024-49950",
"UBUNTU-CVE-2024-49950",
"CVE-2024-49951",
"UBUNTU-CVE-2024-49951",
"CVE-2024-49952",
"UBUNTU-CVE-2024-49952",
"CVE-2024-49953",
"UBUNTU-CVE-2024-49953",
"CVE-2024-49954",
"UBUNTU-CVE-2024-49954",
"CVE-2024-49955",
"UBUNTU-CVE-2024-49955",
"CVE-2024-49956",
"UBUNTU-CVE-2024-49956",
"CVE-2024-49957",
"UBUNTU-CVE-2024-49957",
"CVE-2024-49958",
"UBUNTU-CVE-2024-49958",
"CVE-2024-49959",
"UBUNTU-CVE-2024-49959",
"CVE-2024-49960",
"UBUNTU-CVE-2024-49960",
"CVE-2024-49961",
"UBUNTU-CVE-2024-49961",
"CVE-2024-49962",
"UBUNTU-CVE-2024-49962",
"CVE-2024-49963",
"UBUNTU-CVE-2024-49963",
"CVE-2024-49964",
"UBUNTU-CVE-2024-49964",
"CVE-2024-49965",
"UBUNTU-CVE-2024-49965",
"CVE-2024-49966",
"UBUNTU-CVE-2024-49966",
"CVE-2024-49968",
"UBUNTU-CVE-2024-49968",
"CVE-2024-49969",
"UBUNTU-CVE-2024-49969",
"CVE-2024-49970",
"UBUNTU-CVE-2024-49970",
"CVE-2024-49971",
"UBUNTU-CVE-2024-49971",
"CVE-2024-49972",
"UBUNTU-CVE-2024-49972",
"CVE-2024-49973",
"UBUNTU-CVE-2024-49973",
"CVE-2024-49974",
"UBUNTU-CVE-2024-49974",
"CVE-2024-49975",
"UBUNTU-CVE-2024-49975",
"CVE-2024-49976",
"UBUNTU-CVE-2024-49976",
"CVE-2024-49977",
"UBUNTU-CVE-2024-49977",
"CVE-2024-49978",
"UBUNTU-CVE-2024-49978",
"CVE-2024-49979",
"UBUNTU-CVE-2024-49979",
"CVE-2024-49980",
"UBUNTU-CVE-2024-49980",
"CVE-2024-49981",
"UBUNTU-CVE-2024-49981",
"CVE-2024-49982",
"UBUNTU-CVE-2024-49982",
"CVE-2024-49983",
"UBUNTU-CVE-2024-49983",
"CVE-2024-49985",
"UBUNTU-CVE-2024-49985",
"CVE-2024-49986",
"UBUNTU-CVE-2024-49986",
"CVE-2024-49987",
"UBUNTU-CVE-2024-49987",
"CVE-2024-49988",
"UBUNTU-CVE-2024-49988",
"CVE-2024-49989",
"UBUNTU-CVE-2024-49989",
"CVE-2024-49991",
"UBUNTU-CVE-2024-49991",
"CVE-2024-49992",
"UBUNTU-CVE-2024-49992",
"CVE-2024-49994",
"UBUNTU-CVE-2024-49994",
"CVE-2024-49995",
"UBUNTU-CVE-2024-49995",
"CVE-2024-49996",
"UBUNTU-CVE-2024-49996",
"CVE-2024-49997",
"UBUNTU-CVE-2024-49997",
"CVE-2024-49998",
"UBUNTU-CVE-2024-49998",
"CVE-2024-49999",
"UBUNTU-CVE-2024-49999",
"CVE-2024-50000",
"UBUNTU-CVE-2024-50000",
"CVE-2024-50001",
"UBUNTU-CVE-2024-50001",
"CVE-2024-50002",
"UBUNTU-CVE-2024-50002",
"CVE-2024-50003",
"UBUNTU-CVE-2024-50003",
"CVE-2024-50005",
"UBUNTU-CVE-2024-50005",
"CVE-2024-50006",
"UBUNTU-CVE-2024-50006",
"CVE-2024-50007",
"UBUNTU-CVE-2024-50007",
"CVE-2024-50008",
"UBUNTU-CVE-2024-50008",
"CVE-2024-50009",
"UBUNTU-CVE-2024-50009",
"CVE-2024-50010",
"UBUNTU-CVE-2024-50010",
"CVE-2024-50011",
"UBUNTU-CVE-2024-50011",
"CVE-2024-50012",
"UBUNTU-CVE-2024-50012",
"CVE-2024-50013",
"UBUNTU-CVE-2024-50013",
"CVE-2024-50014",
"UBUNTU-CVE-2024-50014",
"CVE-2024-50015",
"UBUNTU-CVE-2024-50015",
"CVE-2024-50017",
"UBUNTU-CVE-2024-50017",
"CVE-2024-50019",
"UBUNTU-CVE-2024-50019",
"CVE-2024-50020",
"UBUNTU-CVE-2024-50020",
"CVE-2024-50021",
"UBUNTU-CVE-2024-50021",
"CVE-2024-50022",
"UBUNTU-CVE-2024-50022",
"CVE-2024-50023",
"UBUNTU-CVE-2024-50023",
"CVE-2024-50024",
"UBUNTU-CVE-2024-50024",
"CVE-2024-50025",
"UBUNTU-CVE-2024-50025",
"CVE-2024-50026",
"UBUNTU-CVE-2024-50026",
"CVE-2024-50027",
"UBUNTU-CVE-2024-50027",
"CVE-2024-50028",
"UBUNTU-CVE-2024-50028",
"CVE-2024-50029",
"UBUNTU-CVE-2024-50029",
"CVE-2024-50030",
"UBUNTU-CVE-2024-50030",
"CVE-2024-50031",
"UBUNTU-CVE-2024-50031",
"CVE-2024-50033",
"UBUNTU-CVE-2024-50033",
"CVE-2024-50034",
"UBUNTU-CVE-2024-50034",
"CVE-2024-50035",
"UBUNTU-CVE-2024-50035",
"CVE-2024-50036",
"UBUNTU-CVE-2024-50036",
"CVE-2024-50037",
"UBUNTU-CVE-2024-50037",
"CVE-2024-50038",
"UBUNTU-CVE-2024-50038",
"CVE-2024-50039",
"UBUNTU-CVE-2024-50039",
"CVE-2024-50040",
"UBUNTU-CVE-2024-50040",
"CVE-2024-50041",
"UBUNTU-CVE-2024-50041",
"CVE-2024-50042",
"UBUNTU-CVE-2024-50042",
"CVE-2024-50043",
"UBUNTU-CVE-2024-50043",
"CVE-2024-50044",
"UBUNTU-CVE-2024-50044",
"CVE-2024-50045",
"UBUNTU-CVE-2024-50045",
"CVE-2024-50046",
"UBUNTU-CVE-2024-50046",
"CVE-2024-50047",
"UBUNTU-CVE-2024-50047",
"CVE-2024-50048",
"UBUNTU-CVE-2024-50048",
"CVE-2024-50049",
"UBUNTU-CVE-2024-50049",
"CVE-2024-50055",
"UBUNTU-CVE-2024-50055",
"CVE-2024-50056",
"UBUNTU-CVE-2024-50056",
"CVE-2024-50057",
"UBUNTU-CVE-2024-50057",
"CVE-2024-50058",
"UBUNTU-CVE-2024-50058",
"CVE-2024-50059",
"UBUNTU-CVE-2024-50059",
"CVE-2024-50060",
"UBUNTU-CVE-2024-50060",
"CVE-2024-50061",
"UBUNTU-CVE-2024-50061",
"CVE-2024-50062",
"UBUNTU-CVE-2024-50062",
"CVE-2024-50063",
"UBUNTU-CVE-2024-50063",
"CVE-2024-50064",
"UBUNTU-CVE-2024-50064",
"CVE-2024-50065",
"UBUNTU-CVE-2024-50065",
"CVE-2024-50066",
"UBUNTU-CVE-2024-50066",
"CVE-2024-50067",
"UBUNTU-CVE-2024-50067",
"CVE-2024-50068",
"UBUNTU-CVE-2024-50068",
"CVE-2024-50069",
"UBUNTU-CVE-2024-50069",
"CVE-2024-50070",
"UBUNTU-CVE-2024-50070",
"CVE-2024-50071",
"UBUNTU-CVE-2024-50071",
"CVE-2024-50072",
"UBUNTU-CVE-2024-50072",
"CVE-2024-50073",
"UBUNTU-CVE-2024-50073",
"CVE-2024-50074",
"UBUNTU-CVE-2024-50074",
"CVE-2024-50075",
"UBUNTU-CVE-2024-50075",
"CVE-2024-50076",
"UBUNTU-CVE-2024-50076",
"CVE-2024-50077",
"UBUNTU-CVE-2024-50077",
"CVE-2024-50078",
"UBUNTU-CVE-2024-50078",
"CVE-2024-50079",
"UBUNTU-CVE-2024-50079",
"CVE-2024-50080",
"UBUNTU-CVE-2024-50080",
"CVE-2024-50081",
"UBUNTU-CVE-2024-50081",
"CVE-2024-50082",
"UBUNTU-CVE-2024-50082",
"CVE-2024-50083",
"UBUNTU-CVE-2024-50083",
"CVE-2024-50084",
"UBUNTU-CVE-2024-50084",
"CVE-2024-50085",
"UBUNTU-CVE-2024-50085",
"CVE-2024-50086",
"UBUNTU-CVE-2024-50086",
"CVE-2024-50087",
"UBUNTU-CVE-2024-50087",
"CVE-2024-50088",
"UBUNTU-CVE-2024-50088",
"CVE-2024-50090",
"UBUNTU-CVE-2024-50090",
"CVE-2024-50091",
"UBUNTU-CVE-2024-50091",
"CVE-2024-50092",
"UBUNTU-CVE-2024-50092",
"CVE-2024-50093",
"UBUNTU-CVE-2024-50093",
"CVE-2024-50094",
"UBUNTU-CVE-2024-50094",
"CVE-2024-50095",
"UBUNTU-CVE-2024-50095",
"CVE-2024-50096",
"UBUNTU-CVE-2024-50096",
"CVE-2024-50098",
"UBUNTU-CVE-2024-50098",
"CVE-2024-50099",
"UBUNTU-CVE-2024-50099",
"CVE-2024-50100",
"UBUNTU-CVE-2024-50100",
"CVE-2024-50101",
"UBUNTU-CVE-2024-50101",
"CVE-2024-50102",
"UBUNTU-CVE-2024-50102",
"CVE-2024-50103",
"UBUNTU-CVE-2024-50103",
"CVE-2024-50104",
"UBUNTU-CVE-2024-50104",
"CVE-2024-50105",
"UBUNTU-CVE-2024-50105",
"CVE-2024-50106",
"UBUNTU-CVE-2024-50106",
"CVE-2024-50107",
"UBUNTU-CVE-2024-50107",
"CVE-2024-50108",
"UBUNTU-CVE-2024-50108",
"CVE-2024-50109",
"UBUNTU-CVE-2024-50109",
"CVE-2024-50110",
"UBUNTU-CVE-2024-50110",
"CVE-2024-50111",
"UBUNTU-CVE-2024-50111",
"CVE-2024-50112",
"UBUNTU-CVE-2024-50112",
"CVE-2024-50113",
"UBUNTU-CVE-2024-50113",
"CVE-2024-50114",
"UBUNTU-CVE-2024-50114",
"CVE-2024-50115",
"UBUNTU-CVE-2024-50115",
"CVE-2024-50116",
"UBUNTU-CVE-2024-50116",
"CVE-2024-50117",
"UBUNTU-CVE-2024-50117",
"CVE-2024-50118",
"UBUNTU-CVE-2024-50118",
"CVE-2024-50119",
"UBUNTU-CVE-2024-50119",
"CVE-2024-50120",
"UBUNTU-CVE-2024-50120",
"CVE-2024-50121",
"UBUNTU-CVE-2024-50121",
"CVE-2024-50122",
"UBUNTU-CVE-2024-50122",
"CVE-2024-50123",
"UBUNTU-CVE-2024-50123",
"CVE-2024-50124",
"UBUNTU-CVE-2024-50124",
"CVE-2024-50125",
"UBUNTU-CVE-2024-50125",
"CVE-2024-50126",
"UBUNTU-CVE-2024-50126",
"CVE-2024-50127",
"UBUNTU-CVE-2024-50127",
"CVE-2024-50128",
"UBUNTU-CVE-2024-50128",
"CVE-2024-50129",
"UBUNTU-CVE-2024-50129",
"CVE-2024-50130",
"UBUNTU-CVE-2024-50130",
"CVE-2024-50131",
"UBUNTU-CVE-2024-50131",
"CVE-2024-50132",
"UBUNTU-CVE-2024-50132",
"CVE-2024-50133",
"UBUNTU-CVE-2024-50133",
"CVE-2024-50134",
"UBUNTU-CVE-2024-50134",
"CVE-2024-50135",
"UBUNTU-CVE-2024-50135",
"CVE-2024-50136",
"UBUNTU-CVE-2024-50136",
"CVE-2024-50137",
"UBUNTU-CVE-2024-50137",
"CVE-2024-50138",
"UBUNTU-CVE-2024-50138",
"CVE-2024-50139",
"UBUNTU-CVE-2024-50139",
"CVE-2024-50140",
"UBUNTU-CVE-2024-50140",
"CVE-2024-50141",
"UBUNTU-CVE-2024-50141",
"CVE-2024-50142",
"UBUNTU-CVE-2024-50142",
"CVE-2024-50143",
"UBUNTU-CVE-2024-50143",
"CVE-2024-50144",
"UBUNTU-CVE-2024-50144",
"CVE-2024-50145",
"UBUNTU-CVE-2024-50145",
"CVE-2024-50146",
"UBUNTU-CVE-2024-50146",
"CVE-2024-50147",
"UBUNTU-CVE-2024-50147",
"CVE-2024-50148",
"UBUNTU-CVE-2024-50148",
"CVE-2024-50149",
"UBUNTU-CVE-2024-50149",
"CVE-2024-50150",
"UBUNTU-CVE-2024-50150",
"CVE-2024-50151",
"UBUNTU-CVE-2024-50151",
"CVE-2024-50152",
"UBUNTU-CVE-2024-50152",
"CVE-2024-50153",
"UBUNTU-CVE-2024-50153",
"CVE-2024-50154",
"UBUNTU-CVE-2024-50154",
"CVE-2024-50155",
"UBUNTU-CVE-2024-50155",
"CVE-2024-50156",
"UBUNTU-CVE-2024-50156",
"CVE-2024-50157",
"UBUNTU-CVE-2024-50157",
"CVE-2024-50158",
"UBUNTU-CVE-2024-50158",
"CVE-2024-50159",
"UBUNTU-CVE-2024-50159",
"CVE-2024-50160",
"UBUNTU-CVE-2024-50160",
"CVE-2024-50161",
"UBUNTU-CVE-2024-50161",
"CVE-2024-50162",
"UBUNTU-CVE-2024-50162",
"CVE-2024-50163",
"UBUNTU-CVE-2024-50163",
"CVE-2024-50164",
"UBUNTU-CVE-2024-50164",
"CVE-2024-50165",
"UBUNTU-CVE-2024-50165",
"CVE-2024-50166",
"UBUNTU-CVE-2024-50166",
"CVE-2024-50167",
"UBUNTU-CVE-2024-50167",
"CVE-2024-50168",
"UBUNTU-CVE-2024-50168",
"CVE-2024-50169",
"UBUNTU-CVE-2024-50169",
"CVE-2024-50170",
"UBUNTU-CVE-2024-50170",
"CVE-2024-50171",
"UBUNTU-CVE-2024-50171",
"CVE-2024-50172",
"UBUNTU-CVE-2024-50172",
"CVE-2024-50173",
"UBUNTU-CVE-2024-50173",
"CVE-2024-50174",
"UBUNTU-CVE-2024-50174",
"CVE-2024-50176",
"UBUNTU-CVE-2024-50176",
"CVE-2024-50177",
"UBUNTU-CVE-2024-50177",
"CVE-2024-50178",
"UBUNTU-CVE-2024-50178",
"CVE-2024-50179",
"UBUNTU-CVE-2024-50179",
"CVE-2024-50180",
"UBUNTU-CVE-2024-50180",
"CVE-2024-50182",
"UBUNTU-CVE-2024-50182",
"CVE-2024-50183",
"UBUNTU-CVE-2024-50183",
"CVE-2024-50184",
"UBUNTU-CVE-2024-50184",
"CVE-2024-50185",
"UBUNTU-CVE-2024-50185",
"CVE-2024-50186",
"UBUNTU-CVE-2024-50186",
"CVE-2024-50187",
"UBUNTU-CVE-2024-50187",
"CVE-2024-50188",
"UBUNTU-CVE-2024-50188",
"CVE-2024-50189",
"UBUNTU-CVE-2024-50189",
"CVE-2024-50190",
"UBUNTU-CVE-2024-50190",
"CVE-2024-50191",
"UBUNTU-CVE-2024-50191",
"CVE-2024-50192",
"UBUNTU-CVE-2024-50192",
"CVE-2024-50193",
"UBUNTU-CVE-2024-50193",
"CVE-2024-50194",
"UBUNTU-CVE-2024-50194",
"CVE-2024-50195",
"UBUNTU-CVE-2024-50195",
"CVE-2024-50196",
"UBUNTU-CVE-2024-50196",
"CVE-2024-50197",
"UBUNTU-CVE-2024-50197",
"CVE-2024-50198",
"UBUNTU-CVE-2024-50198",
"CVE-2024-50199",
"UBUNTU-CVE-2024-50199",
"CVE-2024-50200",
"UBUNTU-CVE-2024-50200",
"CVE-2024-50201",
"UBUNTU-CVE-2024-50201",
"CVE-2024-50202",
"UBUNTU-CVE-2024-50202",
"CVE-2024-50203",
"UBUNTU-CVE-2024-50203",
"CVE-2024-50204",
"UBUNTU-CVE-2024-50204",
"CVE-2024-50205",
"UBUNTU-CVE-2024-50205",
"CVE-2024-50206",
"UBUNTU-CVE-2024-50206",
"CVE-2024-50207",
"UBUNTU-CVE-2024-50207",
"CVE-2024-50208",
"UBUNTU-CVE-2024-50208",
"CVE-2024-50209",
"UBUNTU-CVE-2024-50209",
"CVE-2024-50211",
"UBUNTU-CVE-2024-50211",
"CVE-2024-50212",
"UBUNTU-CVE-2024-50212",
"CVE-2024-50213",
"UBUNTU-CVE-2024-50213",
"CVE-2024-50214",
"UBUNTU-CVE-2024-50214",
"CVE-2024-50215",
"UBUNTU-CVE-2024-50215",
"CVE-2024-50216",
"UBUNTU-CVE-2024-50216",
"CVE-2024-50217",
"UBUNTU-CVE-2024-50217",
"CVE-2024-50218",
"UBUNTU-CVE-2024-50218",
"CVE-2024-50220",
"UBUNTU-CVE-2024-50220",
"CVE-2024-50221",
"UBUNTU-CVE-2024-50221",
"CVE-2024-50222",
"UBUNTU-CVE-2024-50222",
"CVE-2024-50223",
"UBUNTU-CVE-2024-50223",
"CVE-2024-50224",
"UBUNTU-CVE-2024-50224",
"CVE-2024-50225",
"UBUNTU-CVE-2024-50225",
"CVE-2024-50226",
"UBUNTU-CVE-2024-50226",
"CVE-2024-50227",
"UBUNTU-CVE-2024-50227",
"CVE-2024-50229",
"UBUNTU-CVE-2024-50229",
"CVE-2024-50230",
"UBUNTU-CVE-2024-50230",
"CVE-2024-50231",
"UBUNTU-CVE-2024-50231",
"CVE-2024-50232",
"UBUNTU-CVE-2024-50232",
"CVE-2024-50233",
"UBUNTU-CVE-2024-50233",
"CVE-2024-50234",
"UBUNTU-CVE-2024-50234",
"CVE-2024-50235",
"UBUNTU-CVE-2024-50235",
"CVE-2024-50236",
"UBUNTU-CVE-2024-50236",
"CVE-2024-50237",
"UBUNTU-CVE-2024-50237",
"CVE-2024-50238",
"UBUNTU-CVE-2024-50238",
"CVE-2024-50239",
"UBUNTU-CVE-2024-50239",
"CVE-2024-50240",
"UBUNTU-CVE-2024-50240",
"CVE-2024-50242",
"UBUNTU-CVE-2024-50242",
"CVE-2024-50243",
"UBUNTU-CVE-2024-50243",
"CVE-2024-50244",
"UBUNTU-CVE-2024-50244",
"CVE-2024-50245",
"UBUNTU-CVE-2024-50245",
"CVE-2024-50246",
"UBUNTU-CVE-2024-50246",
"CVE-2024-50247",
"UBUNTU-CVE-2024-50247",
"CVE-2024-50248",
"UBUNTU-CVE-2024-50248",
"CVE-2024-50249",
"UBUNTU-CVE-2024-50249",
"CVE-2024-50250",
"UBUNTU-CVE-2024-50250",
"CVE-2024-50251",
"UBUNTU-CVE-2024-50251",
"CVE-2024-50252",
"UBUNTU-CVE-2024-50252",
"CVE-2024-50253",
"UBUNTU-CVE-2024-50253",
"CVE-2024-50254",
"UBUNTU-CVE-2024-50254",
"CVE-2024-50255",
"UBUNTU-CVE-2024-50255",
"CVE-2024-50256",
"UBUNTU-CVE-2024-50256",
"CVE-2024-50257",
"UBUNTU-CVE-2024-50257",
"CVE-2024-50258",
"UBUNTU-CVE-2024-50258",
"CVE-2024-50259",
"UBUNTU-CVE-2024-50259",
"CVE-2024-50260",
"UBUNTU-CVE-2024-50260",
"CVE-2024-50261",
"UBUNTU-CVE-2024-50261",
"CVE-2024-50262",
"UBUNTU-CVE-2024-50262",
"CVE-2024-50263",
"UBUNTU-CVE-2024-50263",
"CVE-2024-50265",
"UBUNTU-CVE-2024-50265",
"CVE-2024-50266",
"UBUNTU-CVE-2024-50266",
"CVE-2024-50267",
"UBUNTU-CVE-2024-50267",
"CVE-2024-50268",
"UBUNTU-CVE-2024-50268",
"CVE-2024-50269",
"UBUNTU-CVE-2024-50269",
"CVE-2024-50270",
"UBUNTU-CVE-2024-50270",
"CVE-2024-50271",
"UBUNTU-CVE-2024-50271",
"CVE-2024-50272",
"UBUNTU-CVE-2024-50272",
"CVE-2024-50273",
"UBUNTU-CVE-2024-50273",
"CVE-2024-50274",
"UBUNTU-CVE-2024-50274",
"CVE-2024-50275",
"UBUNTU-CVE-2024-50275",
"CVE-2024-50276",
"UBUNTU-CVE-2024-50276",
"CVE-2024-50277",
"UBUNTU-CVE-2024-50277",
"CVE-2024-50278",
"UBUNTU-CVE-2024-50278",
"CVE-2024-50279",
"UBUNTU-CVE-2024-50279",
"CVE-2024-50280",
"UBUNTU-CVE-2024-50280",
"CVE-2024-50281",
"UBUNTU-CVE-2024-50281",
"CVE-2024-50282",
"UBUNTU-CVE-2024-50282",
"CVE-2024-50283",
"UBUNTU-CVE-2024-50283",
"CVE-2024-50284",
"UBUNTU-CVE-2024-50284",
"CVE-2024-50285",
"UBUNTU-CVE-2024-50285",
"CVE-2024-50286",
"UBUNTU-CVE-2024-50286",
"CVE-2024-50287",
"UBUNTU-CVE-2024-50287",
"CVE-2024-50288",
"UBUNTU-CVE-2024-50288",
"CVE-2024-50289",
"UBUNTU-CVE-2024-50289",
"CVE-2024-50290",
"UBUNTU-CVE-2024-50290",
"CVE-2024-50291",
"UBUNTU-CVE-2024-50291",
"CVE-2024-50292",
"UBUNTU-CVE-2024-50292",
"CVE-2024-50293",
"UBUNTU-CVE-2024-50293",
"CVE-2024-50294",
"UBUNTU-CVE-2024-50294",
"CVE-2024-50295",
"UBUNTU-CVE-2024-50295",
"CVE-2024-50296",
"UBUNTU-CVE-2024-50296",
"CVE-2024-50297",
"UBUNTU-CVE-2024-50297",
"CVE-2024-50298",
"UBUNTU-CVE-2024-50298",
"CVE-2024-50299",
"UBUNTU-CVE-2024-50299",
"CVE-2024-50300",
"UBUNTU-CVE-2024-50300",
"CVE-2024-50301",
"UBUNTU-CVE-2024-50301",
"CVE-2024-50302",
"UBUNTU-CVE-2024-50302",
"CVE-2024-50303",
"UBUNTU-CVE-2024-50303",
"CVE-2024-50304",
"UBUNTU-CVE-2024-50304",
"CVE-2024-53042",
"UBUNTU-CVE-2024-53042",
"CVE-2024-53043",
"UBUNTU-CVE-2024-53043",
"CVE-2024-53044",
"UBUNTU-CVE-2024-53044",
"CVE-2024-53045",
"UBUNTU-CVE-2024-53045",
"CVE-2024-53046",
"UBUNTU-CVE-2024-53046",
"CVE-2024-53047",
"UBUNTU-CVE-2024-53047",
"CVE-2024-53048",
"UBUNTU-CVE-2024-53048",
"CVE-2024-53049",
"UBUNTU-CVE-2024-53049",
"CVE-2024-53052",
"UBUNTU-CVE-2024-53052",
"CVE-2024-53053",
"UBUNTU-CVE-2024-53053",
"CVE-2024-53055",
"UBUNTU-CVE-2024-53055",
"CVE-2024-53056",
"UBUNTU-CVE-2024-53056",
"CVE-2024-53058",
"UBUNTU-CVE-2024-53058",
"CVE-2024-53059",
"UBUNTU-CVE-2024-53059",
"CVE-2024-53061",
"UBUNTU-CVE-2024-53061",
"CVE-2024-53062",
"UBUNTU-CVE-2024-53062",
"CVE-2024-53063",
"UBUNTU-CVE-2024-53063",
"CVE-2024-53064",
"UBUNTU-CVE-2024-53064",
"CVE-2024-53065",
"UBUNTU-CVE-2024-53065",
"CVE-2024-53066",
"UBUNTU-CVE-2024-53066",
"CVE-2024-53067",
"UBUNTU-CVE-2024-53067",
"CVE-2024-53068",
"UBUNTU-CVE-2024-53068",
"CVE-2024-53069",
"UBUNTU-CVE-2024-53069",
"CVE-2024-53071",
"UBUNTU-CVE-2024-53071",
"CVE-2024-53072",
"UBUNTU-CVE-2024-53072",
"CVE-2024-53074",
"UBUNTU-CVE-2024-53074",
"CVE-2024-53075",
"UBUNTU-CVE-2024-53075",
"CVE-2024-53076",
"UBUNTU-CVE-2024-53076",
"CVE-2024-53077",
"UBUNTU-CVE-2024-53077",
"CVE-2024-53078",
"UBUNTU-CVE-2024-53078",
"CVE-2024-53079",
"UBUNTU-CVE-2024-53079",
"CVE-2024-53080",
"UBUNTU-CVE-2024-53080",
"CVE-2024-53081",
"UBUNTU-CVE-2024-53081",
"CVE-2024-53082",
"UBUNTU-CVE-2024-53082",
"CVE-2024-53083",
"UBUNTU-CVE-2024-53083",
"CVE-2024-53084",
"UBUNTU-CVE-2024-53084",
"CVE-2024-53085",
"UBUNTU-CVE-2024-53085",
"CVE-2024-53086",
"UBUNTU-CVE-2024-53086",
"CVE-2024-53087",
"UBUNTU-CVE-2024-53087",
"CVE-2024-53088",
"UBUNTU-CVE-2024-53088",
"CVE-2024-53089",
"UBUNTU-CVE-2024-53089",
"CVE-2024-53090",
"UBUNTU-CVE-2024-53090",
"CVE-2024-53091",
"UBUNTU-CVE-2024-53091",
"CVE-2024-53092",
"UBUNTU-CVE-2024-53092",
"CVE-2024-53093",
"UBUNTU-CVE-2024-53093",
"CVE-2024-53094",
"UBUNTU-CVE-2024-53094",
"CVE-2024-53095",
"UBUNTU-CVE-2024-53095",
"CVE-2024-53098",
"UBUNTU-CVE-2024-53098",
"CVE-2024-53099",
"UBUNTU-CVE-2024-53099",
"CVE-2024-53100",
"UBUNTU-CVE-2024-53100",
"CVE-2024-53101",
"UBUNTU-CVE-2024-53101",
"CVE-2024-53104",
"UBUNTU-CVE-2024-53104",
"CVE-2024-53105",
"UBUNTU-CVE-2024-53105",
"CVE-2024-53106",
"UBUNTU-CVE-2024-53106",
"CVE-2024-53107",
"UBUNTU-CVE-2024-53107",
"CVE-2024-53108",
"UBUNTU-CVE-2024-53108",
"CVE-2024-53109",
"UBUNTU-CVE-2024-53109",
"CVE-2024-53110",
"UBUNTU-CVE-2024-53110",
"CVE-2024-53111",
"UBUNTU-CVE-2024-53111",
"CVE-2024-53112",
"UBUNTU-CVE-2024-53112",
"CVE-2024-53113",
"UBUNTU-CVE-2024-53113",
"CVE-2024-53114",
"UBUNTU-CVE-2024-53114",
"CVE-2024-53115",
"UBUNTU-CVE-2024-53115",
"CVE-2024-53116",
"UBUNTU-CVE-2024-53116",
"CVE-2024-53117",
"UBUNTU-CVE-2024-53117",
"CVE-2024-53118",
"UBUNTU-CVE-2024-53118",
"CVE-2024-53119",
"UBUNTU-CVE-2024-53119",
"CVE-2024-53120",
"UBUNTU-CVE-2024-53120",
"CVE-2024-53121",
"UBUNTU-CVE-2024-53121",
"CVE-2024-53122",
"UBUNTU-CVE-2024-53122",
"CVE-2024-53123",
"UBUNTU-CVE-2024-53123",
"CVE-2024-53124",
"UBUNTU-CVE-2024-53124",
"CVE-2024-53125",
"UBUNTU-CVE-2024-53125",
"CVE-2024-53126",
"UBUNTU-CVE-2024-53126",
"CVE-2024-53127",
"UBUNTU-CVE-2024-53127",
"CVE-2024-53128",
"UBUNTU-CVE-2024-53128",
"CVE-2024-53129",
"UBUNTU-CVE-2024-53129",
"CVE-2024-53130",
"UBUNTU-CVE-2024-53130",
"CVE-2024-53131",
"UBUNTU-CVE-2024-53131",
"CVE-2024-53132",
"UBUNTU-CVE-2024-53132",
"CVE-2024-53133",
"UBUNTU-CVE-2024-53133",
"CVE-2024-53134",
"UBUNTU-CVE-2024-53134",
"CVE-2024-53135",
"UBUNTU-CVE-2024-53135",
"CVE-2024-53137",
"UBUNTU-CVE-2024-53137",
"CVE-2024-53138",
"UBUNTU-CVE-2024-53138",
"CVE-2024-53139",
"UBUNTU-CVE-2024-53139",
"CVE-2024-53140",
"UBUNTU-CVE-2024-53140",
"CVE-2024-53141",
"UBUNTU-CVE-2024-53141",
"CVE-2024-53142",
"UBUNTU-CVE-2024-53142",
"CVE-2024-53143",
"UBUNTU-CVE-2024-53143",
"CVE-2024-53144",
"UBUNTU-CVE-2024-53144",
"CVE-2024-53145",
"UBUNTU-CVE-2024-53145",
"CVE-2024-53146",
"UBUNTU-CVE-2024-53146",
"CVE-2024-53147",
"UBUNTU-CVE-2024-53147",
"CVE-2024-53148",
"UBUNTU-CVE-2024-53148",
"CVE-2024-53149",
"UBUNTU-CVE-2024-53149",
"CVE-2024-53150",
"UBUNTU-CVE-2024-53150",
"CVE-2024-53151",
"UBUNTU-CVE-2024-53151",
"CVE-2024-53152",
"UBUNTU-CVE-2024-53152",
"CVE-2024-53153",
"UBUNTU-CVE-2024-53153",
"CVE-2024-53154",
"UBUNTU-CVE-2024-53154",
"CVE-2024-53155",
"UBUNTU-CVE-2024-53155",
"CVE-2024-53156",
"UBUNTU-CVE-2024-53156",
"CVE-2024-53157",
"UBUNTU-CVE-2024-53157",
"CVE-2024-53158",
"UBUNTU-CVE-2024-53158",
"CVE-2024-53160",
"UBUNTU-CVE-2024-53160",
"CVE-2024-53161",
"UBUNTU-CVE-2024-53161",
"CVE-2024-53162",
"UBUNTU-CVE-2024-53162",
"CVE-2024-53163",
"UBUNTU-CVE-2024-53163",
"CVE-2024-53165",
"UBUNTU-CVE-2024-53165",
"CVE-2024-53166",
"UBUNTU-CVE-2024-53166",
"CVE-2024-53167",
"UBUNTU-CVE-2024-53167",
"CVE-2024-53168",
"UBUNTU-CVE-2024-53168",
"CVE-2024-53169",
"UBUNTU-CVE-2024-53169",
"CVE-2024-53170",
"UBUNTU-CVE-2024-53170",
"CVE-2024-53171",
"UBUNTU-CVE-2024-53171",
"CVE-2024-53172",
"UBUNTU-CVE-2024-53172",
"CVE-2024-53173",
"UBUNTU-CVE-2024-53173",
"CVE-2024-53174",
"UBUNTU-CVE-2024-53174",
"CVE-2024-53175",
"UBUNTU-CVE-2024-53175",
"CVE-2024-53176",
"UBUNTU-CVE-2024-53176",
"CVE-2024-53177",
"UBUNTU-CVE-2024-53177",
"CVE-2024-53178",
"UBUNTU-CVE-2024-53178",
"CVE-2024-53180",
"UBUNTU-CVE-2024-53180",
"CVE-2024-53181",
"UBUNTU-CVE-2024-53181",
"CVE-2024-53183",
"UBUNTU-CVE-2024-53183",
"CVE-2024-53184",
"UBUNTU-CVE-2024-53184",
"CVE-2024-53187",
"UBUNTU-CVE-2024-53187",
"CVE-2024-53188",
"UBUNTU-CVE-2024-53188",
"CVE-2024-53189",
"UBUNTU-CVE-2024-53189",
"CVE-2024-53190",
"UBUNTU-CVE-2024-53190",
"CVE-2024-53191",
"UBUNTU-CVE-2024-53191",
"CVE-2024-53192",
"UBUNTU-CVE-2024-53192",
"CVE-2024-53193",
"UBUNTU-CVE-2024-53193",
"CVE-2024-53194",
"UBUNTU-CVE-2024-53194",
"CVE-2024-53195",
"UBUNTU-CVE-2024-53195",
"CVE-2024-53196",
"UBUNTU-CVE-2024-53196",
"CVE-2024-53197",
"UBUNTU-CVE-2024-53197",
"CVE-2024-53198",
"UBUNTU-CVE-2024-53198",
"CVE-2024-53199",
"UBUNTU-CVE-2024-53199",
"CVE-2024-53200",
"UBUNTU-CVE-2024-53200",
"CVE-2024-53202",
"UBUNTU-CVE-2024-53202",
"CVE-2024-53203",
"UBUNTU-CVE-2024-53203",
"CVE-2024-53208",
"UBUNTU-CVE-2024-53208",
"CVE-2024-53209",
"UBUNTU-CVE-2024-53209",
"CVE-2024-53210",
"UBUNTU-CVE-2024-53210",
"CVE-2024-53212",
"UBUNTU-CVE-2024-53212",
"CVE-2024-53213",
"UBUNTU-CVE-2024-53213",
"CVE-2024-53214",
"UBUNTU-CVE-2024-53214",
"CVE-2024-53215",
"UBUNTU-CVE-2024-53215",
"CVE-2024-53216",
"UBUNTU-CVE-2024-53216",
"CVE-2024-53217",
"UBUNTU-CVE-2024-53217",
"CVE-2024-53218",
"UBUNTU-CVE-2024-53218",
"CVE-2024-53219",
"UBUNTU-CVE-2024-53219",
"CVE-2024-53220",
"UBUNTU-CVE-2024-53220",
"CVE-2024-53221",
"UBUNTU-CVE-2024-53221",
"CVE-2024-53223",
"UBUNTU-CVE-2024-53223",
"CVE-2024-53224",
"UBUNTU-CVE-2024-53224",
"CVE-2024-53226",
"UBUNTU-CVE-2024-53226",
"CVE-2024-53227",
"UBUNTU-CVE-2024-53227",
"CVE-2024-53228",
"UBUNTU-CVE-2024-53228",
"CVE-2024-53229",
"UBUNTU-CVE-2024-53229",
"CVE-2024-53230",
"UBUNTU-CVE-2024-53230",
"CVE-2024-53231",
"UBUNTU-CVE-2024-53231",
"CVE-2024-53232",
"UBUNTU-CVE-2024-53232",
"CVE-2024-53233",
"UBUNTU-CVE-2024-53233",
"CVE-2024-53234",
"UBUNTU-CVE-2024-53234",
"CVE-2024-53236",
"UBUNTU-CVE-2024-53236",
"CVE-2024-53237",
"UBUNTU-CVE-2024-53237",
"CVE-2024-53238",
"UBUNTU-CVE-2024-53238",
"CVE-2024-53239",
"UBUNTU-CVE-2024-53239",
"CVE-2024-56531",
"UBUNTU-CVE-2024-56531",
"CVE-2024-56532",
"UBUNTU-CVE-2024-56532",
"CVE-2024-56533",
"UBUNTU-CVE-2024-56533",
"CVE-2024-56534",
"UBUNTU-CVE-2024-56534",
"CVE-2024-56535",
"UBUNTU-CVE-2024-56535",
"CVE-2024-56536",
"UBUNTU-CVE-2024-56536",
"CVE-2024-56537",
"UBUNTU-CVE-2024-56537",
"CVE-2024-56538",
"UBUNTU-CVE-2024-56538",
"CVE-2024-56539",
"UBUNTU-CVE-2024-56539",
"CVE-2024-56540",
"UBUNTU-CVE-2024-56540",
"CVE-2024-56541",
"UBUNTU-CVE-2024-56541",
"CVE-2024-56543",
"UBUNTU-CVE-2024-56543",
"CVE-2024-56544",
"UBUNTU-CVE-2024-56544",
"CVE-2024-56545",
"UBUNTU-CVE-2024-56545",
"CVE-2024-56546",
"UBUNTU-CVE-2024-56546",
"CVE-2024-56548",
"UBUNTU-CVE-2024-56548",
"CVE-2024-56549",
"UBUNTU-CVE-2024-56549",
"CVE-2024-56674",
"UBUNTU-CVE-2024-56674",
"CVE-2024-56677",
"UBUNTU-CVE-2024-56677",
"CVE-2024-56678",
"UBUNTU-CVE-2024-56678",
"CVE-2024-56679",
"UBUNTU-CVE-2024-56679",
"CVE-2024-56680",
"UBUNTU-CVE-2024-56680",
"CVE-2024-56681",
"UBUNTU-CVE-2024-56681",
"CVE-2024-56683",
"UBUNTU-CVE-2024-56683",
"CVE-2024-56684",
"UBUNTU-CVE-2024-56684",
"CVE-2024-56685",
"UBUNTU-CVE-2024-56685",
"CVE-2024-56687",
"UBUNTU-CVE-2024-56687",
"CVE-2024-56688",
"UBUNTU-CVE-2024-56688",
"CVE-2024-56689",
"UBUNTU-CVE-2024-56689",
"CVE-2024-56690",
"UBUNTU-CVE-2024-56690",
"CVE-2024-56691",
"UBUNTU-CVE-2024-56691",
"CVE-2024-56692",
"UBUNTU-CVE-2024-56692",
"CVE-2024-56693",
"UBUNTU-CVE-2024-56693",
"CVE-2024-56694",
"UBUNTU-CVE-2024-56694",
"CVE-2024-56696",
"UBUNTU-CVE-2024-56696",
"CVE-2024-56697",
"UBUNTU-CVE-2024-56697",
"CVE-2024-56698",
"UBUNTU-CVE-2024-56698",
"CVE-2024-56699",
"UBUNTU-CVE-2024-56699",
"CVE-2024-56700",
"UBUNTU-CVE-2024-56700",
"CVE-2024-56701",
"UBUNTU-CVE-2024-56701",
"CVE-2024-56702",
"UBUNTU-CVE-2024-56702",
"CVE-2024-56703",
"UBUNTU-CVE-2024-56703",
"CVE-2024-56704",
"UBUNTU-CVE-2024-56704",
"CVE-2024-56705",
"UBUNTU-CVE-2024-56705",
"CVE-2024-56707",
"UBUNTU-CVE-2024-56707",
"CVE-2024-56708",
"UBUNTU-CVE-2024-56708",
"CVE-2024-56720",
"UBUNTU-CVE-2024-56720",
"CVE-2024-56721",
"UBUNTU-CVE-2024-56721",
"CVE-2024-56722",
"UBUNTU-CVE-2024-56722",
"CVE-2024-56723",
"UBUNTU-CVE-2024-56723",
"CVE-2024-56724",
"UBUNTU-CVE-2024-56724",
"CVE-2024-56725",
"UBUNTU-CVE-2024-56725",
"CVE-2024-56726",
"UBUNTU-CVE-2024-56726",
"CVE-2024-56727",
"UBUNTU-CVE-2024-56727",
"CVE-2024-56728",
"UBUNTU-CVE-2024-56728",
"CVE-2024-56729",
"UBUNTU-CVE-2024-56729",
"CVE-2024-56739",
"UBUNTU-CVE-2024-56739",
"CVE-2024-56742",
"UBUNTU-CVE-2024-56742",
"CVE-2024-56744",
"UBUNTU-CVE-2024-56744",
"CVE-2024-56745",
"UBUNTU-CVE-2024-56745",
"CVE-2024-56746",
"UBUNTU-CVE-2024-56746",
"CVE-2024-56747",
"UBUNTU-CVE-2024-56747",
"CVE-2024-56748",
"UBUNTU-CVE-2024-56748",
"CVE-2024-56749",
"UBUNTU-CVE-2024-56749",
"CVE-2024-56751",
"UBUNTU-CVE-2024-56751",
"CVE-2024-56752",
"UBUNTU-CVE-2024-56752",
"CVE-2024-56754",
"UBUNTU-CVE-2024-56754",
"CVE-2024-56755",
"UBUNTU-CVE-2024-56755",
"CVE-2024-56756",
"UBUNTU-CVE-2024-56756"
],
"schema_version": "1.6.3",
"summary": "linux-aws, linux-azure, linux-gcp, linux-oracle, linux-raspi, linux-realtime vulnerabilities"
}
WID-SEC-W-2024-3509
Vulnerability from csaf_certbund - Published: 2024-11-19 23:00 - Updated: 2026-05-18 22:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
IBM QRadar SIEM <7.5.0 UP13
IBM / QRadar SIEM
|
<7.5.0 UP13 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
IBM DataPower Gateway <10.5.0.16
IBM / DataPower Gateway
|
<10.5.0.16 | ||
|
IBM DataPower Gateway <10.6.0.4
IBM / DataPower Gateway
|
<10.6.0.4 | ||
|
Oracle Linux
Oracle / Linux
|
cpe:/o:oracle:linux:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Dell PowerProtect Data Domain <8.4.0.0
Dell / PowerProtect Data Domain
|
<8.4.0.0 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Dell PowerProtect Data Domain <7.13.1.40
Dell / PowerProtect Data Domain
|
<7.13.1.40 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 |
| URL | Category |
|---|---|
| https://wid.cert-bund.de/.well-known/csaf/white/2… | self |
| https://wid.cert-bund.de/portal/wid/securityadvis… | self |
| https://ubuntu.com/security/notices/USN-7186-2 | external |
| https://cloud.google.com/support/bulletins#gcp-2025-002 | external |
| https://ubuntu.com/security/notices/USN-7169-4 | external |
| https://ubuntu.com/security/notices/USN-7196-1 | external |
| https://ubuntu.com/security/notices/USN-7195-1 | external |
| https://ubuntu.com/security/notices/USN-7185-2 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://ubuntu.com/security/notices/USN-7179-1 | external |
| https://ubuntu.com/security/notices/USN-7173-2 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2025-20018.html | external |
| https://ubuntu.com/security/notices/USN-7167-2 | external |
| https://ubuntu.com/security/notices/USN-7169-3 | external |
| https://access.redhat.com/errata/RHSA-2025:0065 | external |
| https://access.redhat.com/errata/RHSA-2025:0066 | external |
| https://ubuntu.com/security/notices/USN-7179-3 | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://linux.oracle.com/errata/ELSA-2024-12887.html | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7169-2 | external |
| https://ubuntu.com/security/notices/USN-7184-1 | external |
| https://ubuntu.com/security/notices/USN-7186-1 | external |
| https://ubuntu.com/security/notices/USN-7179-2 | external |
| https://ubuntu.com/security/notices/USN-7183-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7169-5 | external |
| https://errata.build.resf.org/RLSA-2025:0066 | external |
| https://errata.build.resf.org/RLSA-2025:0065 | external |
| http://linux.oracle.com/errata/ELSA-2025-0065.html | external |
| https://ubuntu.com/security/notices/USN-7163-1 | external |
| https://linux.oracle.com/errata/ELSA-2024-12884.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-7169-1 | 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://ubuntu.com/security/notices/USN-7167-1 | external |
| https://ubuntu.com/security/notices/USN-7170-1 | external |
| https://ubuntu.com/security/notices/USN-7173-1 | external |
| https://lore.kernel.org/linux-cve-announce/ | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://ubuntu.com/security/notices/USN-7195-2 | external |
| https://ubuntu.com/security/notices/USN-7173-3 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://access.redhat.com/errata/RHSA-2025:0578 | external |
| https://linux.oracle.com/errata/ELSA-2025-0578.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7179-4 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://linux.oracle.com/errata/ELSA-2025-20095.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2025-20100.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-7276-1 | external |
| https://ubuntu.com/security/notices/USN-7277-1 | external |
| https://ubuntu.com/security/notices/USN-7288-1 | external |
| https://ubuntu.com/security/notices/USN-7289-1 | external |
| https://ubuntu.com/security/notices/USN-7288-2 | external |
| https://ubuntu.com/security/notices/USN-7293-1 | external |
| https://www.ibm.com/support/pages/node/7184085 | external |
| https://ubuntu.com/security/notices/USN-7291-1 | external |
| https://ubuntu.com/security/notices/USN-7289-2 | external |
| https://ubuntu.com/security/notices/USN-7294-1 | external |
| https://alas.aws.amazon.com/AL2/ALASKERNEL-5.15-2… | external |
| https://ubuntu.com/security/notices/USN-7289-3 | external |
| https://ubuntu.com/security/notices/USN-7295-1 | external |
| https://ubuntu.com/security/notices/USN-7294-2 | external |
| https://ubuntu.com/security/notices/USN-7289-4 | external |
| https://ubuntu.com/security/notices/USN-7308-1 | external |
| https://ubuntu.com/security/notices/USN-7294-3 | external |
| https://ubuntu.com/security/notices/USN-7310-1 | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://ubuntu.com/security/notices/USN-7294-4 | external |
| https://ubuntu.com/security/notices/USN-7326-1 | external |
| https://ubuntu.com/security/notices/USN-7331-1 | external |
| https://ubuntu.com/security/notices/USN-7329-1 | 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/ALASKERNEL-5.10-2… | external |
| https://linux.oracle.com/errata/ELSA-2025-20190.html | external |
| https://www.ibm.com/support/pages/node/7228744 | external |
| https://ubuntu.com/security/notices/USN-7388-1 | external |
| https://ubuntu.com/security/notices/USN-7387-1 | external |
| https://ubuntu.com/security/notices/USN-7387-3 | external |
| https://ubuntu.com/security/notices/USN-7387-2 | external |
| https://ubuntu.com/security/notices/USN-7389-1 | external |
| https://ubuntu.com/security/notices/USN-7393-1 | external |
| https://ubuntu.com/security/notices/USN-7390-1 | external |
| https://ubuntu.com/security/notices/USN-7402-1 | external |
| https://ubuntu.com/security/notices/USN-7401-1 | external |
| https://ubuntu.com/security/notices/USN-7403-1 | external |
| https://ubuntu.com/security/notices/USN-7402-2 | external |
| https://ubuntu.com/security/notices/USN-7407-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7413-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7402-3 | external |
| https://ubuntu.com/security/notices/USN-7421-1 | external |
| https://ubuntu.com/security/notices/USN-7402-4 | 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.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://linux.oracle.com/errata/ELSA-2025-20271.html | 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://alas.aws.amazon.com/AL2/ALAS-2025-2826.html | external |
| https://ubuntu.com/security/notices/LSN-0111-1 | external |
| https://alas.aws.amazon.com/ALAS-2025-1970.html | external |
| https://ubuntu.com/security/notices/USN-7402-5 | external |
| https://ubuntu.com/security/notices/USN-7452-1 | external |
| https://ubuntu.com/security/notices/USN-7449-1 | external |
| https://ubuntu.com/security/notices/USN-7450-1 | external |
| https://ubuntu.com/security/notices/USN-7453-1 | external |
| https://ubuntu.com/security/notices/USN-7451-1 | external |
| https://ubuntu.com/security/notices/USN-7459-1 | external |
| https://ubuntu.com/security/notices/USN-7449-2 | external |
| https://ubuntu.com/security/notices/USN-7458-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7459-2 | external |
| https://ubuntu.com/security/notices/USN-7468-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7496-1 | external |
| https://ubuntu.com/security/notices/USN-7496-2 | external |
| https://ubuntu.com/security/notices/USN-7496-3 | external |
| https://ubuntu.com/security/notices/USN-7496-4 | external |
| https://ubuntu.com/security/notices/USN-7496-5 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7506-1 | external |
| https://ubuntu.com/security/notices/USN-7506-2 | external |
| https://ubuntu.com/security/notices/USN-7506-3 | external |
| https://ubuntu.com/security/notices/USN-7506-4 | external |
| https://access.redhat.com/errata/RHSA-2025:6966 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7523-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://ubuntu.com/security/notices/USN-7524-1 | external |
| https://ubuntu.com/security/notices/USN-7540-1 | external |
| https://ubuntu.com/security/notices/USN-7539-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/LSN-0112-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://www.dell.com/support/kbdoc/de-de/00032629… | 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-2025:9581 | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://access.redhat.com/errata/RHSA-2025:9580 | external |
| https://linux.oracle.com/errata/ELSA-2025-9580.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://ubuntu.com/security/notices/USN-7608-3 | external |
| https://ubuntu.com/security/notices/USN-7608-2 | external |
| https://ubuntu.com/security/notices/USN-7608-1 | external |
| https://ubuntu.com/security/notices/USN-7608-4 | external |
| https://linux.oracle.com/errata/ELSA-2025-20406.html | external |
| https://ubuntu.com/security/notices/USN-7608-5 | external |
| https://ubuntu.com/security/notices/USN-7608-6 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7655-1 | external |
| https://ubuntu.com/security/notices/USN-7671-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7671-2 | external |
| https://ubuntu.com/security/notices/USN-7608-7 | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://ubuntu.com/security/notices/USN-7671-3 | external |
| https://ubuntu.com/security/notices/USN-7686-1 | external |
| https://www.ibm.com/support/pages/node/7241589 | external |
| https://ubuntu.com/security/notices/USN-7909-5 | external |
| https://ubuntu.com/security/notices/USN-7933-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://ubuntu.com/security/notices/USN-7712-1 | external |
| https://ubuntu.com/security/notices/USN-7712-2 | external |
| https://linux.oracle.com/errata/ELSA-2025-20553.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://www.dell.com/support/kbdoc/000376224 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2025:20518 | external |
| https://errata.build.resf.org/RLSA-2025:20518 | external |
| https://linux.oracle.com/errata/ELSA-2025-20518-0.html | external |
| https://ubuntu.com/security/notices/USN-7909-1 | external |
| https://ubuntu.com/security/notices/USN-7909-3 | external |
| https://ubuntu.com/security/notices/USN-7909-2 | external |
| https://ubuntu.com/security/notices/USN-7910-1 | external |
| https://ubuntu.com/security/notices/USN-7909-4 | external |
| https://ubuntu.com/security/notices/USN-7938-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-8273-1 | external |
{
"document": {
"aggregate_severity": {
"text": "mittel"
},
"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 in Linux Kernel ausnutzen, um einen nicht n\u00e4her spezifizierten Angriff durchzuf\u00fchren.",
"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-2024-3509 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-3509.json"
},
{
"category": "self",
"summary": "WID-SEC-2024-3509 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-3509"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7186-2 vom 2025-01-09",
"url": "https://ubuntu.com/security/notices/USN-7186-2"
},
{
"category": "external",
"summary": "Google Cloud Platform Security Bulletin GCP-2025-002 vom 2025-01-09",
"url": "https://cloud.google.com/support/bulletins#gcp-2025-002"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7169-4 vom 2025-01-09",
"url": "https://ubuntu.com/security/notices/USN-7169-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7196-1 vom 2025-01-09",
"url": "https://ubuntu.com/security/notices/USN-7196-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7195-1 vom 2025-01-09",
"url": "https://ubuntu.com/security/notices/USN-7195-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7185-2 vom 2025-01-09",
"url": "https://ubuntu.com/security/notices/USN-7185-2"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4318-1 vom 2024-12-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/019999.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4314-1 vom 2024-12-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/SARXL66CQHD5VSFG5PUBNBVBPVFUN4KT/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4313-1 vom 2024-12-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/PCO2TL4OCZ4YUXTF7OMLI6WH3WKDUC2G/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4315-1 vom 2024-12-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/LQPWDP54GSTHYCV4CTCOE67D2ANVPPUW/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4317-1 vom 2024-12-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020000.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4316-1 vom 2024-12-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/S4I5Z6ALCJLHTP25U3HMJHEXN4DR2USM/"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7179-1 vom 2024-12-20",
"url": "https://ubuntu.com/security/notices/USN-7179-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7173-2 vom 2024-12-20",
"url": "https://ubuntu.com/security/notices/USN-7173-2"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4397-1 vom 2024-12-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020041.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20018 vom 2025-01-13",
"url": "https://linux.oracle.com/errata/ELSA-2025-20018.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7167-2 vom 2025-01-07",
"url": "https://ubuntu.com/security/notices/USN-7167-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7169-3 vom 2025-01-07",
"url": "https://ubuntu.com/security/notices/USN-7169-3"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0065 vom 2025-01-08",
"url": "https://access.redhat.com/errata/RHSA-2025:0065"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0066 vom 2025-01-08",
"url": "https://access.redhat.com/errata/RHSA-2025:0066"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7179-3 vom 2025-01-07",
"url": "https://ubuntu.com/security/notices/USN-7179-3"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4376-1 vom 2024-12-18",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/WFOJHFFEHK42VPQ6XLZWB77H5OEJ3FF4/"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12887 vom 2024-12-18",
"url": "https://linux.oracle.com/errata/ELSA-2024-12887.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4376-1 vom 2024-12-18",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/WFOJHFFEHK42VPQ6XLZWB77H5OEJ3FF4/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4376-1 vom 2024-12-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020028.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7169-2 vom 2024-12-18",
"url": "https://ubuntu.com/security/notices/USN-7169-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7184-1 vom 2025-01-06",
"url": "https://ubuntu.com/security/notices/USN-7184-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7186-1 vom 2025-01-06",
"url": "https://ubuntu.com/security/notices/USN-7186-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7179-2 vom 2025-01-06",
"url": "https://ubuntu.com/security/notices/USN-7179-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7183-1 vom 2025-01-06",
"url": "https://ubuntu.com/security/notices/USN-7183-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0035-1 vom 2025-01-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020070.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7169-5 vom 2025-01-10",
"url": "https://ubuntu.com/security/notices/USN-7169-5"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2025:0066 vom 2025-01-11",
"url": "https://errata.build.resf.org/RLSA-2025:0066"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2025:0065 vom 2025-01-11",
"url": "https://errata.build.resf.org/RLSA-2025:0065"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-0065 vom 2025-01-11",
"url": "http://linux.oracle.com/errata/ELSA-2025-0065.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7163-1 vom 2024-12-16",
"url": "https://ubuntu.com/security/notices/USN-7163-1"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12884 vom 2024-12-17",
"url": "https://linux.oracle.com/errata/ELSA-2024-12884.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4387-1 vom 2024-12-19",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020032.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4388-1 vom 2024-12-19",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020034.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7169-1 vom 2024-12-17",
"url": "https://ubuntu.com/security/notices/USN-7169-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4346-1 vom 2024-12-17",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/2FJJW5HEWYSYWAJBRWARBIZ4AQHAXLNG/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4345-1 vom 2024-12-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020018.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4364-1 vom 2024-12-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020019.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4367-1 vom 2024-12-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020025.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7167-1 vom 2024-12-17",
"url": "https://ubuntu.com/security/notices/USN-7167-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7170-1 vom 2024-12-17",
"url": "https://ubuntu.com/security/notices/USN-7170-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7173-1 vom 2024-12-17",
"url": "https://ubuntu.com/security/notices/USN-7173-1"
},
{
"category": "external",
"summary": "Kernel CVE Announce Mailingliste",
"url": "https://lore.kernel.org/linux-cve-announce/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53079",
"url": "https://lore.kernel.org/linux-cve-announce/2024111901-CVE-2024-53079-7501@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53080",
"url": "https://lore.kernel.org/linux-cve-announce/2024111904-CVE-2024-53080-e1a8@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53081",
"url": "https://lore.kernel.org/linux-cve-announce/2024111904-CVE-2024-53081-72b5@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53082",
"url": "https://lore.kernel.org/linux-cve-announce/2024111904-CVE-2024-53082-30c0@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53083",
"url": "https://lore.kernel.org/linux-cve-announce/2024111905-CVE-2024-53083-6ed0@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53084",
"url": "https://lore.kernel.org/linux-cve-announce/2024111905-CVE-2024-53084-1021@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53085",
"url": "https://lore.kernel.org/linux-cve-announce/2024111905-CVE-2024-53085-9cf3@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53086",
"url": "https://lore.kernel.org/linux-cve-announce/2024111906-CVE-2024-53086-af24@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53087",
"url": "https://lore.kernel.org/linux-cve-announce/2024111906-CVE-2024-53087-6cd3@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53088",
"url": "https://lore.kernel.org/linux-cve-announce/2024111906-CVE-2024-53088-795c@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53073",
"url": "https://lore.kernel.org/linux-cve-announce/2024111924-CVE-2024-53073-16f8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53074",
"url": "https://lore.kernel.org/linux-cve-announce/2024111924-CVE-2024-53074-e49b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53075",
"url": "https://lore.kernel.org/linux-cve-announce/2024111924-CVE-2024-53075-2e34@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53076",
"url": "https://lore.kernel.org/linux-cve-announce/2024111925-CVE-2024-53076-713e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53077",
"url": "https://lore.kernel.org/linux-cve-announce/2024111925-CVE-2024-53077-f48f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53078",
"url": "https://lore.kernel.org/linux-cve-announce/2024111925-CVE-2024-53078-f504@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53060",
"url": "https://lore.kernel.org/linux-cve-announce/2024111931-CVE-2024-53060-3b94@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53062",
"url": "https://lore.kernel.org/linux-cve-announce/2024111931-CVE-2024-53062-c9f7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53063",
"url": "https://lore.kernel.org/linux-cve-announce/2024111932-CVE-2024-53063-1ffa@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53064",
"url": "https://lore.kernel.org/linux-cve-announce/2024111932-CVE-2024-53064-119c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53065",
"url": "https://lore.kernel.org/linux-cve-announce/2024111932-CVE-2024-53065-3a63@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53066",
"url": "https://lore.kernel.org/linux-cve-announce/2024111932-CVE-2024-53066-abf7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53067",
"url": "https://lore.kernel.org/linux-cve-announce/2024111933-CVE-2024-53067-0c9e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53068",
"url": "https://lore.kernel.org/linux-cve-announce/2024111933-CVE-2024-53068-8c2a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53069",
"url": "https://lore.kernel.org/linux-cve-announce/2024111933-CVE-2024-53069-2786@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50303",
"url": "https://lore.kernel.org/linux-cve-announce/2024111922-CVE-2024-50303-2bd7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50304",
"url": "https://lore.kernel.org/linux-cve-announce/2024111924-CVE-2024-50304-da6d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53042",
"url": "https://lore.kernel.org/linux-cve-announce/2024111924-CVE-2024-53042-f7e1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53043",
"url": "https://lore.kernel.org/linux-cve-announce/2024111925-CVE-2024-53043-f450@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53044",
"url": "https://lore.kernel.org/linux-cve-announce/2024111925-CVE-2024-53044-e0d1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53045",
"url": "https://lore.kernel.org/linux-cve-announce/2024111925-CVE-2024-53045-e1dc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53046",
"url": "https://lore.kernel.org/linux-cve-announce/2024111926-CVE-2024-53046-b36d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53047",
"url": "https://lore.kernel.org/linux-cve-announce/2024111926-CVE-2024-53047-8214@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53048",
"url": "https://lore.kernel.org/linux-cve-announce/2024111926-CVE-2024-53048-cdd4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53049",
"url": "https://lore.kernel.org/linux-cve-announce/2024111926-CVE-2024-53049-fa45@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53050",
"url": "https://lore.kernel.org/linux-cve-announce/2024111927-CVE-2024-53050-b59c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53051",
"url": "https://lore.kernel.org/linux-cve-announce/2024111927-CVE-2024-53051-5184@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53052",
"url": "https://lore.kernel.org/linux-cve-announce/2024111927-CVE-2024-53052-3bd9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53053",
"url": "https://lore.kernel.org/linux-cve-announce/2024111927-CVE-2024-53053-57bf@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53054",
"url": "https://lore.kernel.org/linux-cve-announce/2024111927-CVE-2024-53054-7da4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53055",
"url": "https://lore.kernel.org/linux-cve-announce/2024111928-CVE-2024-53055-4a64@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53056",
"url": "https://lore.kernel.org/linux-cve-announce/2024111928-CVE-2024-53056-ae69@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53057",
"url": "https://lore.kernel.org/linux-cve-announce/2024111928-CVE-2024-53057-a3a5@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53058",
"url": "https://lore.kernel.org/linux-cve-announce/2024111928-CVE-2024-53058-7bd0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53059",
"url": "https://lore.kernel.org/linux-cve-announce/2024111928-CVE-2024-53059-4f81@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53061",
"url": "https://lore.kernel.org/linux-cve-announce/2024111931-CVE-2024-53061-a7a1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53070",
"url": "https://lore.kernel.org/linux-cve-announce/2024111933-CVE-2024-53070-6eea@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53071",
"url": "https://lore.kernel.org/linux-cve-announce/2024111934-CVE-2024-53071-ddbc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-53072",
"url": "https://lore.kernel.org/linux-cve-announce/2024111934-CVE-2024-53072-f307@gregkh/"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-5818 vom 2024-11-24",
"url": "https://lists.debian.org/debian-security-announce/2024/msg00233.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7195-2 vom 2025-01-14",
"url": "https://ubuntu.com/security/notices/USN-7195-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7173-3 vom 2025-01-15",
"url": "https://ubuntu.com/security/notices/USN-7173-3"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0153-1 vom 2025-01-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020150.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0154-1 vom 2025-01-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020151.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0201-1 vom 2025-01-21",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/YFCZRPOJ45QWVUSJAEK53OBSFTOQ3W5H/"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0578 vom 2025-01-22",
"url": "https://access.redhat.com/errata/RHSA-2025:0578"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-0578 vom 2025-01-23",
"url": "https://linux.oracle.com/errata/ELSA-2025-0578.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0236-1 vom 2025-01-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020196.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7179-4 vom 2025-01-27",
"url": "https://ubuntu.com/security/notices/USN-7179-4"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0289-1 vom 2025-01-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020239.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-5860 vom 2025-02-08",
"url": "https://lists.debian.org/debian-security-announce/2025/msg00023.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20095 vom 2025-02-11",
"url": "https://linux.oracle.com/errata/ELSA-2025-20095.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0428-1 vom 2025-02-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020311.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20100 vom 2025-02-13",
"url": "https://linux.oracle.com/errata/ELSA-2025-20100.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0499-1 vom 2025-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020336.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0557-1 vom 2025-02-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020350.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0564-1 vom 2025-02-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020361.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7276-1 vom 2025-02-19",
"url": "https://ubuntu.com/security/notices/USN-7276-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7277-1 vom 2025-02-19",
"url": "https://ubuntu.com/security/notices/USN-7277-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7288-1 vom 2025-02-24",
"url": "https://ubuntu.com/security/notices/USN-7288-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7289-1 vom 2025-02-24",
"url": "https://ubuntu.com/security/notices/USN-7289-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7288-2 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7288-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7293-1 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7293-1"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7184085 vom 2025-02-25",
"url": "https://www.ibm.com/support/pages/node/7184085"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7291-1 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7291-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7289-2 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7289-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7294-1 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7294-1"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASKERNEL-5.15-2025-063 vom 2025-02-25",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.15-2025-063.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7289-3 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7289-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7295-1 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7295-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7294-2 vom 2025-02-27",
"url": "https://ubuntu.com/security/notices/USN-7294-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7289-4 vom 2025-02-27",
"url": "https://ubuntu.com/security/notices/USN-7289-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7308-1 vom 2025-02-27",
"url": "https://ubuntu.com/security/notices/USN-7308-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7294-3 vom 2025-02-28",
"url": "https://ubuntu.com/security/notices/USN-7294-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7310-1 vom 2025-02-28",
"url": "https://ubuntu.com/security/notices/USN-7310-1"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4076 vom 2025-03-01",
"url": "https://lists.debian.org/debian-lts-announce/2025/03/msg00001.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4075 vom 2025-03-01",
"url": "https://lists.debian.org/debian-lts-announce/2025/03/msg00002.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7294-4 vom 2025-03-03",
"url": "https://ubuntu.com/security/notices/USN-7294-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7326-1 vom 2025-03-05",
"url": "https://ubuntu.com/security/notices/USN-7326-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7331-1 vom 2025-03-05",
"url": "https://ubuntu.com/security/notices/USN-7331-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7329-1 vom 2025-03-05",
"url": "https://ubuntu.com/security/notices/USN-7329-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0201-2 vom 2025-03-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020501.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0834-1 vom 2025-03-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020497.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASKERNEL-5.10-2025-082 vom 2025-03-14",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.10-2025-082.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20190 vom 2025-03-21",
"url": "https://linux.oracle.com/errata/ELSA-2025-20190.html"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7228744 vom 2025-03-21",
"url": "https://www.ibm.com/support/pages/node/7228744"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7388-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7388-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7387-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7387-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7387-3 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7387-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7387-2 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7387-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7389-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7389-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7393-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7393-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7390-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7390-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7402-1 vom 2025-04-02",
"url": "https://ubuntu.com/security/notices/USN-7402-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7401-1 vom 2025-04-01",
"url": "https://ubuntu.com/security/notices/USN-7401-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7403-1 vom 2025-04-02",
"url": "https://ubuntu.com/security/notices/USN-7403-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7402-2 vom 2025-04-02",
"url": "https://ubuntu.com/security/notices/USN-7402-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7407-1 vom 2025-04-02",
"url": "https://ubuntu.com/security/notices/USN-7407-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02070-1 vom 2025-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021626.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7413-1 vom 2025-04-03",
"url": "https://ubuntu.com/security/notices/USN-7413-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02077-1 vom 2025-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021629.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7402-3 vom 2025-04-04",
"url": "https://ubuntu.com/security/notices/USN-7402-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7421-1 vom 2025-04-07",
"url": "https://ubuntu.com/security/notices/USN-7421-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7402-4 vom 2025-04-07",
"url": "https://ubuntu.com/security/notices/USN-7402-4"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1176-1 vom 2025-04-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020671.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1177-1 vom 2025-04-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020670.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1178-1 vom 2025-04-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020674.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1180-1 vom 2025-04-09",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/DGJ23MSZWYIA7MJ47RNVV6T27Z324VKA/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1183-1 vom 2025-04-09",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020678.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1195-1 vom 2025-04-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020680.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1194-1 vom 2025-04-10",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020681.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20271 vom 2025-04-14",
"url": "https://linux.oracle.com/errata/ELSA-2025-20271.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1241-1 vom 2025-04-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020694.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1263-1 vom 2025-04-15",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/Q4U3LRNKLFTX56NC6NKHFDU35E5WDD75/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1293-1 vom 2025-04-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020712.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS-2025-2826 vom 2025-04-16",
"url": "https://alas.aws.amazon.com/AL2/ALAS-2025-2826.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice LSN-0111-1 vom 2025-04-16",
"url": "https://ubuntu.com/security/notices/LSN-0111-1"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS-2025-1970 vom 2025-04-17",
"url": "https://alas.aws.amazon.com/ALAS-2025-1970.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7402-5 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7402-5"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7452-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7452-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7449-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7449-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7450-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7450-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7453-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7453-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7451-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7451-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7459-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7459-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7449-2 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7449-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7458-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7458-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1385-1 vom 2025-04-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020749.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7459-2 vom 2025-04-28",
"url": "https://ubuntu.com/security/notices/USN-7459-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7468-1 vom 2025-04-28",
"url": "https://ubuntu.com/security/notices/USN-7468-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1387-1 vom 2025-04-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020748.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-1 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-2 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-3 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-4 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-5 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-5"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:1468-1 vom 2025-05-07",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020787.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7506-1 vom 2025-05-12",
"url": "https://ubuntu.com/security/notices/USN-7506-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7506-2 vom 2025-05-12",
"url": "https://ubuntu.com/security/notices/USN-7506-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7506-3 vom 2025-05-12",
"url": "https://ubuntu.com/security/notices/USN-7506-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7506-4 vom 2025-05-13",
"url": "https://ubuntu.com/security/notices/USN-7506-4"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:6966 vom 2025-05-13",
"url": "https://access.redhat.com/errata/RHSA-2025:6966"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01603-1 vom 2025-05-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020857.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7523-1 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7523-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01601-1 vom 2025-05-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020858.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01652-1 vom 2025-05-22",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020873.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01663-1 vom 2025-05-22",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/DU7RF67HG4DNGVIK4N3FJE3HFFMU2MN2/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01675-1 vom 2025-05-22",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/YZPSLPGENDIE4UTR6FCCESWQ3QOSK3VY/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01683-1 vom 2025-05-23",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/YGYLL3K2ABJUCH3CMKBGI5WUGUD3SBR4/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01683-1 vom 2025-05-23",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/YGYLL3K2ABJUCH3CMKBGI5WUGUD3SBR4/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01682-1 vom 2025-05-23",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/KKBH4S7DAVQC7IRDOWVZ5LPPRUN4X2VY/"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7524-1 vom 2025-05-26",
"url": "https://ubuntu.com/security/notices/USN-7524-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7540-1 vom 2025-05-28",
"url": "https://ubuntu.com/security/notices/USN-7540-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7539-1 vom 2025-05-28",
"url": "https://ubuntu.com/security/notices/USN-7539-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20351-1 vom 2025-05-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020961.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20339-1 vom 2025-05-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020969.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20340-1 vom 2025-05-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020968.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice LSN-0112-1 vom 2025-05-29",
"url": "https://ubuntu.com/security/notices/LSN-0112-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20349-1 vom 2025-05-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020960.html"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2025-213 vom 2025-05-30",
"url": "https://www.dell.com/support/kbdoc/de-de/000326299/dsa-2025-213-security-update-for-dell-avamar-dell-networker-virtual-edition-nve-and-dell-powerprotect-dp-series-appliance-dell-integrated-data-protection-appliance-idpa-multiple-third-party-vulnerabilities"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20368-1 vom 2025-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021006.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20367-1 vom 2025-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021007.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20314-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021026.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20260-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021058.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20249-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021072.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20270-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021056.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20246-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021078.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20248-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021074.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20247-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021076.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20211-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021121.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20213-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021118.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20212-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021119.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20214-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021116.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20164-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021175.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20192-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021150.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20190-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021154.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20163-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021187.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01919-1 vom 2025-06-12",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021477.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01951-1 vom 2025-06-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021509.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01967-1 vom 2025-06-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021533.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:9581 vom 2025-06-25",
"url": "https://access.redhat.com/errata/RHSA-2025:9581"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02116-1 vom 2025-06-25",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/3AAQLUV5OW5RLJANJU3SMJEALS56RYAZ/"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:9580 vom 2025-06-25",
"url": "https://access.redhat.com/errata/RHSA-2025:9580"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-9580 vom 2025-06-26",
"url": "https://linux.oracle.com/errata/ELSA-2025-9580.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20436-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021673.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20437-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021672.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20431-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021676.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02127-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021660.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20435-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021674.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02162-1 vom 2025-06-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021702.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20450-1 vom 2025-06-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021717.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20448-1 vom 2025-06-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021719.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7608-3 vom 2025-07-02",
"url": "https://ubuntu.com/security/notices/USN-7608-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7608-2 vom 2025-07-02",
"url": "https://ubuntu.com/security/notices/USN-7608-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7608-1 vom 2025-07-01",
"url": "https://ubuntu.com/security/notices/USN-7608-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7608-4 vom 2025-07-03",
"url": "https://ubuntu.com/security/notices/USN-7608-4"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20406 vom 2025-07-08",
"url": "https://linux.oracle.com/errata/ELSA-2025-20406.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7608-5 vom 2025-07-09",
"url": "https://ubuntu.com/security/notices/USN-7608-5"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7608-6 vom 2025-07-11",
"url": "https://ubuntu.com/security/notices/USN-7608-6"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02322-1 vom 2025-07-15",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021810.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7655-1 vom 2025-07-18",
"url": "https://ubuntu.com/security/notices/USN-7655-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7671-1 vom 2025-07-25",
"url": "https://ubuntu.com/security/notices/USN-7671-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02537-1 vom 2025-07-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021978.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7671-2 vom 2025-07-29",
"url": "https://ubuntu.com/security/notices/USN-7671-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7608-7 vom 2025-07-30",
"url": "https://ubuntu.com/security/notices/USN-7608-7"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02588-1 vom 2025-08-01",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/VQYPF6FAXKWBHQ4POBUPZVPW4L73XJR5/"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7671-3 vom 2025-08-04",
"url": "https://ubuntu.com/security/notices/USN-7671-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7686-1 vom 2025-08-05",
"url": "https://ubuntu.com/security/notices/USN-7686-1"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7241589 vom 2025-08-06",
"url": "https://www.ibm.com/support/pages/node/7241589"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7909-5 vom 2025-12-15",
"url": "https://ubuntu.com/security/notices/USN-7909-5"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7933-1 vom 2025-12-15",
"url": "https://ubuntu.com/security/notices/USN-7933-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02848-1 vom 2025-08-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022193.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02852-1 vom 2025-08-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022201.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02850-1 vom 2025-08-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022203.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02844-1 vom 2025-08-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022194.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7712-1 vom 2025-08-22",
"url": "https://ubuntu.com/security/notices/USN-7712-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7712-2 vom 2025-09-02",
"url": "https://ubuntu.com/security/notices/USN-7712-2"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20553 vom 2025-09-10",
"url": "https://linux.oracle.com/errata/ELSA-2025-20553.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02844-2 vom 2025-09-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-September/022588.html"
},
{
"category": "external",
"summary": "Dell Security Update vom 2025-10-02",
"url": "https://www.dell.com/support/kbdoc/000376224"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:2588-1 vom 2025-11-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-November/023146.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:20518 vom 2025-11-11",
"url": "https://access.redhat.com/errata/RHSA-2025:20518"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2025:20518 vom 2025-11-21",
"url": "https://errata.build.resf.org/RLSA-2025:20518"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20518 vom 2025-11-25",
"url": "https://linux.oracle.com/errata/ELSA-2025-20518-0.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7909-1 vom 2025-12-04",
"url": "https://ubuntu.com/security/notices/USN-7909-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7909-3 vom 2025-12-04",
"url": "https://ubuntu.com/security/notices/USN-7909-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7909-2 vom 2025-12-04",
"url": "https://ubuntu.com/security/notices/USN-7909-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7910-1 vom 2025-12-04",
"url": "https://ubuntu.com/security/notices/USN-7910-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7909-4 vom 2025-12-05",
"url": "https://ubuntu.com/security/notices/USN-7909-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7938-1 vom 2025-12-16",
"url": "https://ubuntu.com/security/notices/USN-7938-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0149-1 vom 2026-01-19",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-January/023793.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": "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: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:20325-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024170.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20291-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024195.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20324-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024171.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20292-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024194.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20294-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024193.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20323-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024172.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": "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": "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: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: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: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: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:20876-1 vom 2026-03-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-March/025054.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8273-1 vom 2026-05-19",
"url": "https://ubuntu.com/security/notices/USN-8273-1"
}
],
"source_lang": "en-US",
"title": "Linux Kernel: Mehrere Schwachstellen erm\u00f6glichen nicht spezifizierten Angriff",
"tracking": {
"current_release_date": "2026-05-18T22:00:00.000+00:00",
"generator": {
"date": "2026-05-19T10:32:13.536+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.5.0"
}
},
"id": "WID-SEC-W-2024-3509",
"initial_release_date": "2024-11-19T23:00:00.000+00:00",
"revision_history": [
{
"date": "2024-11-19T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2024-11-24T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2024-12-15T23:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-12-16T23:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von Ubuntu und Oracle Linux aufgenommen"
},
{
"date": "2024-12-17T23:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2024-12-18T23:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von SUSE, Oracle Linux und Ubuntu aufgenommen"
},
{
"date": "2024-12-19T23:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-12-22T23:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2025-01-06T23:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-01-07T23:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von Ubuntu und Red Hat aufgenommen"
},
{
"date": "2025-01-08T23:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-01-09T23:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von Ubuntu und Google aufgenommen"
},
{
"date": "2025-01-12T23:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates von Ubuntu, Rocky Enterprise Software Foundation und Oracle Linux aufgenommen"
},
{
"date": "2025-01-14T23:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-01-15T23:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-01-19T23:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-01-21T23:00:00.000+00:00",
"number": "17",
"summary": "Neue Updates von SUSE und Red Hat aufgenommen"
},
{
"date": "2025-01-22T23:00:00.000+00:00",
"number": "18",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-01-26T23:00:00.000+00:00",
"number": "19",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-01-27T23:00:00.000+00:00",
"number": "20",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-01-29T23:00:00.000+00:00",
"number": "21",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-09T23:00:00.000+00:00",
"number": "22",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-02-10T23:00:00.000+00:00",
"number": "23",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-02-11T23:00:00.000+00:00",
"number": "24",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-12T23:00:00.000+00:00",
"number": "25",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-02-13T23:00:00.000+00:00",
"number": "26",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-16T23:00:00.000+00:00",
"number": "27",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-17T23:00:00.000+00:00",
"number": "28",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-19T23:00:00.000+00:00",
"number": "29",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-02-24T23:00:00.000+00:00",
"number": "30",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-02-25T23:00:00.000+00:00",
"number": "31",
"summary": "Neue Updates von Ubuntu und Amazon aufgenommen"
},
{
"date": "2025-02-27T23:00:00.000+00:00",
"number": "32",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-02T23:00:00.000+00:00",
"number": "33",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-03-03T23:00:00.000+00:00",
"number": "34",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-04T23:00:00.000+00:00",
"number": "35",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-05T23:00:00.000+00:00",
"number": "36",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-11T23:00:00.000+00:00",
"number": "37",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-03-13T23:00:00.000+00:00",
"number": "38",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2025-03-20T23:00:00.000+00:00",
"number": "39",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-03-23T23:00:00.000+00:00",
"number": "40",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2025-03-27T23:00:00.000+00:00",
"number": "41",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-30T22:00:00.000+00:00",
"number": "42",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-01T22:00:00.000+00:00",
"number": "43",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-02T22:00:00.000+00:00",
"number": "44",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-03T22:00:00.000+00:00",
"number": "45",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-06T22:00:00.000+00:00",
"number": "46",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-07T22:00:00.000+00:00",
"number": "47",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-08T22:00:00.000+00:00",
"number": "48",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-04-09T22:00:00.000+00:00",
"number": "49",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-04-10T22:00:00.000+00:00",
"number": "50",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-04-14T22:00:00.000+00:00",
"number": "51",
"summary": "Neue Updates von Oracle Linux und SUSE aufgenommen"
},
{
"date": "2025-04-15T22:00:00.000+00:00",
"number": "52",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-04-16T22:00:00.000+00:00",
"number": "53",
"summary": "Neue Updates von Amazon und Ubuntu aufgenommen"
},
{
"date": "2025-04-21T22:00:00.000+00:00",
"number": "54",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2025-04-22T22:00:00.000+00:00",
"number": "55",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-23T22:00:00.000+00:00",
"number": "56",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-24T22:00:00.000+00:00",
"number": "57",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-28T22:00:00.000+00:00",
"number": "58",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2025-05-06T22:00:00.000+00:00",
"number": "59",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-07T22:00:00.000+00:00",
"number": "60",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-05-12T22:00:00.000+00:00",
"number": "61",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-13T22:00:00.000+00:00",
"number": "62",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-05-20T22:00:00.000+00:00",
"number": "63",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2025-05-22T22:00:00.000+00:00",
"number": "64",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-05-26T22:00:00.000+00:00",
"number": "65",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-27T22:00:00.000+00:00",
"number": "66",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-29T22:00:00.000+00:00",
"number": "67",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2025-06-02T22:00:00.000+00:00",
"number": "68",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-03T22:00:00.000+00:00",
"number": "69",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-11T22:00:00.000+00:00",
"number": "70",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-15T22:00:00.000+00:00",
"number": "71",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-16T22:00:00.000+00:00",
"number": "72",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-23T22:00:00.000+00:00",
"number": "73",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-24T22:00:00.000+00:00",
"number": "74",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-25T22:00:00.000+00:00",
"number": "75",
"summary": "Neue Updates von SUSE, Red Hat und Oracle Linux aufgenommen"
},
{
"date": "2025-06-26T22:00:00.000+00:00",
"number": "76",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-29T22:00:00.000+00:00",
"number": "77",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-30T22:00:00.000+00:00",
"number": "78",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-07-01T22:00:00.000+00:00",
"number": "79",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-03T22:00:00.000+00:00",
"number": "80",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-08T22:00:00.000+00:00",
"number": "81",
"summary": "Neue Updates von Oracle Linux und Ubuntu aufgenommen"
},
{
"date": "2025-07-13T22:00:00.000+00:00",
"number": "82",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-15T22:00:00.000+00:00",
"number": "83",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-07-17T22:00:00.000+00:00",
"number": "84",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-27T22:00:00.000+00:00",
"number": "85",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-28T22:00:00.000+00:00",
"number": "86",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-07-29T22:00:00.000+00:00",
"number": "87",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-30T22:00:00.000+00:00",
"number": "88",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-08-03T22:00:00.000+00:00",
"number": "89",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-08-04T22:00:00.000+00:00",
"number": "90",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-08-05T22:00:00.000+00:00",
"number": "91",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-08-06T22:00:00.000+00:00",
"number": "92",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2025-08-18T22:00:00.000+00:00",
"number": "93",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-08-24T22:00:00.000+00:00",
"number": "94",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-09-02T22:00:00.000+00:00",
"number": "95",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-09-09T22:00:00.000+00:00",
"number": "96",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-09-18T22:00:00.000+00:00",
"number": "97",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-10-01T22:00:00.000+00:00",
"number": "98",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2025-11-04T23:00:00.000+00:00",
"number": "99",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-11-11T23:00:00.000+00:00",
"number": "100",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-11-23T23:00:00.000+00:00",
"number": "101",
"summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2025-11-24T23:00:00.000+00:00",
"number": "102",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-12-03T23:00:00.000+00:00",
"number": "103",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-12-04T23:00:00.000+00:00",
"number": "104",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-12-15T23:00:00.000+00:00",
"number": "105",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-12-16T23:00:00.000+00:00",
"number": "106",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-01-19T23:00:00.000+00:00",
"number": "107",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-11T23:00:00.000+00:00",
"number": "108",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-12T23:00:00.000+00:00",
"number": "109",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-15T23:00:00.000+00:00",
"number": "110",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-16T23:00:00.000+00:00",
"number": "111",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-26T23:00:00.000+00:00",
"number": "112",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-03-01T23:00:00.000+00:00",
"number": "113",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-03-24T23:00:00.000+00:00",
"number": "114",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-03-29T22:00:00.000+00:00",
"number": "115",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-03-30T22:00:00.000+00:00",
"number": "116",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-05-18T22:00:00.000+00:00",
"number": "117",
"summary": "Neue Updates von Ubuntu aufgenommen"
}
],
"status": "final",
"version": "117"
}
},
"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": "Dell Avamar",
"product": {
"name": "Dell Avamar",
"product_id": "T039664",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:-"
}
}
},
{
"category": "product_name",
"name": "Dell NetWorker",
"product": {
"name": "Dell NetWorker",
"product_id": "T034583",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:virtual"
}
}
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c8.4.0.0",
"product": {
"name": "Dell PowerProtect Data Domain \u003c8.4.0.0",
"product_id": "T045879"
}
},
{
"category": "product_version",
"name": "8.4.0.0",
"product": {
"name": "Dell PowerProtect Data Domain 8.4.0.0",
"product_id": "T045879-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:powerprotect_data_domain:8.4.0.0"
}
}
},
{
"category": "product_version_range",
"name": "\u003c7.10.1.70",
"product": {
"name": "Dell PowerProtect Data Domain \u003c7.10.1.70",
"product_id": "T045881"
}
},
{
"category": "product_version",
"name": "7.10.1.70",
"product": {
"name": "Dell PowerProtect Data Domain 7.10.1.70",
"product_id": "T045881-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:powerprotect_data_domain:7.10.1.70"
}
}
},
{
"category": "product_version_range",
"name": "\u003c7.13.1.40",
"product": {
"name": "Dell PowerProtect Data Domain \u003c7.13.1.40",
"product_id": "T047343"
}
},
{
"category": "product_version",
"name": "7.13.1.40",
"product": {
"name": "Dell PowerProtect Data Domain 7.13.1.40",
"product_id": "T047343-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:powerprotect_data_domain:7.13.1.40"
}
}
},
{
"category": "product_version_range",
"name": "\u003c8.3.1.10",
"product": {
"name": "Dell PowerProtect Data Domain \u003c8.3.1.10",
"product_id": "T047344"
}
},
{
"category": "product_version",
"name": "8.3.1.10",
"product": {
"name": "Dell PowerProtect Data Domain 8.3.1.10",
"product_id": "T047344-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:powerprotect_data_domain:8.3.1.10"
}
}
}
],
"category": "product_name",
"name": "PowerProtect Data Domain"
}
],
"category": "vendor",
"name": "Dell"
},
{
"branches": [
{
"category": "product_name",
"name": "Google Container-Optimized OS",
"product": {
"name": "Google Container-Optimized OS",
"product_id": "1607324",
"product_identification_helper": {
"cpe": "cpe:/o:google:container-optimized_os:-"
}
}
}
],
"category": "vendor",
"name": "Google"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c10.5.0.16",
"product": {
"name": "IBM DataPower Gateway \u003c10.5.0.16",
"product_id": "T042112"
}
},
{
"category": "product_version",
"name": "10.5.0.16",
"product": {
"name": "IBM DataPower Gateway 10.5.0.16",
"product_id": "T042112-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:datapower_gateway:10.5.0.16"
}
}
},
{
"category": "product_version_range",
"name": "\u003c10.6.0.4",
"product": {
"name": "IBM DataPower Gateway \u003c10.6.0.4",
"product_id": "T042113"
}
},
{
"category": "product_version",
"name": "10.6.0.4",
"product": {
"name": "IBM DataPower Gateway 10.6.0.4",
"product_id": "T042113-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:datapower_gateway:10.6.0.4"
}
}
}
],
"category": "product_name",
"name": "DataPower Gateway"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c7.5.0 UP11 IF02",
"product": {
"name": "IBM QRadar SIEM \u003c7.5.0 UP11 IF02",
"product_id": "T041397"
}
},
{
"category": "product_version",
"name": "7.5.0 UP11 IF02",
"product": {
"name": "IBM QRadar SIEM 7.5.0 UP11 IF02",
"product_id": "T041397-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:qradar_siem:7.5.0_up11_if02"
}
}
},
{
"category": "product_version_range",
"name": "\u003c7.5.0 UP13",
"product": {
"name": "IBM QRadar SIEM \u003c7.5.0 UP13",
"product_id": "T045828"
}
},
{
"category": "product_version",
"name": "7.5.0 UP13",
"product": {
"name": "IBM QRadar SIEM 7.5.0 UP13",
"product_id": "T045828-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:qradar_siem:7.5.0_up13"
}
}
}
],
"category": "product_name",
"name": "QRadar SIEM"
}
],
"category": "vendor",
"name": "IBM"
},
{
"branches": [
{
"category": "product_name",
"name": "Open Source Linux Kernel",
"product": {
"name": "Open Source Linux Kernel",
"product_id": "T039341",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:-"
}
}
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Oracle Linux",
"product": {
"name": "Oracle Linux",
"product_id": "T004914",
"product_identification_helper": {
"cpe": "cpe:/o:oracle:linux:-"
}
}
},
{
"category": "product_name",
"name": "Oracle Linux",
"product": {
"name": "Oracle Linux",
"product_id": "T042774",
"product_identification_helper": {
"cpe": "cpe:/o:oracle:linux:-"
}
}
}
],
"category": "product_name",
"name": "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": "vendor",
"name": "SUSE"
},
{
"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-2024-50303",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-50303"
},
{
"cve": "CVE-2024-50304",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-50304"
},
{
"cve": "CVE-2024-53042",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53042"
},
{
"cve": "CVE-2024-53043",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53043"
},
{
"cve": "CVE-2024-53044",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53044"
},
{
"cve": "CVE-2024-53045",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53045"
},
{
"cve": "CVE-2024-53046",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53046"
},
{
"cve": "CVE-2024-53047",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53047"
},
{
"cve": "CVE-2024-53048",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53048"
},
{
"cve": "CVE-2024-53049",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53049"
},
{
"cve": "CVE-2024-53050",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53050"
},
{
"cve": "CVE-2024-53051",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53051"
},
{
"cve": "CVE-2024-53052",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53052"
},
{
"cve": "CVE-2024-53053",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53053"
},
{
"cve": "CVE-2024-53054",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53054"
},
{
"cve": "CVE-2024-53055",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53055"
},
{
"cve": "CVE-2024-53056",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53056"
},
{
"cve": "CVE-2024-53057",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53057"
},
{
"cve": "CVE-2024-53058",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53058"
},
{
"cve": "CVE-2024-53059",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53059"
},
{
"cve": "CVE-2024-53060",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53060"
},
{
"cve": "CVE-2024-53061",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53061"
},
{
"cve": "CVE-2024-53062",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53062"
},
{
"cve": "CVE-2024-53063",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53063"
},
{
"cve": "CVE-2024-53064",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53064"
},
{
"cve": "CVE-2024-53065",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53065"
},
{
"cve": "CVE-2024-53066",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53066"
},
{
"cve": "CVE-2024-53067",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53067"
},
{
"cve": "CVE-2024-53068",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53068"
},
{
"cve": "CVE-2024-53069",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53069"
},
{
"cve": "CVE-2024-53070",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53070"
},
{
"cve": "CVE-2024-53071",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53071"
},
{
"cve": "CVE-2024-53072",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53072"
},
{
"cve": "CVE-2024-53073",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53073"
},
{
"cve": "CVE-2024-53074",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53074"
},
{
"cve": "CVE-2024-53075",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53075"
},
{
"cve": "CVE-2024-53076",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53076"
},
{
"cve": "CVE-2024-53077",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53077"
},
{
"cve": "CVE-2024-53078",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53078"
},
{
"cve": "CVE-2024-53079",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53079"
},
{
"cve": "CVE-2024-53080",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53080"
},
{
"cve": "CVE-2024-53081",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53081"
},
{
"cve": "CVE-2024-53082",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53082"
},
{
"cve": "CVE-2024-53083",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53083"
},
{
"cve": "CVE-2024-53084",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53084"
},
{
"cve": "CVE-2024-53085",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53085"
},
{
"cve": "CVE-2024-53086",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53086"
},
{
"cve": "CVE-2024-53087",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53087"
},
{
"cve": "CVE-2024-53088",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T045828",
"T004914",
"T032255",
"T039664",
"T042112",
"T042113",
"T042774",
"T039341",
"2951",
"T002207",
"T045879",
"T000126",
"T047343",
"398363",
"1607324",
"T045881",
"T047344",
"T041397"
]
},
"release_date": "2024-11-19T23:00:00.000+00:00",
"title": "CVE-2024-53088"
}
]
}
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.