Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2025-21632 (GCVE-0-2025-21632)
Vulnerability from cvelistv5 – Published: 2025-01-19 10:17 – Updated: 2026-05-11 21:03| Vendor | Product | Version | |
|---|---|---|---|
| Linux | Linux |
Affected:
2fab02b25ae7cf5f714ab456b03d9a3fe5ae98c9 , < 0a3a872214188e4268d31581ed0cd44508e038cf
(git)
Affected: 2fab02b25ae7cf5f714ab456b03d9a3fe5ae98c9 , < 6bfe1fc22f462bec87422cdcbec4d7a2f43ff01d (git) Affected: 2fab02b25ae7cf5f714ab456b03d9a3fe5ae98c9 , < a9d9c33132d49329ada647e4514d210d15e31d81 (git) |
|
| Linux | Linux |
Affected:
6.6
Unaffected: 0 , < 6.6 (semver) Unaffected: 6.6.72 , ≤ 6.6.* (semver) Unaffected: 6.12.10 , ≤ 6.12.* (semver) Unaffected: 6.13 , ≤ * (original_commit_for_fix) |
{
"containers": {
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"arch/x86/kernel/fpu/regset.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "0a3a872214188e4268d31581ed0cd44508e038cf",
"status": "affected",
"version": "2fab02b25ae7cf5f714ab456b03d9a3fe5ae98c9",
"versionType": "git"
},
{
"lessThan": "6bfe1fc22f462bec87422cdcbec4d7a2f43ff01d",
"status": "affected",
"version": "2fab02b25ae7cf5f714ab456b03d9a3fe5ae98c9",
"versionType": "git"
},
{
"lessThan": "a9d9c33132d49329ada647e4514d210d15e31d81",
"status": "affected",
"version": "2fab02b25ae7cf5f714ab456b03d9a3fe5ae98c9",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"arch/x86/kernel/fpu/regset.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.6"
},
{
"lessThan": "6.6",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.6.*",
"status": "unaffected",
"version": "6.6.72",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.10",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "6.13",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.6.72",
"versionStartIncluding": "6.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12.10",
"versionStartIncluding": "6.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.13",
"versionStartIncluding": "6.6",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nx86/fpu: Ensure shadow stack is active before \"getting\" registers\n\nThe x86 shadow stack support has its own set of registers. Those registers\nare XSAVE-managed, but they are \"supervisor state components\" which means\nthat userspace can not touch them with XSAVE/XRSTOR. It also means that\nthey are not accessible from the existing ptrace ABI for XSAVE state.\nThus, there is a new ptrace get/set interface for it.\n\nThe regset code that ptrace uses provides an -\u003eactive() handler in\naddition to the get/set ones. For shadow stack this -\u003eactive() handler\nverifies that shadow stack is enabled via the ARCH_SHSTK_SHSTK bit in the\nthread struct. The -\u003eactive() handler is checked from some call sites of\nthe regset get/set handlers, but not the ptrace ones. This was not\nunderstood when shadow stack support was put in place.\n\nAs a result, both the set/get handlers can be called with\nXFEATURE_CET_USER in its init state, which would cause get_xsave_addr() to\nreturn NULL and trigger a WARN_ON(). The ssp_set() handler luckily has an\nssp_active() check to avoid surprising the kernel with shadow stack\nbehavior when the kernel is not ready for it (ARCH_SHSTK_SHSTK==0). That\ncheck just happened to avoid the warning.\n\nBut the -\u003eget() side wasn\u0027t so lucky. It can be called with shadow stacks\ndisabled, triggering the warning in practice, as reported by Christina\nSchimpe:\n\nWARNING: CPU: 5 PID: 1773 at arch/x86/kernel/fpu/regset.c:198 ssp_get+0x89/0xa0\n[...]\nCall Trace:\n\u003cTASK\u003e\n? show_regs+0x6e/0x80\n? ssp_get+0x89/0xa0\n? __warn+0x91/0x150\n? ssp_get+0x89/0xa0\n? report_bug+0x19d/0x1b0\n? handle_bug+0x46/0x80\n? exc_invalid_op+0x1d/0x80\n? asm_exc_invalid_op+0x1f/0x30\n? __pfx_ssp_get+0x10/0x10\n? ssp_get+0x89/0xa0\n? ssp_get+0x52/0xa0\n__regset_get+0xad/0xf0\ncopy_regset_to_user+0x52/0xc0\nptrace_regset+0x119/0x140\nptrace_request+0x13c/0x850\n? wait_task_inactive+0x142/0x1d0\n? do_syscall_64+0x6d/0x90\narch_ptrace+0x102/0x300\n[...]\n\nEnsure that shadow stacks are active in a thread before looking them up\nin the XSAVE buffer. Since ARCH_SHSTK_SHSTK and user_ssp[SHSTK_EN] are\nset at the same time, the active check ensures that there will be\nsomething to find in the XSAVE buffer.\n\n[ dhansen: changelog/subject tweaks ]"
}
],
"providerMetadata": {
"dateUpdated": "2026-05-11T21:03:27.359Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/0a3a872214188e4268d31581ed0cd44508e038cf"
},
{
"url": "https://git.kernel.org/stable/c/6bfe1fc22f462bec87422cdcbec4d7a2f43ff01d"
},
{
"url": "https://git.kernel.org/stable/c/a9d9c33132d49329ada647e4514d210d15e31d81"
}
],
"title": "x86/fpu: Ensure shadow stack is active before \"getting\" registers",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2025-21632",
"datePublished": "2025-01-19T10:17:50.721Z",
"dateReserved": "2024-12-29T08:45:45.726Z",
"dateUpdated": "2026-05-11T21:03:27.359Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2025-21632",
"date": "2026-07-15",
"epss": "0.00202",
"percentile": "0.10185"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2025-21632\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2025-01-19T11:15:08.650\",\"lastModified\":\"2026-06-17T08:43:53.533\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nx86/fpu: Ensure shadow stack is active before \\\"getting\\\" registers\\n\\nThe x86 shadow stack support has its own set of registers. Those registers\\nare XSAVE-managed, but they are \\\"supervisor state components\\\" which means\\nthat userspace can not touch them with XSAVE/XRSTOR. It also means that\\nthey are not accessible from the existing ptrace ABI for XSAVE state.\\nThus, there is a new ptrace get/set interface for it.\\n\\nThe regset code that ptrace uses provides an -\u003eactive() handler in\\naddition to the get/set ones. For shadow stack this -\u003eactive() handler\\nverifies that shadow stack is enabled via the ARCH_SHSTK_SHSTK bit in the\\nthread struct. The -\u003eactive() handler is checked from some call sites of\\nthe regset get/set handlers, but not the ptrace ones. This was not\\nunderstood when shadow stack support was put in place.\\n\\nAs a result, both the set/get handlers can be called with\\nXFEATURE_CET_USER in its init state, which would cause get_xsave_addr() to\\nreturn NULL and trigger a WARN_ON(). The ssp_set() handler luckily has an\\nssp_active() check to avoid surprising the kernel with shadow stack\\nbehavior when the kernel is not ready for it (ARCH_SHSTK_SHSTK==0). That\\ncheck just happened to avoid the warning.\\n\\nBut the -\u003eget() side wasn\u0027t so lucky. It can be called with shadow stacks\\ndisabled, triggering the warning in practice, as reported by Christina\\nSchimpe:\\n\\nWARNING: CPU: 5 PID: 1773 at arch/x86/kernel/fpu/regset.c:198 ssp_get+0x89/0xa0\\n[...]\\nCall Trace:\\n\u003cTASK\u003e\\n? show_regs+0x6e/0x80\\n? ssp_get+0x89/0xa0\\n? __warn+0x91/0x150\\n? ssp_get+0x89/0xa0\\n? report_bug+0x19d/0x1b0\\n? handle_bug+0x46/0x80\\n? exc_invalid_op+0x1d/0x80\\n? asm_exc_invalid_op+0x1f/0x30\\n? __pfx_ssp_get+0x10/0x10\\n? ssp_get+0x89/0xa0\\n? ssp_get+0x52/0xa0\\n__regset_get+0xad/0xf0\\ncopy_regset_to_user+0x52/0xc0\\nptrace_regset+0x119/0x140\\nptrace_request+0x13c/0x850\\n? wait_task_inactive+0x142/0x1d0\\n? do_syscall_64+0x6d/0x90\\narch_ptrace+0x102/0x300\\n[...]\\n\\nEnsure that shadow stacks are active in a thread before looking them up\\nin the XSAVE buffer. Since ARCH_SHSTK_SHSTK and user_ssp[SHSTK_EN] are\\nset at the same time, the active check ensures that there will be\\nsomething to find in the XSAVE buffer.\\n\\n[ dhansen: changelog/subject tweaks ]\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: x86/fpu: Aseg\u00farese de que la pila de sombras est\u00e9 activa antes de \\\"obtener\\\" registros El soporte de la pila de sombras x86 tiene su propio conjunto de registros. Esos registros son administrados por XSAVE, pero son \\\"componentes de estado de supervisor\\\", lo que significa que el espacio de usuario no puede tocarlos con XSAVE/XRSTOR. Tambi\u00e9n significa que no son accesibles desde la ABI de ptrace existente para el estado XSAVE. Por lo tanto, hay una nueva interfaz get/set de ptrace para ello. El c\u00f3digo de conjunto de registros que usa ptrace proporciona un controlador -\u0026gt;active() adem\u00e1s de los de obtenci\u00f3n/configuraci\u00f3n. Para la pila de sombras, este controlador -\u0026gt;active() verifica que la pila de sombras est\u00e9 habilitada a trav\u00e9s del bit ARCH_SHSTK_SHSTK en la estructura del hilo. El controlador -\u0026gt;active() se verifica desde algunos sitios de llamada de los controladores get/set de conjuntos de registros, pero no de los de ptrace. Esto no se comprendi\u00f3 cuando se implement\u00f3 el soporte de la pila de sombras. Como resultado, ambos manejadores set/get pueden ser llamados con XFEATURE_CET_USER en su estado init, lo que har\u00eda que get_xsave_addr() devuelva NULL y active un WARN_ON(). El manejador ssp_set() afortunadamente tiene una verificaci\u00f3n ssp_active() para evitar sorprender al kernel con el comportamiento de la pila shadow cuando el kernel no est\u00e1 listo para ello (ARCH_SHSTK_SHSTK==0). Esa verificaci\u00f3n simplemente sucedi\u00f3 para evitar la advertencia. Pero el lado -\u0026gt;get() no tuvo tanta suerte. Puede ser llamado con las pilas shadow deshabilitadas, lo que activa la advertencia en la pr\u00e1ctica, como lo inform\u00f3 Christina Schimpe: ADVERTENCIA: CPU: 5 PID: 1773 en arch/x86/kernel/fpu/regset.c:198 ssp_get+0x89/0xa0 [...] Seguimiento de llamadas: ? show_regs+0x6e/0x80 ? ssp_get+0x89/0xa0 ? __warn+0x91/0x150 ? ssp_get+0x89/0xa0 ? report_bug+0x19d/0x1b0 ? handle_bug+0x46/0x80 ? exc_invalid_op+0x1d/0x80 ? asm_exc_invalid_op+0x1f/0x30 ? __pfx_ssp_get+0x10/0x10 ? ssp_get+0x89/0xa0 ? ssp_get+0x52/0xa0 __regset_get+0xad/0xf0 copy_regset_to_user+0x52/0xc0 ptrace_regset+0x119/0x140 ptrace_request+0x13c/0x850 ? wait_task_inactive+0x142/0x1d0 ? do_syscall_64+0x6d/0x90 arch_ptrace+0x102/0x300 [...] Aseg\u00farese de que las pilas de sombras est\u00e9n activas en un hilo antes de buscarlas en el b\u00fafer XSAVE. Dado que ARCH_SHSTK_SHSTK y user_ssp[SHSTK_EN] se configuran al mismo tiempo, la comprobaci\u00f3n activa garantiza que habr\u00e1 algo que encontrar en el b\u00fafer XSAVE. [ dhansen: registro de cambios/asunto ajustes ]\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"arch/x86/kernel/fpu/regset.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"2fab02b25ae7cf5f714ab456b03d9a3fe5ae98c9\",\"lessThan\":\"0a3a872214188e4268d31581ed0cd44508e038cf\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"2fab02b25ae7cf5f714ab456b03d9a3fe5ae98c9\",\"lessThan\":\"6bfe1fc22f462bec87422cdcbec4d7a2f43ff01d\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"2fab02b25ae7cf5f714ab456b03d9a3fe5ae98c9\",\"lessThan\":\"a9d9c33132d49329ada647e4514d210d15e31d81\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"arch/x86/kernel/fpu/regset.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.6\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.6\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.6.72\",\"lessThanOrEqual\":\"6.6.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.12.10\",\"lessThanOrEqual\":\"6.12.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.13\",\"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}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-476\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.6\",\"versionEndExcluding\":\"6.6.72\",\"matchCriteriaId\":\"E1508109-EF33-4484-B88A-C21484A4DF85\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.7\",\"versionEndExcluding\":\"6.12.10\",\"matchCriteriaId\":\"02D604F6-10D1-4F7B-A022-0888406A1121\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.13:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"62567B3C-6CEE-46D0-BC2E-B3717FBF7D13\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.13:rc2:*:*:*:*:*:*\",\"matchCriteriaId\":\"5A073481-106D-4B15-B4C7-FB0213B8E1D4\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.13:rc3:*:*:*:*:*:*\",\"matchCriteriaId\":\"DE491969-75AE-4A6B-9A58-8FC5AF98798F\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.13:rc4:*:*:*:*:*:*\",\"matchCriteriaId\":\"93C0660D-7FB8-4FBA-892A-B064BA71E49E\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.13:rc5:*:*:*:*:*:*\",\"matchCriteriaId\":\"034C36A6-C481-41F3-AE9A-D116E5BE6895\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.13:rc6:*:*:*:*:*:*\",\"matchCriteriaId\":\"8AF9DC49-2085-4FFB-A7E3-73DFAFECC7F2\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/0a3a872214188e4268d31581ed0cd44508e038cf\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/6bfe1fc22f462bec87422cdcbec4d7a2f43ff01d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/a9d9c33132d49329ada647e4514d210d15e31d81\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}",
"redhat_vex": {
"aggregate_severity": "Low",
"current_release_date": "2025-11-21T10:52:22+00:00",
"cve": "CVE-2025-21632",
"id": "CVE-2025-21632",
"initial_release_date": "2025-01-19T00:00:00+00:00",
"product_status:known_affected": "186",
"product_status:known_not_affected": "90",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "kernel: x86/fpu: Ensure shadow stack is active before \"getting\" registers",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2025/cve-2025-21632.json",
"version": "3"
}
}
}
usn-7379-2
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: - ARM64 architecture; - MIPS architecture; - PowerPC architecture; - RISC-V architecture; - S390 architecture; - x86 architecture; - Block layer subsystem; - Compute Acceleration Framework; - ACPI drivers; - Drivers core; - Ublk userspace block driver; - Virtio block driver; - Bluetooth drivers; - Buffer Sharing and Synchronization framework; - DMA engine subsystem; - EFI core; - GPIO subsystem; - GPU drivers; - HID subsystem; - Microsoft Hyper-V drivers; - Hardware monitoring drivers; - I3C subsystem; - IIO ADC drivers; - IIO subsystem; - InfiniBand drivers; - IOMMU subsystem; - LED subsystem; - Multiple devices driver; - Media drivers; - Microchip PCI driver; - MTD block device drivers; - Network drivers; - Mellanox network drivers; - STMicroelectronics network drivers; - NVME drivers; - PCI subsystem; - PHY drivers; - Pin controllers subsystem; - x86 platform drivers; - i.MX PM domains; - Power supply drivers; - Voltage and Current Regulator drivers; - SCSI subsystem; - i.MX SoC drivers; - SPI subsystem; - UFS subsystem; - USB Gadget drivers; - TDX Guest driver; - AFS file system; - BTRFS file system; - Ceph distributed file system; - File systems infrastructure; - F2FS file system; - JFFS2 file system; - JFS file system; - Network file systems library; - Network file system (NFS) server daemon; - NILFS2 file system; - File system notification infrastructure; - Overlay file system; - Diskquota system; - SMB network file system; - DRM display driver; - BPF subsystem; - VLANs driver; - KASAN memory debugging framework; - Memory management; - StackDepot library; - Bluetooth subsystem; - LAPB network protocol; - Netfilter; - io_uring subsystem; - Control group (cgroup); - DMA mapping infrastructure; - KCSAN framework; - Scheduler infrastructure; - Seccomp subsystem; - Tracing infrastructure; - Workqueue subsystem; - KUnit library; - CAN network layer; - Networking core; - DCCP (Datagram Congestion Control Protocol); - HSR network protocol; - IEEE802154.4 network protocol; - IPv4 networking; - IPv6 networking; - MAC80211 subsystem; - Multipath TCP; - NET/ROM layer; - Packet sockets; - RDS protocol; - Network traffic control; - SCTP protocol; - SMC sockets; - TIPC protocol; - Wireless networking; - eXpress Data Path; - SELinux security module; - ALSA framework; - Intel ASoC drivers; - SOF drivers; (CVE-2024-57921, CVE-2024-56614, CVE-2024-56558, CVE-2024-56589, CVE-2024-56662, CVE-2024-56610, CVE-2024-56717, CVE-2024-57890, CVE-2024-55639, CVE-2024-56562, CVE-2025-21633, CVE-2024-56598, CVE-2024-47794, CVE-2024-41935, CVE-2024-57901, CVE-2024-56587, CVE-2024-56581, CVE-2024-56783, CVE-2024-57888, CVE-2024-57809, CVE-2024-57926, CVE-2025-21650, CVE-2024-56634, CVE-2025-21639, CVE-2025-21656, CVE-2024-56578, CVE-2025-21632, CVE-2024-56784, CVE-2025-21644, CVE-2024-56776, CVE-2024-56764, CVE-2024-56652, CVE-2024-56550, CVE-2024-56569, CVE-2024-57904, CVE-2024-49569, CVE-2024-56770, CVE-2024-56606, CVE-2024-57806, CVE-2024-56646, CVE-2024-57895, CVE-2024-57880, CVE-2024-56650, CVE-2024-56591, CVE-2024-56590, CVE-2024-56642, CVE-2024-56713, CVE-2025-21663, CVE-2024-57938, CVE-2024-56760, CVE-2024-56583, CVE-2025-21662, CVE-2024-56629, CVE-2024-47408, CVE-2024-57850, CVE-2024-56777, CVE-2024-56626, CVE-2024-56773, CVE-2024-56647, CVE-2025-21664, CVE-2024-56564, CVE-2024-56597, CVE-2024-56623, CVE-2024-57897, CVE-2024-56670, CVE-2024-56567, CVE-2024-57931, CVE-2024-56761, CVE-2024-57935, CVE-2024-53690, CVE-2025-21640, CVE-2024-56608, CVE-2024-57878, CVE-2025-21648, CVE-2024-57898, CVE-2024-57889, CVE-2024-56644, CVE-2024-56763, CVE-2024-57900, CVE-2024-56575, CVE-2024-56786, CVE-2025-21635, CVE-2024-56559, CVE-2024-56659, CVE-2024-56621, CVE-2024-57908, CVE-2024-52319, CVE-2024-43098, CVE-2024-57838, CVE-2024-56782, CVE-2025-21631, CVE-2024-36476, CVE-2025-21649, CVE-2024-56667, CVE-2024-49571, CVE-2024-55916, CVE-2024-57887, CVE-2024-56640, CVE-2024-57801, CVE-2024-57886, CVE-2024-56582, CVE-2024-56561, CVE-2024-56665, CVE-2024-57805, CVE-2024-51729, CVE-2024-57857, CVE-2024-57876, CVE-2024-57896, CVE-2024-57799, CVE-2024-57925, CVE-2024-57917, CVE-2024-56664, CVE-2024-57913, CVE-2025-21660, CVE-2024-56596, CVE-2024-56671, CVE-2024-56595, CVE-2024-56781, CVE-2024-57912, CVE-2024-56638, CVE-2024-56636, CVE-2024-56669, CVE-2024-57945, CVE-2024-56633, CVE-2024-56605, CVE-2024-57882, CVE-2025-21652, CVE-2024-53179, CVE-2024-56599, CVE-2024-57892, CVE-2025-21647, CVE-2024-57910, CVE-2024-57792, CVE-2024-56768, CVE-2024-56711, CVE-2024-47143, CVE-2024-56577, CVE-2024-56574, CVE-2024-56765, CVE-2024-58087, CVE-2024-53685, CVE-2024-56787, CVE-2024-56592, CVE-2024-56368, CVE-2024-56615, CVE-2024-56712, CVE-2024-56648, CVE-2024-57874, CVE-2024-56653, CVE-2024-56656, CVE-2024-56641, CVE-2024-56719, CVE-2025-21658, CVE-2024-56637, CVE-2024-56709, CVE-2024-57843, CVE-2024-56588, CVE-2024-57807, CVE-2024-57939, CVE-2024-56594, CVE-2024-55642, CVE-2024-57841, CVE-2024-50051, CVE-2024-56663, CVE-2024-56654, CVE-2024-56369, CVE-2024-57885, CVE-2024-56779, CVE-2024-56772, CVE-2024-56617, CVE-2024-56624, CVE-2024-56570, CVE-2024-56639, CVE-2025-21642, CVE-2024-56603, CVE-2024-56604, CVE-2024-57875, CVE-2025-21653, CVE-2025-21654, CVE-2024-56645, CVE-2024-56775, CVE-2024-52332, CVE-2024-48875, CVE-2024-41932, CVE-2024-57804, CVE-2025-21661, CVE-2024-57932, CVE-2024-53681, CVE-2024-56563, CVE-2024-56609, CVE-2024-57798, CVE-2025-21637, CVE-2024-57940, CVE-2024-56675, CVE-2024-56630, CVE-2024-56565, CVE-2024-54460, CVE-2024-56573, CVE-2025-21645, CVE-2024-56715, CVE-2024-56632, CVE-2024-56622, CVE-2024-56673, CVE-2024-48881, CVE-2024-56593, CVE-2024-56620, CVE-2024-48876, CVE-2025-21643, CVE-2024-56657, CVE-2024-57905, CVE-2024-57802, CVE-2024-56766, CVE-2024-57893, CVE-2024-57894, CVE-2024-57903, CVE-2024-57902, CVE-2024-57934, CVE-2024-57881, CVE-2024-56602, CVE-2024-47809, CVE-2024-56580, CVE-2024-57899, CVE-2024-56759, CVE-2024-56586, CVE-2024-57839, CVE-2024-49568, CVE-2024-56660, CVE-2024-53687, CVE-2024-57907, CVE-2024-56601, CVE-2024-56767, CVE-2024-57916, CVE-2024-56616, CVE-2024-56557, CVE-2024-56566, CVE-2024-56643, CVE-2025-21638, CVE-2024-57879, CVE-2025-21655, CVE-2024-56618, CVE-2024-56758, CVE-2024-56576, CVE-2024-57849, CVE-2024-56372, CVE-2024-45828, CVE-2024-57795, CVE-2024-56710, CVE-2024-56568, CVE-2024-56769, CVE-2025-21834, CVE-2024-56716, CVE-2024-56613, CVE-2024-56584, CVE-2024-56552, CVE-2025-21659, CVE-2024-57929, CVE-2024-57946, CVE-2025-21646, CVE-2024-56572, CVE-2024-55881, CVE-2025-21651, CVE-2024-57924, CVE-2025-21634, CVE-2024-53682, CVE-2024-57872, CVE-2024-53680, CVE-2024-54680, CVE-2024-57918, CVE-2024-56780, CVE-2025-21636, CVE-2024-57906, CVE-2024-55641, CVE-2024-54455, CVE-2024-57919, CVE-2024-54683, CVE-2024-54193, CVE-2024-56635, CVE-2024-57933, CVE-2024-56611, CVE-2024-56551, CVE-2024-57883, CVE-2024-57793, CVE-2024-56631, CVE-2024-56600, CVE-2024-56651, CVE-2024-56714, CVE-2024-39282, CVE-2024-56627, CVE-2024-56649, CVE-2024-56579, CVE-2024-57791, CVE-2024-56774, CVE-2024-57944, CVE-2024-57911, CVE-2024-48873, CVE-2024-57884, CVE-2025-21629, CVE-2024-56778, CVE-2024-56619, CVE-2024-54191, CVE-2024-56771, CVE-2024-47141, CVE-2024-56757, CVE-2024-56718, CVE-2024-56655, CVE-2024-56607, CVE-2024-56785, CVE-2024-56625)
{
"affected": [
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1010-raspi",
"binary_version": "6.11.0-1010.10"
},
{
"binary_name": "linux-headers-6.11.0-1010-raspi",
"binary_version": "6.11.0-1010.10"
},
{
"binary_name": "linux-image-6.11.0-1010-raspi",
"binary_version": "6.11.0-1010.10"
},
{
"binary_name": "linux-image-6.11.0-1010-raspi-dbgsym",
"binary_version": "6.11.0-1010.10"
},
{
"binary_name": "linux-modules-6.11.0-1010-raspi",
"binary_version": "6.11.0-1010.10"
},
{
"binary_name": "linux-raspi-headers-6.11.0-1010",
"binary_version": "6.11.0-1010.10"
},
{
"binary_name": "linux-raspi-tools-6.11.0-1010",
"binary_version": "6.11.0-1010.10"
},
{
"binary_name": "linux-tools-6.11.0-1010-raspi",
"binary_version": "6.11.0-1010.10"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-raspi",
"purl": "pkg:deb/ubuntu/linux-raspi@6.11.0-1010.10?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1010.10"
}
],
"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",
"6.11.0-1008.8",
"6.11.0-1009.9"
]
}
],
"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 - ARM64 architecture;\n - MIPS architecture;\n - PowerPC architecture;\n - RISC-V architecture;\n - S390 architecture;\n - x86 architecture;\n - Block layer subsystem;\n - Compute Acceleration Framework;\n - ACPI drivers;\n - Drivers core;\n - Ublk userspace block driver;\n - Virtio block driver;\n - Bluetooth drivers;\n - Buffer Sharing and Synchronization framework;\n - DMA engine subsystem;\n - EFI core;\n - GPIO subsystem;\n - GPU drivers;\n - HID subsystem;\n - Microsoft Hyper-V drivers;\n - Hardware monitoring drivers;\n - I3C subsystem;\n - IIO ADC drivers;\n - IIO subsystem;\n - InfiniBand drivers;\n - IOMMU subsystem;\n - LED subsystem;\n - Multiple devices driver;\n - Media drivers;\n - Microchip PCI driver;\n - MTD block device drivers;\n - Network drivers;\n - Mellanox network drivers;\n - STMicroelectronics network drivers;\n - NVME drivers;\n - PCI subsystem;\n - PHY drivers;\n - Pin controllers subsystem;\n - x86 platform drivers;\n - i.MX PM domains;\n - Power supply drivers;\n - Voltage and Current Regulator drivers;\n - SCSI subsystem;\n - i.MX SoC drivers;\n - SPI subsystem;\n - UFS subsystem;\n - USB Gadget drivers;\n - TDX Guest driver;\n - AFS file system;\n - BTRFS file system;\n - Ceph distributed file system;\n - File systems infrastructure;\n - F2FS file system;\n - JFFS2 file system;\n - JFS file system;\n - Network file systems library;\n - Network file system (NFS) server daemon;\n - NILFS2 file system;\n - File system notification infrastructure;\n - Overlay file system;\n - Diskquota system;\n - SMB network file system;\n - DRM display driver;\n - BPF subsystem;\n - VLANs driver;\n - KASAN memory debugging framework;\n - Memory management;\n - StackDepot library;\n - Bluetooth subsystem;\n - LAPB network protocol;\n - Netfilter;\n - io_uring subsystem;\n - Control group (cgroup);\n - DMA mapping infrastructure;\n - KCSAN framework;\n - Scheduler infrastructure;\n - Seccomp subsystem;\n - Tracing infrastructure;\n - Workqueue subsystem;\n - KUnit library;\n - CAN network layer;\n - Networking core;\n - DCCP (Datagram Congestion Control Protocol);\n - HSR network protocol;\n - IEEE802154.4 network protocol;\n - IPv4 networking;\n - IPv6 networking;\n - MAC80211 subsystem;\n - Multipath TCP;\n - NET/ROM layer;\n - Packet sockets;\n - RDS protocol;\n - Network traffic control;\n - SCTP protocol;\n - SMC sockets;\n - TIPC protocol;\n - Wireless networking;\n - eXpress Data Path;\n - SELinux security module;\n - ALSA framework;\n - Intel ASoC drivers;\n - SOF drivers;\n(CVE-2024-57921, CVE-2024-56614, CVE-2024-56558, CVE-2024-56589,\nCVE-2024-56662, CVE-2024-56610, CVE-2024-56717, CVE-2024-57890,\nCVE-2024-55639, CVE-2024-56562, CVE-2025-21633, CVE-2024-56598,\nCVE-2024-47794, CVE-2024-41935, CVE-2024-57901, CVE-2024-56587,\nCVE-2024-56581, CVE-2024-56783, CVE-2024-57888, CVE-2024-57809,\nCVE-2024-57926, CVE-2025-21650, CVE-2024-56634, CVE-2025-21639,\nCVE-2025-21656, CVE-2024-56578, CVE-2025-21632, CVE-2024-56784,\nCVE-2025-21644, CVE-2024-56776, CVE-2024-56764, CVE-2024-56652,\nCVE-2024-56550, CVE-2024-56569, CVE-2024-57904, CVE-2024-49569,\nCVE-2024-56770, CVE-2024-56606, CVE-2024-57806, CVE-2024-56646,\nCVE-2024-57895, CVE-2024-57880, CVE-2024-56650, CVE-2024-56591,\nCVE-2024-56590, CVE-2024-56642, CVE-2024-56713, CVE-2025-21663,\nCVE-2024-57938, CVE-2024-56760, CVE-2024-56583, CVE-2025-21662,\nCVE-2024-56629, CVE-2024-47408, CVE-2024-57850, CVE-2024-56777,\nCVE-2024-56626, CVE-2024-56773, CVE-2024-56647, CVE-2025-21664,\nCVE-2024-56564, CVE-2024-56597, CVE-2024-56623, CVE-2024-57897,\nCVE-2024-56670, CVE-2024-56567, CVE-2024-57931, CVE-2024-56761,\nCVE-2024-57935, CVE-2024-53690, CVE-2025-21640, CVE-2024-56608,\nCVE-2024-57878, CVE-2025-21648, CVE-2024-57898, CVE-2024-57889,\nCVE-2024-56644, CVE-2024-56763, CVE-2024-57900, CVE-2024-56575,\nCVE-2024-56786, CVE-2025-21635, CVE-2024-56559, CVE-2024-56659,\nCVE-2024-56621, CVE-2024-57908, CVE-2024-52319, CVE-2024-43098,\nCVE-2024-57838, CVE-2024-56782, CVE-2025-21631, CVE-2024-36476,\nCVE-2025-21649, CVE-2024-56667, CVE-2024-49571, CVE-2024-55916,\nCVE-2024-57887, CVE-2024-56640, CVE-2024-57801, CVE-2024-57886,\nCVE-2024-56582, CVE-2024-56561, CVE-2024-56665, CVE-2024-57805,\nCVE-2024-51729, CVE-2024-57857, CVE-2024-57876, CVE-2024-57896,\nCVE-2024-57799, CVE-2024-57925, CVE-2024-57917, CVE-2024-56664,\nCVE-2024-57913, CVE-2025-21660, CVE-2024-56596, CVE-2024-56671,\nCVE-2024-56595, CVE-2024-56781, CVE-2024-57912, CVE-2024-56638,\nCVE-2024-56636, CVE-2024-56669, CVE-2024-57945, CVE-2024-56633,\nCVE-2024-56605, CVE-2024-57882, CVE-2025-21652, CVE-2024-53179,\nCVE-2024-56599, CVE-2024-57892, CVE-2025-21647, CVE-2024-57910,\nCVE-2024-57792, CVE-2024-56768, CVE-2024-56711, CVE-2024-47143,\nCVE-2024-56577, CVE-2024-56574, CVE-2024-56765, CVE-2024-58087,\nCVE-2024-53685, CVE-2024-56787, CVE-2024-56592, CVE-2024-56368,\nCVE-2024-56615, CVE-2024-56712, CVE-2024-56648, CVE-2024-57874,\nCVE-2024-56653, CVE-2024-56656, CVE-2024-56641, CVE-2024-56719,\nCVE-2025-21658, CVE-2024-56637, CVE-2024-56709, CVE-2024-57843,\nCVE-2024-56588, CVE-2024-57807, CVE-2024-57939, CVE-2024-56594,\nCVE-2024-55642, CVE-2024-57841, CVE-2024-50051, CVE-2024-56663,\nCVE-2024-56654, CVE-2024-56369, CVE-2024-57885, CVE-2024-56779,\nCVE-2024-56772, CVE-2024-56617, CVE-2024-56624, CVE-2024-56570,\nCVE-2024-56639, CVE-2025-21642, CVE-2024-56603, CVE-2024-56604,\nCVE-2024-57875, CVE-2025-21653, CVE-2025-21654, CVE-2024-56645,\nCVE-2024-56775, CVE-2024-52332, CVE-2024-48875, CVE-2024-41932,\nCVE-2024-57804, CVE-2025-21661, CVE-2024-57932, CVE-2024-53681,\nCVE-2024-56563, CVE-2024-56609, CVE-2024-57798, CVE-2025-21637,\nCVE-2024-57940, CVE-2024-56675, CVE-2024-56630, CVE-2024-56565,\nCVE-2024-54460, CVE-2024-56573, CVE-2025-21645, CVE-2024-56715,\nCVE-2024-56632, CVE-2024-56622, CVE-2024-56673, CVE-2024-48881,\nCVE-2024-56593, CVE-2024-56620, CVE-2024-48876, CVE-2025-21643,\nCVE-2024-56657, CVE-2024-57905, CVE-2024-57802, CVE-2024-56766,\nCVE-2024-57893, CVE-2024-57894, CVE-2024-57903, CVE-2024-57902,\nCVE-2024-57934, CVE-2024-57881, CVE-2024-56602, CVE-2024-47809,\nCVE-2024-56580, CVE-2024-57899, CVE-2024-56759, CVE-2024-56586,\nCVE-2024-57839, CVE-2024-49568, CVE-2024-56660, CVE-2024-53687,\nCVE-2024-57907, CVE-2024-56601, CVE-2024-56767, CVE-2024-57916,\nCVE-2024-56616, CVE-2024-56557, CVE-2024-56566, CVE-2024-56643,\nCVE-2025-21638, CVE-2024-57879, CVE-2025-21655, CVE-2024-56618,\nCVE-2024-56758, CVE-2024-56576, CVE-2024-57849, CVE-2024-56372,\nCVE-2024-45828, CVE-2024-57795, CVE-2024-56710, CVE-2024-56568,\nCVE-2024-56769, CVE-2025-21834, CVE-2024-56716, CVE-2024-56613,\nCVE-2024-56584, CVE-2024-56552, CVE-2025-21659, CVE-2024-57929,\nCVE-2024-57946, CVE-2025-21646, CVE-2024-56572, CVE-2024-55881,\nCVE-2025-21651, CVE-2024-57924, CVE-2025-21634, CVE-2024-53682,\nCVE-2024-57872, CVE-2024-53680, CVE-2024-54680, CVE-2024-57918,\nCVE-2024-56780, CVE-2025-21636, CVE-2024-57906, CVE-2024-55641,\nCVE-2024-54455, CVE-2024-57919, CVE-2024-54683, CVE-2024-54193,\nCVE-2024-56635, CVE-2024-57933, CVE-2024-56611, CVE-2024-56551,\nCVE-2024-57883, CVE-2024-57793, CVE-2024-56631, CVE-2024-56600,\nCVE-2024-56651, CVE-2024-56714, CVE-2024-39282, CVE-2024-56627,\nCVE-2024-56649, CVE-2024-56579, CVE-2024-57791, CVE-2024-56774,\nCVE-2024-57944, CVE-2024-57911, CVE-2024-48873, CVE-2024-57884,\nCVE-2025-21629, CVE-2024-56778, CVE-2024-56619, CVE-2024-54191,\nCVE-2024-56771, CVE-2024-47141, CVE-2024-56757, CVE-2024-56718,\nCVE-2024-56655, CVE-2024-56607, CVE-2024-56785, CVE-2024-56625)\n",
"id": "USN-7379-2",
"modified": "2025-04-01T13:42:23.127776Z",
"published": "2025-04-01T13:42:23.127776Z",
"references": [
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-7379-2"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-36476"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-39282"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-41932"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-41935"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-43098"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-45828"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47141"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47143"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47408"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47794"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47809"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-48873"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-48875"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-48876"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-48881"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49568"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49569"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49571"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50051"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-51729"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-52319"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-52332"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53179"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53680"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53681"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53682"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53685"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53687"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53690"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54191"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54193"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54455"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54460"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54683"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55639"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55641"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55642"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55881"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55916"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56368"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56369"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56372"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56550"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56551"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56552"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56557"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56558"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56559"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56561"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56562"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56563"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56564"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56565"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56566"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56567"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56568"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56569"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56570"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56572"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56573"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56574"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56575"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56576"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56577"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56578"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56579"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56580"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56581"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56582"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56583"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56584"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56586"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56587"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56588"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56589"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56590"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56591"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56592"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56593"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56594"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56595"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56596"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56597"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56598"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56599"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56600"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56601"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56602"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56603"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56604"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56605"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56606"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56607"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56608"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56609"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56610"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56611"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56613"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56614"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56615"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56616"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56617"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56618"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56619"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56620"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56621"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56622"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56623"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56624"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56625"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56626"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56627"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56629"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56630"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56631"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56632"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56633"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56634"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56635"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56636"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56637"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56638"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56639"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56640"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56641"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56642"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56643"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56644"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56645"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56646"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56647"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56648"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56649"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56650"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56651"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56652"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56653"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56654"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56655"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56656"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56657"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56659"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56660"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56662"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56663"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56664"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56665"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56667"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56669"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56670"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56671"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56673"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56675"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56709"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56710"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56711"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56712"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56713"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56714"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56715"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56716"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56717"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56718"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56719"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56757"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56758"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56759"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56760"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56761"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56763"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56764"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56765"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56766"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56767"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56768"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56769"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56770"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56771"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56772"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56773"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56774"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56775"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56776"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56777"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56778"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56779"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56780"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56781"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56782"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56783"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56784"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56785"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56787"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57791"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57792"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57793"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57795"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57798"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57799"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57801"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57802"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57804"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57805"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57806"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57807"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57809"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57838"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57839"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57841"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57843"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57849"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57850"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57857"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57872"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57874"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57875"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57876"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57878"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57879"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57880"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57881"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57882"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57883"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57884"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57885"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57886"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57887"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57888"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57889"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57890"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57892"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57893"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57895"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57896"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57897"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57898"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57899"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57900"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57901"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57902"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57903"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57904"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57905"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57906"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57907"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57908"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57910"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57911"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57912"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57913"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57916"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57917"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57918"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57919"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57921"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57924"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57925"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57926"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57929"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57931"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57932"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57933"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57934"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57935"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57938"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57939"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57940"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57944"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57945"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57946"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-58087"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21629"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21631"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21632"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21633"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21634"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21635"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21636"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21637"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21638"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21639"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21640"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21642"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21643"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21644"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21645"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21646"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21647"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21648"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21649"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21650"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21651"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21652"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21653"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21654"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21655"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21656"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21658"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21659"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21660"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21661"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21662"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21663"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21664"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21834"
}
],
"related": [
"CVE-2024-36476",
"UBUNTU-CVE-2024-36476",
"CVE-2024-39282",
"UBUNTU-CVE-2024-39282",
"CVE-2024-41932",
"UBUNTU-CVE-2024-41932",
"CVE-2024-41935",
"UBUNTU-CVE-2024-41935",
"CVE-2024-43098",
"UBUNTU-CVE-2024-43098",
"CVE-2024-45828",
"UBUNTU-CVE-2024-45828",
"CVE-2024-47141",
"UBUNTU-CVE-2024-47141",
"CVE-2024-47143",
"UBUNTU-CVE-2024-47143",
"CVE-2024-47408",
"UBUNTU-CVE-2024-47408",
"CVE-2024-47794",
"UBUNTU-CVE-2024-47794",
"CVE-2024-47809",
"UBUNTU-CVE-2024-47809",
"CVE-2024-48873",
"UBUNTU-CVE-2024-48873",
"CVE-2024-48875",
"UBUNTU-CVE-2024-48875",
"CVE-2024-48876",
"UBUNTU-CVE-2024-48876",
"CVE-2024-48881",
"UBUNTU-CVE-2024-48881",
"CVE-2024-49568",
"UBUNTU-CVE-2024-49568",
"CVE-2024-49569",
"UBUNTU-CVE-2024-49569",
"CVE-2024-49571",
"UBUNTU-CVE-2024-49571",
"CVE-2024-50051",
"UBUNTU-CVE-2024-50051",
"CVE-2024-51729",
"UBUNTU-CVE-2024-51729",
"CVE-2024-52319",
"UBUNTU-CVE-2024-52319",
"CVE-2024-52332",
"UBUNTU-CVE-2024-52332",
"CVE-2024-53179",
"UBUNTU-CVE-2024-53179",
"CVE-2024-53680",
"UBUNTU-CVE-2024-53680",
"CVE-2024-53681",
"UBUNTU-CVE-2024-53681",
"CVE-2024-53682",
"UBUNTU-CVE-2024-53682",
"CVE-2024-53685",
"UBUNTU-CVE-2024-53685",
"CVE-2024-53687",
"UBUNTU-CVE-2024-53687",
"CVE-2024-53690",
"UBUNTU-CVE-2024-53690",
"CVE-2024-54191",
"UBUNTU-CVE-2024-54191",
"CVE-2024-54193",
"UBUNTU-CVE-2024-54193",
"CVE-2024-54455",
"UBUNTU-CVE-2024-54455",
"CVE-2024-54460",
"UBUNTU-CVE-2024-54460",
"CVE-2024-54683",
"UBUNTU-CVE-2024-54683",
"CVE-2024-55639",
"UBUNTU-CVE-2024-55639",
"CVE-2024-55641",
"UBUNTU-CVE-2024-55641",
"CVE-2024-55642",
"UBUNTU-CVE-2024-55642",
"CVE-2024-55881",
"UBUNTU-CVE-2024-55881",
"CVE-2024-55916",
"UBUNTU-CVE-2024-55916",
"CVE-2024-56368",
"UBUNTU-CVE-2024-56368",
"CVE-2024-56369",
"UBUNTU-CVE-2024-56369",
"CVE-2024-56372",
"UBUNTU-CVE-2024-56372",
"CVE-2024-56550",
"UBUNTU-CVE-2024-56550",
"CVE-2024-56551",
"UBUNTU-CVE-2024-56551",
"CVE-2024-56552",
"UBUNTU-CVE-2024-56552",
"CVE-2024-56557",
"UBUNTU-CVE-2024-56557",
"CVE-2024-56558",
"UBUNTU-CVE-2024-56558",
"CVE-2024-56559",
"UBUNTU-CVE-2024-56559",
"CVE-2024-56561",
"UBUNTU-CVE-2024-56561",
"CVE-2024-56562",
"UBUNTU-CVE-2024-56562",
"CVE-2024-56563",
"UBUNTU-CVE-2024-56563",
"CVE-2024-56564",
"UBUNTU-CVE-2024-56564",
"CVE-2024-56565",
"UBUNTU-CVE-2024-56565",
"CVE-2024-56566",
"UBUNTU-CVE-2024-56566",
"CVE-2024-56567",
"UBUNTU-CVE-2024-56567",
"CVE-2024-56568",
"UBUNTU-CVE-2024-56568",
"CVE-2024-56569",
"UBUNTU-CVE-2024-56569",
"CVE-2024-56570",
"UBUNTU-CVE-2024-56570",
"CVE-2024-56572",
"UBUNTU-CVE-2024-56572",
"CVE-2024-56573",
"UBUNTU-CVE-2024-56573",
"CVE-2024-56574",
"UBUNTU-CVE-2024-56574",
"CVE-2024-56575",
"UBUNTU-CVE-2024-56575",
"CVE-2024-56576",
"UBUNTU-CVE-2024-56576",
"CVE-2024-56577",
"UBUNTU-CVE-2024-56577",
"CVE-2024-56578",
"UBUNTU-CVE-2024-56578",
"CVE-2024-56579",
"UBUNTU-CVE-2024-56579",
"CVE-2024-56580",
"UBUNTU-CVE-2024-56580",
"CVE-2024-56581",
"UBUNTU-CVE-2024-56581",
"CVE-2024-56582",
"UBUNTU-CVE-2024-56582",
"CVE-2024-56583",
"UBUNTU-CVE-2024-56583",
"CVE-2024-56584",
"UBUNTU-CVE-2024-56584",
"CVE-2024-56586",
"UBUNTU-CVE-2024-56586",
"CVE-2024-56587",
"UBUNTU-CVE-2024-56587",
"CVE-2024-56588",
"UBUNTU-CVE-2024-56588",
"CVE-2024-56589",
"UBUNTU-CVE-2024-56589",
"CVE-2024-56590",
"UBUNTU-CVE-2024-56590",
"CVE-2024-56591",
"UBUNTU-CVE-2024-56591",
"CVE-2024-56592",
"UBUNTU-CVE-2024-56592",
"CVE-2024-56593",
"UBUNTU-CVE-2024-56593",
"CVE-2024-56594",
"UBUNTU-CVE-2024-56594",
"CVE-2024-56595",
"UBUNTU-CVE-2024-56595",
"CVE-2024-56596",
"UBUNTU-CVE-2024-56596",
"CVE-2024-56597",
"UBUNTU-CVE-2024-56597",
"CVE-2024-56598",
"UBUNTU-CVE-2024-56598",
"CVE-2024-56599",
"UBUNTU-CVE-2024-56599",
"CVE-2024-56600",
"UBUNTU-CVE-2024-56600",
"CVE-2024-56601",
"UBUNTU-CVE-2024-56601",
"CVE-2024-56602",
"UBUNTU-CVE-2024-56602",
"CVE-2024-56603",
"UBUNTU-CVE-2024-56603",
"CVE-2024-56604",
"UBUNTU-CVE-2024-56604",
"CVE-2024-56605",
"UBUNTU-CVE-2024-56605",
"CVE-2024-56606",
"UBUNTU-CVE-2024-56606",
"CVE-2024-56607",
"UBUNTU-CVE-2024-56607",
"CVE-2024-56608",
"UBUNTU-CVE-2024-56608",
"CVE-2024-56609",
"UBUNTU-CVE-2024-56609",
"CVE-2024-56610",
"UBUNTU-CVE-2024-56610",
"CVE-2024-56611",
"UBUNTU-CVE-2024-56611",
"CVE-2024-56613",
"UBUNTU-CVE-2024-56613",
"CVE-2024-56614",
"UBUNTU-CVE-2024-56614",
"CVE-2024-56615",
"UBUNTU-CVE-2024-56615",
"CVE-2024-56616",
"UBUNTU-CVE-2024-56616",
"CVE-2024-56617",
"UBUNTU-CVE-2024-56617",
"CVE-2024-56618",
"UBUNTU-CVE-2024-56618",
"CVE-2024-56619",
"UBUNTU-CVE-2024-56619",
"CVE-2024-56620",
"UBUNTU-CVE-2024-56620",
"CVE-2024-56621",
"UBUNTU-CVE-2024-56621",
"CVE-2024-56622",
"UBUNTU-CVE-2024-56622",
"CVE-2024-56623",
"UBUNTU-CVE-2024-56623",
"CVE-2024-56624",
"UBUNTU-CVE-2024-56624",
"CVE-2024-56625",
"UBUNTU-CVE-2024-56625",
"CVE-2024-56626",
"UBUNTU-CVE-2024-56626",
"CVE-2024-56627",
"UBUNTU-CVE-2024-56627",
"CVE-2024-56629",
"UBUNTU-CVE-2024-56629",
"CVE-2024-56630",
"UBUNTU-CVE-2024-56630",
"CVE-2024-56631",
"UBUNTU-CVE-2024-56631",
"CVE-2024-56632",
"UBUNTU-CVE-2024-56632",
"CVE-2024-56633",
"UBUNTU-CVE-2024-56633",
"CVE-2024-56634",
"UBUNTU-CVE-2024-56634",
"CVE-2024-56635",
"UBUNTU-CVE-2024-56635",
"CVE-2024-56636",
"UBUNTU-CVE-2024-56636",
"CVE-2024-56637",
"UBUNTU-CVE-2024-56637",
"CVE-2024-56638",
"UBUNTU-CVE-2024-56638",
"CVE-2024-56639",
"UBUNTU-CVE-2024-56639",
"CVE-2024-56640",
"UBUNTU-CVE-2024-56640",
"CVE-2024-56641",
"UBUNTU-CVE-2024-56641",
"CVE-2024-56642",
"UBUNTU-CVE-2024-56642",
"CVE-2024-56643",
"UBUNTU-CVE-2024-56643",
"CVE-2024-56644",
"UBUNTU-CVE-2024-56644",
"CVE-2024-56645",
"UBUNTU-CVE-2024-56645",
"CVE-2024-56646",
"UBUNTU-CVE-2024-56646",
"CVE-2024-56647",
"UBUNTU-CVE-2024-56647",
"CVE-2024-56648",
"UBUNTU-CVE-2024-56648",
"CVE-2024-56649",
"UBUNTU-CVE-2024-56649",
"CVE-2024-56650",
"UBUNTU-CVE-2024-56650",
"CVE-2024-56651",
"UBUNTU-CVE-2024-56651",
"CVE-2024-56652",
"UBUNTU-CVE-2024-56652",
"CVE-2024-56653",
"UBUNTU-CVE-2024-56653",
"CVE-2024-56654",
"UBUNTU-CVE-2024-56654",
"CVE-2024-56655",
"UBUNTU-CVE-2024-56655",
"CVE-2024-56656",
"UBUNTU-CVE-2024-56656",
"CVE-2024-56657",
"UBUNTU-CVE-2024-56657",
"CVE-2024-56659",
"UBUNTU-CVE-2024-56659",
"CVE-2024-56660",
"UBUNTU-CVE-2024-56660",
"CVE-2024-56662",
"UBUNTU-CVE-2024-56662",
"CVE-2024-56663",
"UBUNTU-CVE-2024-56663",
"CVE-2024-56664",
"UBUNTU-CVE-2024-56664",
"CVE-2024-56665",
"UBUNTU-CVE-2024-56665",
"CVE-2024-56667",
"UBUNTU-CVE-2024-56667",
"CVE-2024-56669",
"UBUNTU-CVE-2024-56669",
"CVE-2024-56670",
"UBUNTU-CVE-2024-56670",
"CVE-2024-56671",
"UBUNTU-CVE-2024-56671",
"CVE-2024-56673",
"UBUNTU-CVE-2024-56673",
"CVE-2024-56675",
"UBUNTU-CVE-2024-56675",
"CVE-2024-56709",
"UBUNTU-CVE-2024-56709",
"CVE-2024-56710",
"UBUNTU-CVE-2024-56710",
"CVE-2024-56711",
"UBUNTU-CVE-2024-56711",
"CVE-2024-56712",
"UBUNTU-CVE-2024-56712",
"CVE-2024-56713",
"UBUNTU-CVE-2024-56713",
"CVE-2024-56714",
"UBUNTU-CVE-2024-56714",
"CVE-2024-56715",
"UBUNTU-CVE-2024-56715",
"CVE-2024-56716",
"UBUNTU-CVE-2024-56716",
"CVE-2024-56717",
"UBUNTU-CVE-2024-56717",
"CVE-2024-56718",
"UBUNTU-CVE-2024-56718",
"CVE-2024-56719",
"UBUNTU-CVE-2024-56719",
"CVE-2024-56757",
"UBUNTU-CVE-2024-56757",
"CVE-2024-56758",
"UBUNTU-CVE-2024-56758",
"CVE-2024-56759",
"UBUNTU-CVE-2024-56759",
"CVE-2024-56760",
"UBUNTU-CVE-2024-56760",
"CVE-2024-56761",
"UBUNTU-CVE-2024-56761",
"CVE-2024-56763",
"UBUNTU-CVE-2024-56763",
"CVE-2024-56764",
"UBUNTU-CVE-2024-56764",
"CVE-2024-56765",
"UBUNTU-CVE-2024-56765",
"CVE-2024-56766",
"UBUNTU-CVE-2024-56766",
"CVE-2024-56767",
"UBUNTU-CVE-2024-56767",
"CVE-2024-56768",
"UBUNTU-CVE-2024-56768",
"CVE-2024-56769",
"UBUNTU-CVE-2024-56769",
"CVE-2024-56770",
"UBUNTU-CVE-2024-56770",
"CVE-2024-56771",
"UBUNTU-CVE-2024-56771",
"CVE-2024-56772",
"UBUNTU-CVE-2024-56772",
"CVE-2024-56773",
"UBUNTU-CVE-2024-56773",
"CVE-2024-56774",
"UBUNTU-CVE-2024-56774",
"CVE-2024-56775",
"UBUNTU-CVE-2024-56775",
"CVE-2024-56776",
"UBUNTU-CVE-2024-56776",
"CVE-2024-56777",
"UBUNTU-CVE-2024-56777",
"CVE-2024-56778",
"UBUNTU-CVE-2024-56778",
"CVE-2024-56779",
"UBUNTU-CVE-2024-56779",
"CVE-2024-56780",
"UBUNTU-CVE-2024-56780",
"CVE-2024-56781",
"UBUNTU-CVE-2024-56781",
"CVE-2024-56782",
"UBUNTU-CVE-2024-56782",
"CVE-2024-56783",
"UBUNTU-CVE-2024-56783",
"CVE-2024-56784",
"UBUNTU-CVE-2024-56784",
"CVE-2024-56785",
"UBUNTU-CVE-2024-56785",
"CVE-2024-56787",
"UBUNTU-CVE-2024-56787",
"CVE-2024-57791",
"UBUNTU-CVE-2024-57791",
"CVE-2024-57792",
"UBUNTU-CVE-2024-57792",
"CVE-2024-57793",
"UBUNTU-CVE-2024-57793",
"CVE-2024-57795",
"UBUNTU-CVE-2024-57795",
"CVE-2024-57798",
"UBUNTU-CVE-2024-57798",
"CVE-2024-57799",
"UBUNTU-CVE-2024-57799",
"CVE-2024-57801",
"UBUNTU-CVE-2024-57801",
"CVE-2024-57802",
"UBUNTU-CVE-2024-57802",
"CVE-2024-57804",
"UBUNTU-CVE-2024-57804",
"CVE-2024-57805",
"UBUNTU-CVE-2024-57805",
"CVE-2024-57806",
"UBUNTU-CVE-2024-57806",
"CVE-2024-57807",
"UBUNTU-CVE-2024-57807",
"CVE-2024-57809",
"UBUNTU-CVE-2024-57809",
"CVE-2024-57838",
"UBUNTU-CVE-2024-57838",
"CVE-2024-57839",
"UBUNTU-CVE-2024-57839",
"CVE-2024-57841",
"UBUNTU-CVE-2024-57841",
"CVE-2024-57843",
"UBUNTU-CVE-2024-57843",
"CVE-2024-57849",
"UBUNTU-CVE-2024-57849",
"CVE-2024-57850",
"UBUNTU-CVE-2024-57850",
"CVE-2024-57857",
"UBUNTU-CVE-2024-57857",
"CVE-2024-57872",
"UBUNTU-CVE-2024-57872",
"CVE-2024-57874",
"UBUNTU-CVE-2024-57874",
"CVE-2024-57875",
"UBUNTU-CVE-2024-57875",
"CVE-2024-57876",
"UBUNTU-CVE-2024-57876",
"CVE-2024-57878",
"UBUNTU-CVE-2024-57878",
"CVE-2024-57879",
"UBUNTU-CVE-2024-57879",
"CVE-2024-57880",
"UBUNTU-CVE-2024-57880",
"CVE-2024-57881",
"UBUNTU-CVE-2024-57881",
"CVE-2024-57882",
"UBUNTU-CVE-2024-57882",
"CVE-2024-57883",
"UBUNTU-CVE-2024-57883",
"CVE-2024-57884",
"UBUNTU-CVE-2024-57884",
"CVE-2024-57885",
"UBUNTU-CVE-2024-57885",
"CVE-2024-57886",
"UBUNTU-CVE-2024-57886",
"CVE-2024-57887",
"UBUNTU-CVE-2024-57887",
"CVE-2024-57888",
"UBUNTU-CVE-2024-57888",
"CVE-2024-57889",
"UBUNTU-CVE-2024-57889",
"CVE-2024-57890",
"UBUNTU-CVE-2024-57890",
"CVE-2024-57892",
"UBUNTU-CVE-2024-57892",
"CVE-2024-57893",
"UBUNTU-CVE-2024-57893",
"CVE-2024-57895",
"UBUNTU-CVE-2024-57895",
"CVE-2024-57896",
"UBUNTU-CVE-2024-57896",
"CVE-2024-57897",
"UBUNTU-CVE-2024-57897",
"CVE-2024-57898",
"UBUNTU-CVE-2024-57898",
"CVE-2024-57899",
"UBUNTU-CVE-2024-57899",
"CVE-2024-57900",
"UBUNTU-CVE-2024-57900",
"CVE-2024-57901",
"UBUNTU-CVE-2024-57901",
"CVE-2024-57902",
"UBUNTU-CVE-2024-57902",
"CVE-2024-57903",
"UBUNTU-CVE-2024-57903",
"CVE-2024-57904",
"UBUNTU-CVE-2024-57904",
"CVE-2024-57905",
"UBUNTU-CVE-2024-57905",
"CVE-2024-57906",
"UBUNTU-CVE-2024-57906",
"CVE-2024-57907",
"UBUNTU-CVE-2024-57907",
"CVE-2024-57908",
"UBUNTU-CVE-2024-57908",
"CVE-2024-57910",
"UBUNTU-CVE-2024-57910",
"CVE-2024-57911",
"UBUNTU-CVE-2024-57911",
"CVE-2024-57912",
"UBUNTU-CVE-2024-57912",
"CVE-2024-57913",
"UBUNTU-CVE-2024-57913",
"CVE-2024-57916",
"UBUNTU-CVE-2024-57916",
"CVE-2024-57917",
"UBUNTU-CVE-2024-57917",
"CVE-2024-57918",
"UBUNTU-CVE-2024-57918",
"CVE-2024-57919",
"UBUNTU-CVE-2024-57919",
"CVE-2024-57921",
"UBUNTU-CVE-2024-57921",
"CVE-2024-57924",
"UBUNTU-CVE-2024-57924",
"CVE-2024-57925",
"UBUNTU-CVE-2024-57925",
"CVE-2024-57926",
"UBUNTU-CVE-2024-57926",
"CVE-2024-57929",
"UBUNTU-CVE-2024-57929",
"CVE-2024-57931",
"UBUNTU-CVE-2024-57931",
"CVE-2024-57932",
"UBUNTU-CVE-2024-57932",
"CVE-2024-57933",
"UBUNTU-CVE-2024-57933",
"CVE-2024-57934",
"UBUNTU-CVE-2024-57934",
"CVE-2024-57935",
"UBUNTU-CVE-2024-57935",
"CVE-2024-57938",
"UBUNTU-CVE-2024-57938",
"CVE-2024-57939",
"UBUNTU-CVE-2024-57939",
"CVE-2024-57940",
"UBUNTU-CVE-2024-57940",
"CVE-2024-57944",
"UBUNTU-CVE-2024-57944",
"CVE-2024-57945",
"UBUNTU-CVE-2024-57945",
"CVE-2024-57946",
"UBUNTU-CVE-2024-57946",
"CVE-2024-58087",
"UBUNTU-CVE-2024-58087",
"CVE-2025-21629",
"UBUNTU-CVE-2025-21629",
"CVE-2025-21631",
"UBUNTU-CVE-2025-21631",
"CVE-2025-21632",
"UBUNTU-CVE-2025-21632",
"CVE-2025-21633",
"UBUNTU-CVE-2025-21633",
"CVE-2025-21634",
"UBUNTU-CVE-2025-21634",
"CVE-2025-21635",
"UBUNTU-CVE-2025-21635",
"CVE-2025-21636",
"UBUNTU-CVE-2025-21636",
"CVE-2025-21637",
"UBUNTU-CVE-2025-21637",
"CVE-2025-21638",
"UBUNTU-CVE-2025-21638",
"CVE-2025-21639",
"UBUNTU-CVE-2025-21639",
"CVE-2025-21640",
"UBUNTU-CVE-2025-21640",
"CVE-2025-21642",
"UBUNTU-CVE-2025-21642",
"CVE-2025-21643",
"UBUNTU-CVE-2025-21643",
"CVE-2025-21644",
"UBUNTU-CVE-2025-21644",
"CVE-2025-21645",
"UBUNTU-CVE-2025-21645",
"CVE-2025-21646",
"UBUNTU-CVE-2025-21646",
"CVE-2025-21647",
"UBUNTU-CVE-2025-21647",
"CVE-2025-21648",
"UBUNTU-CVE-2025-21648",
"CVE-2025-21649",
"UBUNTU-CVE-2025-21649",
"CVE-2025-21650",
"UBUNTU-CVE-2025-21650",
"CVE-2025-21651",
"UBUNTU-CVE-2025-21651",
"CVE-2025-21652",
"UBUNTU-CVE-2025-21652",
"CVE-2025-21653",
"UBUNTU-CVE-2025-21653",
"CVE-2025-21654",
"UBUNTU-CVE-2025-21654",
"CVE-2025-21655",
"UBUNTU-CVE-2025-21655",
"CVE-2025-21656",
"UBUNTU-CVE-2025-21656",
"CVE-2025-21658",
"UBUNTU-CVE-2025-21658",
"CVE-2025-21659",
"UBUNTU-CVE-2025-21659",
"CVE-2025-21660",
"UBUNTU-CVE-2025-21660",
"CVE-2025-21661",
"UBUNTU-CVE-2025-21661",
"CVE-2025-21662",
"UBUNTU-CVE-2025-21662",
"CVE-2025-21663",
"UBUNTU-CVE-2025-21663",
"CVE-2025-21664",
"UBUNTU-CVE-2025-21664",
"CVE-2025-21834",
"UBUNTU-CVE-2025-21834"
],
"schema_version": "1.6.3",
"summary": "linux-raspi vulnerabilities"
}
usn-7380-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: - ARM64 architecture; - MIPS architecture; - PowerPC architecture; - RISC-V architecture; - S390 architecture; - x86 architecture; - Block layer subsystem; - Compute Acceleration Framework; - ACPI drivers; - Drivers core; - Ublk userspace block driver; - Virtio block driver; - Bluetooth drivers; - Buffer Sharing and Synchronization framework; - DMA engine subsystem; - EFI core; - GPIO subsystem; - GPU drivers; - HID subsystem; - Microsoft Hyper-V drivers; - Hardware monitoring drivers; - I3C subsystem; - IIO ADC drivers; - IIO subsystem; - InfiniBand drivers; - IOMMU subsystem; - LED subsystem; - Multiple devices driver; - Media drivers; - Microchip PCI driver; - MTD block device drivers; - Network drivers; - Mellanox network drivers; - STMicroelectronics network drivers; - NVME drivers; - PCI subsystem; - PHY drivers; - Pin controllers subsystem; - x86 platform drivers; - i.MX PM domains; - Power supply drivers; - Voltage and Current Regulator drivers; - SCSI subsystem; - i.MX SoC drivers; - SPI subsystem; - UFS subsystem; - USB Gadget drivers; - TDX Guest driver; - AFS file system; - BTRFS file system; - Ceph distributed file system; - File systems infrastructure; - F2FS file system; - JFFS2 file system; - JFS file system; - Network file systems library; - Network file system (NFS) server daemon; - NILFS2 file system; - File system notification infrastructure; - Overlay file system; - Diskquota system; - SMB network file system; - DRM display driver; - BPF subsystem; - VLANs driver; - KASAN memory debugging framework; - Memory management; - StackDepot library; - Bluetooth subsystem; - LAPB network protocol; - Network namespace; - Netfilter; - io_uring subsystem; - Control group (cgroup); - DMA mapping infrastructure; - KCSAN framework; - Scheduler infrastructure; - Seccomp subsystem; - Tracing infrastructure; - Workqueue subsystem; - KUnit library; - CAN network layer; - Networking core; - DCCP (Datagram Congestion Control Protocol); - HSR network protocol; - IEEE802154.4 network protocol; - IPv4 networking; - IPv6 networking; - MAC80211 subsystem; - Multipath TCP; - NET/ROM layer; - Packet sockets; - RDS protocol; - Network traffic control; - SCTP protocol; - SMC sockets; - TIPC protocol; - Wireless networking; - eXpress Data Path; - SELinux security module; - ALSA framework; - Intel ASoC drivers; - SOF drivers; (CVE-2024-57850, CVE-2024-57895, CVE-2024-57843, CVE-2024-56587, CVE-2024-56590, CVE-2024-56584, CVE-2024-56673, CVE-2024-56552, CVE-2024-56644, CVE-2024-57940, CVE-2024-47809, CVE-2024-56784, CVE-2024-57935, CVE-2024-56561, CVE-2025-21642, CVE-2024-56573, CVE-2024-53682, CVE-2024-39282, CVE-2024-56653, CVE-2024-56606, CVE-2024-56651, CVE-2024-56608, CVE-2024-56649, CVE-2024-56761, CVE-2024-57921, CVE-2024-57804, CVE-2024-57902, CVE-2024-56630, CVE-2024-56769, CVE-2024-56782, CVE-2025-21652, CVE-2025-21634, CVE-2024-48881, CVE-2024-41935, CVE-2024-57912, CVE-2024-56659, CVE-2025-21663, CVE-2024-57857, CVE-2024-56670, CVE-2024-56631, CVE-2024-52319, CVE-2024-56637, CVE-2024-56643, CVE-2025-21643, CVE-2024-55881, CVE-2024-56619, CVE-2024-53687, CVE-2025-21654, CVE-2025-21655, CVE-2024-56648, CVE-2024-57893, CVE-2025-21651, CVE-2024-57939, CVE-2024-56622, CVE-2024-56763, CVE-2024-56591, CVE-2024-56559, CVE-2024-57883, CVE-2024-56592, CVE-2024-57795, CVE-2024-56578, CVE-2024-56780, CVE-2024-57904, CVE-2024-57934, CVE-2024-56369, CVE-2024-57931, CVE-2024-47408, CVE-2025-21644, CVE-2024-56625, CVE-2025-21659, CVE-2024-56640, CVE-2024-56605, CVE-2024-56638, CVE-2024-56775, CVE-2024-47141, CVE-2024-56773, CVE-2024-53681, CVE-2024-57802, CVE-2024-56550, CVE-2024-56717, CVE-2025-21662, CVE-2024-53685, CVE-2024-57890, CVE-2024-56765, CVE-2025-21629, CVE-2024-57918, CVE-2024-57841, CVE-2024-57894, CVE-2025-21649, CVE-2024-56613, CVE-2024-56611, CVE-2024-57946, CVE-2024-57908, CVE-2024-57900, CVE-2024-56665, CVE-2024-56786, CVE-2024-56778, CVE-2024-56627, CVE-2024-56712, CVE-2024-52332, CVE-2025-21834, CVE-2024-56616, CVE-2024-56595, CVE-2024-56623, CVE-2024-57807, CVE-2024-41932, CVE-2024-57809, CVE-2024-54193, CVE-2025-21637, CVE-2024-54455, CVE-2024-56565, CVE-2024-57849, CVE-2024-56647, CVE-2024-57896, CVE-2024-57924, CVE-2024-57944, CVE-2024-56711, CVE-2024-57881, CVE-2024-56614, CVE-2024-54460, CVE-2024-56563, CVE-2024-58087, CVE-2024-57798, CVE-2024-56615, CVE-2024-53179, CVE-2024-57919, CVE-2024-56580, CVE-2024-56771, CVE-2024-56572, CVE-2024-56581, CVE-2024-56586, CVE-2024-56654, CVE-2024-57916, CVE-2024-56645, CVE-2024-56672, CVE-2024-56597, CVE-2024-56671, CVE-2024-56658, CVE-2024-56634, CVE-2024-49568, CVE-2024-56588, CVE-2024-56655, CVE-2024-48876, CVE-2024-57889, CVE-2025-21647, CVE-2024-47794, CVE-2024-57938, CVE-2024-56767, CVE-2025-21664, CVE-2024-56656, CVE-2024-56787, CVE-2024-57925, CVE-2024-57876, CVE-2024-57874, CVE-2024-56766, CVE-2024-57878, CVE-2024-57898, CVE-2024-56617, CVE-2024-56604, CVE-2025-21645, CVE-2024-56551, CVE-2024-57892, CVE-2024-49571, CVE-2024-45828, CVE-2024-57911, CVE-2025-21660, CVE-2024-56558, CVE-2024-57805, CVE-2024-53680, CVE-2024-57839, CVE-2024-56626, CVE-2024-57901, CVE-2024-56636, CVE-2024-56646, CVE-2024-56667, CVE-2025-21648, CVE-2024-56660, CVE-2024-56368, CVE-2024-56600, CVE-2024-57793, CVE-2024-36476, CVE-2024-56610, CVE-2024-57888, CVE-2024-57886, CVE-2024-57885, CVE-2024-56776, CVE-2025-21635, CVE-2025-21661, CVE-2024-56576, CVE-2024-56662, CVE-2024-56589, CVE-2024-57806, CVE-2024-57887, CVE-2025-21650, CVE-2024-56582, CVE-2024-56709, CVE-2024-57913, CVE-2024-56633, CVE-2024-56639, CVE-2024-56768, CVE-2024-57799, CVE-2024-56715, CVE-2025-21653, CVE-2024-57929, CVE-2024-54680, CVE-2024-56635, CVE-2024-57801, CVE-2024-50051, CVE-2024-56609, CVE-2024-56624, CVE-2024-51729, CVE-2024-56772, CVE-2024-56785, CVE-2024-56568, CVE-2024-56577, CVE-2025-21646, CVE-2024-56713, CVE-2024-56567, CVE-2024-56777, CVE-2024-56760, CVE-2024-57899, CVE-2024-56664, CVE-2024-57879, CVE-2024-56579, CVE-2024-56758, CVE-2024-56710, CVE-2024-48875, CVE-2024-56574, CVE-2024-55641, CVE-2024-56663, CVE-2024-55639, CVE-2024-57875, CVE-2024-57910, CVE-2024-56621, CVE-2024-57791, CVE-2024-56557, CVE-2024-56774, CVE-2024-56641, CVE-2024-56601, CVE-2024-56603, CVE-2024-57897, CVE-2024-56594, CVE-2024-57882, CVE-2024-56583, CVE-2025-21639, CVE-2025-21658, CVE-2024-56575, CVE-2024-57945, CVE-2024-57907, CVE-2024-56632, CVE-2024-56629, CVE-2025-21632, CVE-2024-56596, CVE-2024-56602, CVE-2024-54683, CVE-2024-56607, CVE-2024-56764, CVE-2024-53690, CVE-2024-56719, CVE-2024-56783, CVE-2024-57905, CVE-2024-57872, CVE-2024-56598, CVE-2024-55916, CVE-2024-54191, CVE-2024-56779, CVE-2024-57917, CVE-2024-56562, CVE-2024-56599, CVE-2024-56620, CVE-2024-56650, CVE-2024-57926, CVE-2024-56757, CVE-2024-56669, CVE-2025-21638, CVE-2024-56675, CVE-2024-56618, CVE-2024-56593, CVE-2025-21631, CVE-2024-57933, CVE-2024-55642, CVE-2024-57884, CVE-2024-56652, CVE-2024-57903, CVE-2024-56657, CVE-2024-56642, CVE-2024-43098, CVE-2024-57838, CVE-2024-56714, CVE-2024-56716, CVE-2024-56566, CVE-2024-56781, CVE-2025-21656, CVE-2024-56372, CVE-2024-56718, CVE-2024-57932, CVE-2024-57906, CVE-2024-56759, CVE-2024-48873, CVE-2024-49569, CVE-2024-56564, CVE-2024-56770, CVE-2025-21640, CVE-2024-57792, CVE-2024-56569, CVE-2025-21633, CVE-2025-21636, CVE-2024-47143, CVE-2024-56570, CVE-2024-57880)
| URL | Type | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{
"affected": [
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1011-lowlatency",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-buildinfo-6.11.0-1011-lowlatency-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1011-lowlatency",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-headers-6.11.0-1011-lowlatency",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-headers-6.11.0-1011-lowlatency-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-lowlatency",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-lowlatency-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-lowlatency-64k-dbgsym",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-lowlatency-dbgsym",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-lowlatency-cloud-tools-6.11.0-1011",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-lowlatency-headers-6.11.0-1011",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-lowlatency-lib-rust-6.11.0-1011-lowlatency",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-lowlatency-tools-6.11.0-1011",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-6.11.0-1011-lowlatency",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-6.11.0-1011-lowlatency-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1011-lowlatency",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-tools-6.11.0-1011-lowlatency",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-tools-6.11.0-1011-lowlatency-64k",
"binary_version": "6.11.0-1011.12"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-lowlatency",
"purl": "pkg:deb/ubuntu/linux-lowlatency@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-31.31.1",
"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",
"6.11.0-1010.11"
]
}
],
"aliases": [],
"details": "\nSeveral 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 - ARM64 architecture;\n - MIPS architecture;\n - PowerPC architecture;\n - RISC-V architecture;\n - S390 architecture;\n - x86 architecture;\n - Block layer subsystem;\n - Compute Acceleration Framework;\n - ACPI drivers;\n - Drivers core;\n - Ublk userspace block driver;\n - Virtio block driver;\n - Bluetooth drivers;\n - Buffer Sharing and Synchronization framework;\n - DMA engine subsystem;\n - EFI core;\n - GPIO subsystem;\n - GPU drivers;\n - HID subsystem;\n - Microsoft Hyper-V drivers;\n - Hardware monitoring drivers;\n - I3C subsystem;\n - IIO ADC drivers;\n - IIO subsystem;\n - InfiniBand drivers;\n - IOMMU subsystem;\n - LED subsystem;\n - Multiple devices driver;\n - Media drivers;\n - Microchip PCI driver;\n - MTD block device drivers;\n - Network drivers;\n - Mellanox network drivers;\n - STMicroelectronics network drivers;\n - NVME drivers;\n - PCI subsystem;\n - PHY drivers;\n - Pin controllers subsystem;\n - x86 platform drivers;\n - i.MX PM domains;\n - Power supply drivers;\n - Voltage and Current Regulator drivers;\n - SCSI subsystem;\n - i.MX SoC drivers;\n - SPI subsystem;\n - UFS subsystem;\n - USB Gadget drivers;\n - TDX Guest driver;\n - AFS file system;\n - BTRFS file system;\n - Ceph distributed file system;\n - File systems infrastructure;\n - F2FS file system;\n - JFFS2 file system;\n - JFS file system;\n - Network file systems library;\n - Network file system (NFS) server daemon;\n - NILFS2 file system;\n - File system notification infrastructure;\n - Overlay file system;\n - Diskquota system;\n - SMB network file system;\n - DRM display driver;\n - BPF subsystem;\n - VLANs driver;\n - KASAN memory debugging framework;\n - Memory management;\n - StackDepot library;\n - Bluetooth subsystem;\n - LAPB network protocol;\n - Network namespace;\n - Netfilter;\n - io_uring subsystem;\n - Control group (cgroup);\n - DMA mapping infrastructure;\n - KCSAN framework;\n - Scheduler infrastructure;\n - Seccomp subsystem;\n - Tracing infrastructure;\n - Workqueue subsystem;\n - KUnit library;\n - CAN network layer;\n - Networking core;\n - DCCP (Datagram Congestion Control Protocol);\n - HSR network protocol;\n - IEEE802154.4 network protocol;\n - IPv4 networking;\n - IPv6 networking;\n - MAC80211 subsystem;\n - Multipath TCP;\n - NET/ROM layer;\n - Packet sockets;\n - RDS protocol;\n - Network traffic control;\n - SCTP protocol;\n - SMC sockets;\n - TIPC protocol;\n - Wireless networking;\n - eXpress Data Path;\n - SELinux security module;\n - ALSA framework;\n - Intel ASoC drivers;\n - SOF drivers;\n(CVE-2024-57850, CVE-2024-57895, CVE-2024-57843, CVE-2024-56587,\nCVE-2024-56590, CVE-2024-56584, CVE-2024-56673, CVE-2024-56552,\nCVE-2024-56644, CVE-2024-57940, CVE-2024-47809, CVE-2024-56784,\nCVE-2024-57935, CVE-2024-56561, CVE-2025-21642, CVE-2024-56573,\nCVE-2024-53682, CVE-2024-39282, CVE-2024-56653, CVE-2024-56606,\nCVE-2024-56651, CVE-2024-56608, CVE-2024-56649, CVE-2024-56761,\nCVE-2024-57921, CVE-2024-57804, CVE-2024-57902, CVE-2024-56630,\nCVE-2024-56769, CVE-2024-56782, CVE-2025-21652, CVE-2025-21634,\nCVE-2024-48881, CVE-2024-41935, CVE-2024-57912, CVE-2024-56659,\nCVE-2025-21663, CVE-2024-57857, CVE-2024-56670, CVE-2024-56631,\nCVE-2024-52319, CVE-2024-56637, CVE-2024-56643, CVE-2025-21643,\nCVE-2024-55881, CVE-2024-56619, CVE-2024-53687, CVE-2025-21654,\nCVE-2025-21655, CVE-2024-56648, CVE-2024-57893, CVE-2025-21651,\nCVE-2024-57939, CVE-2024-56622, CVE-2024-56763, CVE-2024-56591,\nCVE-2024-56559, CVE-2024-57883, CVE-2024-56592, CVE-2024-57795,\nCVE-2024-56578, CVE-2024-56780, CVE-2024-57904, CVE-2024-57934,\nCVE-2024-56369, CVE-2024-57931, CVE-2024-47408, CVE-2025-21644,\nCVE-2024-56625, CVE-2025-21659, CVE-2024-56640, CVE-2024-56605,\nCVE-2024-56638, CVE-2024-56775, CVE-2024-47141, CVE-2024-56773,\nCVE-2024-53681, CVE-2024-57802, CVE-2024-56550, CVE-2024-56717,\nCVE-2025-21662, CVE-2024-53685, CVE-2024-57890, CVE-2024-56765,\nCVE-2025-21629, CVE-2024-57918, CVE-2024-57841, CVE-2024-57894,\nCVE-2025-21649, CVE-2024-56613, CVE-2024-56611, CVE-2024-57946,\nCVE-2024-57908, CVE-2024-57900, CVE-2024-56665, CVE-2024-56786,\nCVE-2024-56778, CVE-2024-56627, CVE-2024-56712, CVE-2024-52332,\nCVE-2025-21834, CVE-2024-56616, CVE-2024-56595, CVE-2024-56623,\nCVE-2024-57807, CVE-2024-41932, CVE-2024-57809, CVE-2024-54193,\nCVE-2025-21637, CVE-2024-54455, CVE-2024-56565, CVE-2024-57849,\nCVE-2024-56647, CVE-2024-57896, CVE-2024-57924, CVE-2024-57944,\nCVE-2024-56711, CVE-2024-57881, CVE-2024-56614, CVE-2024-54460,\nCVE-2024-56563, CVE-2024-58087, CVE-2024-57798, CVE-2024-56615,\nCVE-2024-53179, CVE-2024-57919, CVE-2024-56580, CVE-2024-56771,\nCVE-2024-56572, CVE-2024-56581, CVE-2024-56586, CVE-2024-56654,\nCVE-2024-57916, CVE-2024-56645, CVE-2024-56672, CVE-2024-56597,\nCVE-2024-56671, CVE-2024-56658, CVE-2024-56634, CVE-2024-49568,\nCVE-2024-56588, CVE-2024-56655, CVE-2024-48876, CVE-2024-57889,\nCVE-2025-21647, CVE-2024-47794, CVE-2024-57938, CVE-2024-56767,\nCVE-2025-21664, CVE-2024-56656, CVE-2024-56787, CVE-2024-57925,\nCVE-2024-57876, CVE-2024-57874, CVE-2024-56766, CVE-2024-57878,\nCVE-2024-57898, CVE-2024-56617, CVE-2024-56604, CVE-2025-21645,\nCVE-2024-56551, CVE-2024-57892, CVE-2024-49571, CVE-2024-45828,\nCVE-2024-57911, CVE-2025-21660, CVE-2024-56558, CVE-2024-57805,\nCVE-2024-53680, CVE-2024-57839, CVE-2024-56626, CVE-2024-57901,\nCVE-2024-56636, CVE-2024-56646, CVE-2024-56667, CVE-2025-21648,\nCVE-2024-56660, CVE-2024-56368, CVE-2024-56600, CVE-2024-57793,\nCVE-2024-36476, CVE-2024-56610, CVE-2024-57888, CVE-2024-57886,\nCVE-2024-57885, CVE-2024-56776, CVE-2025-21635, CVE-2025-21661,\nCVE-2024-56576, CVE-2024-56662, CVE-2024-56589, CVE-2024-57806,\nCVE-2024-57887, CVE-2025-21650, CVE-2024-56582, CVE-2024-56709,\nCVE-2024-57913, CVE-2024-56633, CVE-2024-56639, CVE-2024-56768,\nCVE-2024-57799, CVE-2024-56715, CVE-2025-21653, CVE-2024-57929,\nCVE-2024-54680, CVE-2024-56635, CVE-2024-57801, CVE-2024-50051,\nCVE-2024-56609, CVE-2024-56624, CVE-2024-51729, CVE-2024-56772,\nCVE-2024-56785, CVE-2024-56568, CVE-2024-56577, CVE-2025-21646,\nCVE-2024-56713, CVE-2024-56567, CVE-2024-56777, CVE-2024-56760,\nCVE-2024-57899, CVE-2024-56664, CVE-2024-57879, CVE-2024-56579,\nCVE-2024-56758, CVE-2024-56710, CVE-2024-48875, CVE-2024-56574,\nCVE-2024-55641, CVE-2024-56663, CVE-2024-55639, CVE-2024-57875,\nCVE-2024-57910, CVE-2024-56621, CVE-2024-57791, CVE-2024-56557,\nCVE-2024-56774, CVE-2024-56641, CVE-2024-56601, CVE-2024-56603,\nCVE-2024-57897, CVE-2024-56594, CVE-2024-57882, CVE-2024-56583,\nCVE-2025-21639, CVE-2025-21658, CVE-2024-56575, CVE-2024-57945,\nCVE-2024-57907, CVE-2024-56632, CVE-2024-56629, CVE-2025-21632,\nCVE-2024-56596, CVE-2024-56602, CVE-2024-54683, CVE-2024-56607,\nCVE-2024-56764, CVE-2024-53690, CVE-2024-56719, CVE-2024-56783,\nCVE-2024-57905, CVE-2024-57872, CVE-2024-56598, CVE-2024-55916,\nCVE-2024-54191, CVE-2024-56779, CVE-2024-57917, CVE-2024-56562,\nCVE-2024-56599, CVE-2024-56620, CVE-2024-56650, CVE-2024-57926,\nCVE-2024-56757, CVE-2024-56669, CVE-2025-21638, CVE-2024-56675,\nCVE-2024-56618, CVE-2024-56593, CVE-2025-21631, CVE-2024-57933,\nCVE-2024-55642, CVE-2024-57884, CVE-2024-56652, CVE-2024-57903,\nCVE-2024-56657, CVE-2024-56642, CVE-2024-43098, CVE-2024-57838,\nCVE-2024-56714, CVE-2024-56716, CVE-2024-56566, CVE-2024-56781,\nCVE-2025-21656, CVE-2024-56372, CVE-2024-56718, CVE-2024-57932,\nCVE-2024-57906, CVE-2024-56759, CVE-2024-48873, CVE-2024-49569,\nCVE-2024-56564, CVE-2024-56770, CVE-2025-21640, CVE-2024-57792,\nCVE-2024-56569, CVE-2025-21633, CVE-2025-21636, CVE-2024-47143,\nCVE-2024-56570, CVE-2024-57880)\n\n",
"id": "USN-7380-1",
"modified": "2025-03-27T16:48:30.754646Z",
"published": "2025-03-27T16:48:30.754646Z",
"references": [
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-7380-1"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-36476"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-39282"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-41932"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-41935"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-43098"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-45828"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47141"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47143"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47408"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47794"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47809"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-48873"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-48875"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-48876"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-48881"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49568"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49569"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49571"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50051"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-51729"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-52319"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-52332"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53179"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53680"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53681"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53682"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53685"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53687"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53690"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54191"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54193"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54455"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54460"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-54683"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55639"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55641"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55642"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55881"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-55916"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56368"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56369"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56372"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56550"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56551"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56552"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56557"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56558"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56559"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56561"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56562"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56563"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56564"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56565"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56566"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56567"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56568"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56569"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56570"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56572"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56573"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56574"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56575"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56576"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56577"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56578"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56579"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56580"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56581"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56582"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56583"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56584"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56586"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56587"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56588"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56589"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56590"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56591"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56592"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56593"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56594"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56595"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56596"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56597"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56598"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56599"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56600"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56601"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56602"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56603"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56604"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56605"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56606"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56607"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56608"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56609"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56610"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56611"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56613"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56614"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56615"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56616"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56617"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56618"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56619"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56620"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56621"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56622"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56623"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56624"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56625"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56626"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56627"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56629"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56630"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56631"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56632"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56633"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56634"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56635"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56636"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56637"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56638"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56639"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56640"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56641"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56642"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56643"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56644"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56645"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56646"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56647"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56648"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56649"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56650"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56651"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56652"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56653"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56654"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56655"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56656"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56657"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56658"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56659"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56660"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56662"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56663"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56664"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56665"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56667"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56669"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56670"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56671"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56672"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56673"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56675"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56709"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56710"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56711"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56712"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56713"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56714"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56715"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56716"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56717"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56718"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56719"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56757"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56758"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56759"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56760"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56761"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56763"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56764"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56765"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56766"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56767"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56768"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56769"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56770"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56771"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56772"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56773"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56774"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56775"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56776"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56777"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56778"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56779"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56780"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56781"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56782"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56783"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56784"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56785"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56787"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57791"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57792"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57793"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57795"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57798"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57799"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57801"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57802"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57804"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57805"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57806"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57807"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57809"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57838"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57839"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57841"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57843"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57849"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57850"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57857"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57872"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57874"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57875"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57876"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57878"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57879"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57880"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57881"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57882"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57883"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57884"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57885"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57886"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57887"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57888"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57889"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57890"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57892"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57893"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57895"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57896"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57897"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57898"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57899"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57900"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57901"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57902"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57903"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57904"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57905"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57906"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57907"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57908"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57910"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57911"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57912"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57913"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57916"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57917"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57918"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57919"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57921"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57924"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57925"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57926"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57929"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57931"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57932"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57933"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57934"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57935"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57938"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57939"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57940"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57944"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57945"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-57946"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-58087"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21629"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21631"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21632"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21633"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21634"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21635"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21636"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21637"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21638"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21639"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21640"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21642"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21643"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21644"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21645"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21646"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21647"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21648"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21649"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21650"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21651"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21652"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21653"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21654"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21655"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21656"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21658"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21659"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21660"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21661"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21662"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21663"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21664"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-21834"
}
],
"related": [
"CVE-2024-36476",
"UBUNTU-CVE-2024-36476",
"CVE-2024-39282",
"UBUNTU-CVE-2024-39282",
"CVE-2024-41932",
"UBUNTU-CVE-2024-41932",
"CVE-2024-41935",
"UBUNTU-CVE-2024-41935",
"CVE-2024-43098",
"UBUNTU-CVE-2024-43098",
"CVE-2024-45828",
"UBUNTU-CVE-2024-45828",
"CVE-2024-47141",
"UBUNTU-CVE-2024-47141",
"CVE-2024-47143",
"UBUNTU-CVE-2024-47143",
"CVE-2024-47408",
"UBUNTU-CVE-2024-47408",
"CVE-2024-47794",
"UBUNTU-CVE-2024-47794",
"CVE-2024-47809",
"UBUNTU-CVE-2024-47809",
"CVE-2024-48873",
"UBUNTU-CVE-2024-48873",
"CVE-2024-48875",
"UBUNTU-CVE-2024-48875",
"CVE-2024-48876",
"UBUNTU-CVE-2024-48876",
"CVE-2024-48881",
"UBUNTU-CVE-2024-48881",
"CVE-2024-49568",
"UBUNTU-CVE-2024-49568",
"CVE-2024-49569",
"UBUNTU-CVE-2024-49569",
"CVE-2024-49571",
"UBUNTU-CVE-2024-49571",
"CVE-2024-50051",
"UBUNTU-CVE-2024-50051",
"CVE-2024-51729",
"UBUNTU-CVE-2024-51729",
"CVE-2024-52319",
"UBUNTU-CVE-2024-52319",
"CVE-2024-52332",
"UBUNTU-CVE-2024-52332",
"CVE-2024-53179",
"UBUNTU-CVE-2024-53179",
"CVE-2024-53680",
"UBUNTU-CVE-2024-53680",
"CVE-2024-53681",
"UBUNTU-CVE-2024-53681",
"CVE-2024-53682",
"UBUNTU-CVE-2024-53682",
"CVE-2024-53685",
"UBUNTU-CVE-2024-53685",
"CVE-2024-53687",
"UBUNTU-CVE-2024-53687",
"CVE-2024-53690",
"UBUNTU-CVE-2024-53690",
"CVE-2024-54191",
"UBUNTU-CVE-2024-54191",
"CVE-2024-54193",
"UBUNTU-CVE-2024-54193",
"CVE-2024-54455",
"UBUNTU-CVE-2024-54455",
"CVE-2024-54460",
"UBUNTU-CVE-2024-54460",
"CVE-2024-54683",
"UBUNTU-CVE-2024-54683",
"CVE-2024-55639",
"UBUNTU-CVE-2024-55639",
"CVE-2024-55641",
"UBUNTU-CVE-2024-55641",
"CVE-2024-55642",
"UBUNTU-CVE-2024-55642",
"CVE-2024-55881",
"UBUNTU-CVE-2024-55881",
"CVE-2024-55916",
"UBUNTU-CVE-2024-55916",
"CVE-2024-56368",
"UBUNTU-CVE-2024-56368",
"CVE-2024-56369",
"UBUNTU-CVE-2024-56369",
"CVE-2024-56372",
"UBUNTU-CVE-2024-56372",
"CVE-2024-56550",
"UBUNTU-CVE-2024-56550",
"CVE-2024-56551",
"UBUNTU-CVE-2024-56551",
"CVE-2024-56552",
"UBUNTU-CVE-2024-56552",
"CVE-2024-56557",
"UBUNTU-CVE-2024-56557",
"CVE-2024-56558",
"UBUNTU-CVE-2024-56558",
"CVE-2024-56559",
"UBUNTU-CVE-2024-56559",
"CVE-2024-56561",
"UBUNTU-CVE-2024-56561",
"CVE-2024-56562",
"UBUNTU-CVE-2024-56562",
"CVE-2024-56563",
"UBUNTU-CVE-2024-56563",
"CVE-2024-56564",
"UBUNTU-CVE-2024-56564",
"CVE-2024-56565",
"UBUNTU-CVE-2024-56565",
"CVE-2024-56566",
"UBUNTU-CVE-2024-56566",
"CVE-2024-56567",
"UBUNTU-CVE-2024-56567",
"CVE-2024-56568",
"UBUNTU-CVE-2024-56568",
"CVE-2024-56569",
"UBUNTU-CVE-2024-56569",
"CVE-2024-56570",
"UBUNTU-CVE-2024-56570",
"CVE-2024-56572",
"UBUNTU-CVE-2024-56572",
"CVE-2024-56573",
"UBUNTU-CVE-2024-56573",
"CVE-2024-56574",
"UBUNTU-CVE-2024-56574",
"CVE-2024-56575",
"UBUNTU-CVE-2024-56575",
"CVE-2024-56576",
"UBUNTU-CVE-2024-56576",
"CVE-2024-56577",
"UBUNTU-CVE-2024-56577",
"CVE-2024-56578",
"UBUNTU-CVE-2024-56578",
"CVE-2024-56579",
"UBUNTU-CVE-2024-56579",
"CVE-2024-56580",
"UBUNTU-CVE-2024-56580",
"CVE-2024-56581",
"UBUNTU-CVE-2024-56581",
"CVE-2024-56582",
"UBUNTU-CVE-2024-56582",
"CVE-2024-56583",
"UBUNTU-CVE-2024-56583",
"CVE-2024-56584",
"UBUNTU-CVE-2024-56584",
"CVE-2024-56586",
"UBUNTU-CVE-2024-56586",
"CVE-2024-56587",
"UBUNTU-CVE-2024-56587",
"CVE-2024-56588",
"UBUNTU-CVE-2024-56588",
"CVE-2024-56589",
"UBUNTU-CVE-2024-56589",
"CVE-2024-56590",
"UBUNTU-CVE-2024-56590",
"CVE-2024-56591",
"UBUNTU-CVE-2024-56591",
"CVE-2024-56592",
"UBUNTU-CVE-2024-56592",
"CVE-2024-56593",
"UBUNTU-CVE-2024-56593",
"CVE-2024-56594",
"UBUNTU-CVE-2024-56594",
"CVE-2024-56595",
"UBUNTU-CVE-2024-56595",
"CVE-2024-56596",
"UBUNTU-CVE-2024-56596",
"CVE-2024-56597",
"UBUNTU-CVE-2024-56597",
"CVE-2024-56598",
"UBUNTU-CVE-2024-56598",
"CVE-2024-56599",
"UBUNTU-CVE-2024-56599",
"CVE-2024-56600",
"UBUNTU-CVE-2024-56600",
"CVE-2024-56601",
"UBUNTU-CVE-2024-56601",
"CVE-2024-56602",
"UBUNTU-CVE-2024-56602",
"CVE-2024-56603",
"UBUNTU-CVE-2024-56603",
"CVE-2024-56604",
"UBUNTU-CVE-2024-56604",
"CVE-2024-56605",
"UBUNTU-CVE-2024-56605",
"CVE-2024-56606",
"UBUNTU-CVE-2024-56606",
"CVE-2024-56607",
"UBUNTU-CVE-2024-56607",
"CVE-2024-56608",
"UBUNTU-CVE-2024-56608",
"CVE-2024-56609",
"UBUNTU-CVE-2024-56609",
"CVE-2024-56610",
"UBUNTU-CVE-2024-56610",
"CVE-2024-56611",
"UBUNTU-CVE-2024-56611",
"CVE-2024-56613",
"UBUNTU-CVE-2024-56613",
"CVE-2024-56614",
"UBUNTU-CVE-2024-56614",
"CVE-2024-56615",
"UBUNTU-CVE-2024-56615",
"CVE-2024-56616",
"UBUNTU-CVE-2024-56616",
"CVE-2024-56617",
"UBUNTU-CVE-2024-56617",
"CVE-2024-56618",
"UBUNTU-CVE-2024-56618",
"CVE-2024-56619",
"UBUNTU-CVE-2024-56619",
"CVE-2024-56620",
"UBUNTU-CVE-2024-56620",
"CVE-2024-56621",
"UBUNTU-CVE-2024-56621",
"CVE-2024-56622",
"UBUNTU-CVE-2024-56622",
"CVE-2024-56623",
"UBUNTU-CVE-2024-56623",
"CVE-2024-56624",
"UBUNTU-CVE-2024-56624",
"CVE-2024-56625",
"UBUNTU-CVE-2024-56625",
"CVE-2024-56626",
"UBUNTU-CVE-2024-56626",
"CVE-2024-56627",
"UBUNTU-CVE-2024-56627",
"CVE-2024-56629",
"UBUNTU-CVE-2024-56629",
"CVE-2024-56630",
"UBUNTU-CVE-2024-56630",
"CVE-2024-56631",
"UBUNTU-CVE-2024-56631",
"CVE-2024-56632",
"UBUNTU-CVE-2024-56632",
"CVE-2024-56633",
"UBUNTU-CVE-2024-56633",
"CVE-2024-56634",
"UBUNTU-CVE-2024-56634",
"CVE-2024-56635",
"UBUNTU-CVE-2024-56635",
"CVE-2024-56636",
"UBUNTU-CVE-2024-56636",
"CVE-2024-56637",
"UBUNTU-CVE-2024-56637",
"CVE-2024-56638",
"UBUNTU-CVE-2024-56638",
"CVE-2024-56639",
"UBUNTU-CVE-2024-56639",
"CVE-2024-56640",
"UBUNTU-CVE-2024-56640",
"CVE-2024-56641",
"UBUNTU-CVE-2024-56641",
"CVE-2024-56642",
"UBUNTU-CVE-2024-56642",
"CVE-2024-56643",
"UBUNTU-CVE-2024-56643",
"CVE-2024-56644",
"UBUNTU-CVE-2024-56644",
"CVE-2024-56645",
"UBUNTU-CVE-2024-56645",
"CVE-2024-56646",
"UBUNTU-CVE-2024-56646",
"CVE-2024-56647",
"UBUNTU-CVE-2024-56647",
"CVE-2024-56648",
"UBUNTU-CVE-2024-56648",
"CVE-2024-56649",
"UBUNTU-CVE-2024-56649",
"CVE-2024-56650",
"UBUNTU-CVE-2024-56650",
"CVE-2024-56651",
"UBUNTU-CVE-2024-56651",
"CVE-2024-56652",
"UBUNTU-CVE-2024-56652",
"CVE-2024-56653",
"UBUNTU-CVE-2024-56653",
"CVE-2024-56654",
"UBUNTU-CVE-2024-56654",
"CVE-2024-56655",
"UBUNTU-CVE-2024-56655",
"CVE-2024-56656",
"UBUNTU-CVE-2024-56656",
"CVE-2024-56657",
"UBUNTU-CVE-2024-56657",
"CVE-2024-56658",
"UBUNTU-CVE-2024-56658",
"CVE-2024-56659",
"UBUNTU-CVE-2024-56659",
"CVE-2024-56660",
"UBUNTU-CVE-2024-56660",
"CVE-2024-56662",
"UBUNTU-CVE-2024-56662",
"CVE-2024-56663",
"UBUNTU-CVE-2024-56663",
"CVE-2024-56664",
"UBUNTU-CVE-2024-56664",
"CVE-2024-56665",
"UBUNTU-CVE-2024-56665",
"CVE-2024-56667",
"UBUNTU-CVE-2024-56667",
"CVE-2024-56669",
"UBUNTU-CVE-2024-56669",
"CVE-2024-56670",
"UBUNTU-CVE-2024-56670",
"CVE-2024-56671",
"UBUNTU-CVE-2024-56671",
"CVE-2024-56672",
"UBUNTU-CVE-2024-56672",
"CVE-2024-56673",
"UBUNTU-CVE-2024-56673",
"CVE-2024-56675",
"UBUNTU-CVE-2024-56675",
"CVE-2024-56709",
"UBUNTU-CVE-2024-56709",
"CVE-2024-56710",
"UBUNTU-CVE-2024-56710",
"CVE-2024-56711",
"UBUNTU-CVE-2024-56711",
"CVE-2024-56712",
"UBUNTU-CVE-2024-56712",
"CVE-2024-56713",
"UBUNTU-CVE-2024-56713",
"CVE-2024-56714",
"UBUNTU-CVE-2024-56714",
"CVE-2024-56715",
"UBUNTU-CVE-2024-56715",
"CVE-2024-56716",
"UBUNTU-CVE-2024-56716",
"CVE-2024-56717",
"UBUNTU-CVE-2024-56717",
"CVE-2024-56718",
"UBUNTU-CVE-2024-56718",
"CVE-2024-56719",
"UBUNTU-CVE-2024-56719",
"CVE-2024-56757",
"UBUNTU-CVE-2024-56757",
"CVE-2024-56758",
"UBUNTU-CVE-2024-56758",
"CVE-2024-56759",
"UBUNTU-CVE-2024-56759",
"CVE-2024-56760",
"UBUNTU-CVE-2024-56760",
"CVE-2024-56761",
"UBUNTU-CVE-2024-56761",
"CVE-2024-56763",
"UBUNTU-CVE-2024-56763",
"CVE-2024-56764",
"UBUNTU-CVE-2024-56764",
"CVE-2024-56765",
"UBUNTU-CVE-2024-56765",
"CVE-2024-56766",
"UBUNTU-CVE-2024-56766",
"CVE-2024-56767",
"UBUNTU-CVE-2024-56767",
"CVE-2024-56768",
"UBUNTU-CVE-2024-56768",
"CVE-2024-56769",
"UBUNTU-CVE-2024-56769",
"CVE-2024-56770",
"UBUNTU-CVE-2024-56770",
"CVE-2024-56771",
"UBUNTU-CVE-2024-56771",
"CVE-2024-56772",
"UBUNTU-CVE-2024-56772",
"CVE-2024-56773",
"UBUNTU-CVE-2024-56773",
"CVE-2024-56774",
"UBUNTU-CVE-2024-56774",
"CVE-2024-56775",
"UBUNTU-CVE-2024-56775",
"CVE-2024-56776",
"UBUNTU-CVE-2024-56776",
"CVE-2024-56777",
"UBUNTU-CVE-2024-56777",
"CVE-2024-56778",
"UBUNTU-CVE-2024-56778",
"CVE-2024-56779",
"UBUNTU-CVE-2024-56779",
"CVE-2024-56780",
"UBUNTU-CVE-2024-56780",
"CVE-2024-56781",
"UBUNTU-CVE-2024-56781",
"CVE-2024-56782",
"UBUNTU-CVE-2024-56782",
"CVE-2024-56783",
"UBUNTU-CVE-2024-56783",
"CVE-2024-56784",
"UBUNTU-CVE-2024-56784",
"CVE-2024-56785",
"UBUNTU-CVE-2024-56785",
"CVE-2024-56787",
"UBUNTU-CVE-2024-56787",
"CVE-2024-57791",
"UBUNTU-CVE-2024-57791",
"CVE-2024-57792",
"UBUNTU-CVE-2024-57792",
"CVE-2024-57793",
"UBUNTU-CVE-2024-57793",
"CVE-2024-57795",
"UBUNTU-CVE-2024-57795",
"CVE-2024-57798",
"UBUNTU-CVE-2024-57798",
"CVE-2024-57799",
"UBUNTU-CVE-2024-57799",
"CVE-2024-57801",
"UBUNTU-CVE-2024-57801",
"CVE-2024-57802",
"UBUNTU-CVE-2024-57802",
"CVE-2024-57804",
"UBUNTU-CVE-2024-57804",
"CVE-2024-57805",
"UBUNTU-CVE-2024-57805",
"CVE-2024-57806",
"UBUNTU-CVE-2024-57806",
"CVE-2024-57807",
"UBUNTU-CVE-2024-57807",
"CVE-2024-57809",
"UBUNTU-CVE-2024-57809",
"CVE-2024-57838",
"UBUNTU-CVE-2024-57838",
"CVE-2024-57839",
"UBUNTU-CVE-2024-57839",
"CVE-2024-57841",
"UBUNTU-CVE-2024-57841",
"CVE-2024-57843",
"UBUNTU-CVE-2024-57843",
"CVE-2024-57849",
"UBUNTU-CVE-2024-57849",
"CVE-2024-57850",
"UBUNTU-CVE-2024-57850",
"CVE-2024-57857",
"UBUNTU-CVE-2024-57857",
"CVE-2024-57872",
"UBUNTU-CVE-2024-57872",
"CVE-2024-57874",
"UBUNTU-CVE-2024-57874",
"CVE-2024-57875",
"UBUNTU-CVE-2024-57875",
"CVE-2024-57876",
"UBUNTU-CVE-2024-57876",
"CVE-2024-57878",
"UBUNTU-CVE-2024-57878",
"CVE-2024-57879",
"UBUNTU-CVE-2024-57879",
"CVE-2024-57880",
"UBUNTU-CVE-2024-57880",
"CVE-2024-57881",
"UBUNTU-CVE-2024-57881",
"CVE-2024-57882",
"UBUNTU-CVE-2024-57882",
"CVE-2024-57883",
"UBUNTU-CVE-2024-57883",
"CVE-2024-57884",
"UBUNTU-CVE-2024-57884",
"CVE-2024-57885",
"UBUNTU-CVE-2024-57885",
"CVE-2024-57886",
"UBUNTU-CVE-2024-57886",
"CVE-2024-57887",
"UBUNTU-CVE-2024-57887",
"CVE-2024-57888",
"UBUNTU-CVE-2024-57888",
"CVE-2024-57889",
"UBUNTU-CVE-2024-57889",
"CVE-2024-57890",
"UBUNTU-CVE-2024-57890",
"CVE-2024-57892",
"UBUNTU-CVE-2024-57892",
"CVE-2024-57893",
"UBUNTU-CVE-2024-57893",
"CVE-2024-57895",
"UBUNTU-CVE-2024-57895",
"CVE-2024-57896",
"UBUNTU-CVE-2024-57896",
"CVE-2024-57897",
"UBUNTU-CVE-2024-57897",
"CVE-2024-57898",
"UBUNTU-CVE-2024-57898",
"CVE-2024-57899",
"UBUNTU-CVE-2024-57899",
"CVE-2024-57900",
"UBUNTU-CVE-2024-57900",
"CVE-2024-57901",
"UBUNTU-CVE-2024-57901",
"CVE-2024-57902",
"UBUNTU-CVE-2024-57902",
"CVE-2024-57903",
"UBUNTU-CVE-2024-57903",
"CVE-2024-57904",
"UBUNTU-CVE-2024-57904",
"CVE-2024-57905",
"UBUNTU-CVE-2024-57905",
"CVE-2024-57906",
"UBUNTU-CVE-2024-57906",
"CVE-2024-57907",
"UBUNTU-CVE-2024-57907",
"CVE-2024-57908",
"UBUNTU-CVE-2024-57908",
"CVE-2024-57910",
"UBUNTU-CVE-2024-57910",
"CVE-2024-57911",
"UBUNTU-CVE-2024-57911",
"CVE-2024-57912",
"UBUNTU-CVE-2024-57912",
"CVE-2024-57913",
"UBUNTU-CVE-2024-57913",
"CVE-2024-57916",
"UBUNTU-CVE-2024-57916",
"CVE-2024-57917",
"UBUNTU-CVE-2024-57917",
"CVE-2024-57918",
"UBUNTU-CVE-2024-57918",
"CVE-2024-57919",
"UBUNTU-CVE-2024-57919",
"CVE-2024-57921",
"UBUNTU-CVE-2024-57921",
"CVE-2024-57924",
"UBUNTU-CVE-2024-57924",
"CVE-2024-57925",
"UBUNTU-CVE-2024-57925",
"CVE-2024-57926",
"UBUNTU-CVE-2024-57926",
"CVE-2024-57929",
"UBUNTU-CVE-2024-57929",
"CVE-2024-57931",
"UBUNTU-CVE-2024-57931",
"CVE-2024-57932",
"UBUNTU-CVE-2024-57932",
"CVE-2024-57933",
"UBUNTU-CVE-2024-57933",
"CVE-2024-57934",
"UBUNTU-CVE-2024-57934",
"CVE-2024-57935",
"UBUNTU-CVE-2024-57935",
"CVE-2024-57938",
"UBUNTU-CVE-2024-57938",
"CVE-2024-57939",
"UBUNTU-CVE-2024-57939",
"CVE-2024-57940",
"UBUNTU-CVE-2024-57940",
"CVE-2024-57944",
"UBUNTU-CVE-2024-57944",
"CVE-2024-57945",
"UBUNTU-CVE-2024-57945",
"CVE-2024-57946",
"UBUNTU-CVE-2024-57946",
"CVE-2024-58087",
"UBUNTU-CVE-2024-58087",
"CVE-2025-21629",
"UBUNTU-CVE-2025-21629",
"CVE-2025-21631",
"UBUNTU-CVE-2025-21631",
"CVE-2025-21632",
"UBUNTU-CVE-2025-21632",
"CVE-2025-21633",
"UBUNTU-CVE-2025-21633",
"CVE-2025-21634",
"UBUNTU-CVE-2025-21634",
"CVE-2025-21635",
"UBUNTU-CVE-2025-21635",
"CVE-2025-21636",
"UBUNTU-CVE-2025-21636",
"CVE-2025-21637",
"UBUNTU-CVE-2025-21637",
"CVE-2025-21638",
"UBUNTU-CVE-2025-21638",
"CVE-2025-21639",
"UBUNTU-CVE-2025-21639",
"CVE-2025-21640",
"UBUNTU-CVE-2025-21640",
"CVE-2025-21642",
"UBUNTU-CVE-2025-21642",
"CVE-2025-21643",
"UBUNTU-CVE-2025-21643",
"CVE-2025-21644",
"UBUNTU-CVE-2025-21644",
"CVE-2025-21645",
"UBUNTU-CVE-2025-21645",
"CVE-2025-21646",
"UBUNTU-CVE-2025-21646",
"CVE-2025-21647",
"UBUNTU-CVE-2025-21647",
"CVE-2025-21648",
"UBUNTU-CVE-2025-21648",
"CVE-2025-21649",
"UBUNTU-CVE-2025-21649",
"CVE-2025-21650",
"UBUNTU-CVE-2025-21650",
"CVE-2025-21651",
"UBUNTU-CVE-2025-21651",
"CVE-2025-21652",
"UBUNTU-CVE-2025-21652",
"CVE-2025-21653",
"UBUNTU-CVE-2025-21653",
"CVE-2025-21654",
"UBUNTU-CVE-2025-21654",
"CVE-2025-21655",
"UBUNTU-CVE-2025-21655",
"CVE-2025-21656",
"UBUNTU-CVE-2025-21656",
"CVE-2025-21658",
"UBUNTU-CVE-2025-21658",
"CVE-2025-21659",
"UBUNTU-CVE-2025-21659",
"CVE-2025-21660",
"UBUNTU-CVE-2025-21660",
"CVE-2025-21661",
"UBUNTU-CVE-2025-21661",
"CVE-2025-21662",
"UBUNTU-CVE-2025-21662",
"CVE-2025-21663",
"UBUNTU-CVE-2025-21663",
"CVE-2025-21664",
"UBUNTU-CVE-2025-21664",
"CVE-2025-21834",
"UBUNTU-CVE-2025-21834"
],
"schema_version": "1.6.3",
"summary": "linux-lowlatency vulnerabilities"
}
WID-SEC-W-2025-0119
Vulnerability from csaf_certbund - Published: 2025-01-19 23:00 - Updated: 2026-02-16 23:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Dell NetWorker
Dell
|
cpe:/a:dell:networker:virtual
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— | |
|
Dell Avamar
Dell
|
cpe:/a:dell:avamar:-
|
— | |
|
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:-
|
— | |
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
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:-
|
— | |
|
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 | ||
|
Dell Secure Connect Gateway Appliance <5.32.00.18
Dell / Secure Connect Gateway
|
Appliance <5.32.00.18 |
| URL | Category |
|---|---|
| https://wid.cert-bund.de/.well-known/csaf/white/2… | self |
| https://wid.cert-bund.de/portal/wid/securityadvis… | self |
| https://lore.kernel.org/linux-cve-announce/ | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lore.kernel.org/linux-cve-announce/202501… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://lists.suse.com/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://alas.aws.amazon.com/AL2/ALASKERNEL-5.4-20… | external |
| https://alas.aws.amazon.com/AL2/ALASKERNEL-5.15-2… | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://alas.aws.amazon.com/AL2/ALASKERNEL-5.10-2… | external |
| https://alas.aws.amazon.com/AL2/ALASKERNEL-5.15-2… | external |
| https://alas.aws.amazon.com/AL2/ALASKERNEL-5.10-2… | 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://lists.suse.com/pipermail/sle-security-upd… | external |
| https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-202… | external |
| https://ubuntu.com/security/notices/USN-7388-1 | external |
| https://ubuntu.com/security/notices/USN-7381-1 | external |
| https://ubuntu.com/security/notices/USN-7382-1 | external |
| https://ubuntu.com/security/notices/USN-7387-1 | external |
| https://ubuntu.com/security/notices/USN-7380-1 | external |
| https://ubuntu.com/security/notices/USN-7379-1 | external |
| https://ubuntu.com/security/notices/USN-7387-3 | external |
| https://ubuntu.com/security/notices/USN-7391-1 | external |
| https://ubuntu.com/security/notices/USN-7392-1 | external |
| https://ubuntu.com/security/notices/USN-7390-1 | external |
| https://ubuntu.com/security/notices/USN-7393-1 | external |
| https://ubuntu.com/security/notices/USN-7392-2 | external |
| https://ubuntu.com/security/notices/USN-7389-1 | external |
| https://ubuntu.com/security/notices/USN-7387-2 | external |
| https://ubuntu.com/security/notices/USN-7401-1 | external |
| https://alas.aws.amazon.com/AL2/ALASKERNEL-5.4-20… | external |
| https://ubuntu.com/security/notices/USN-7392-4 | external |
| https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-202… | external |
| https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-202… | external |
| https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-202… | external |
| https://ubuntu.com/security/notices/USN-7392-3 | external |
| https://ubuntu.com/security/notices/USN-7379-2 | external |
| https://ubuntu.com/security/notices/USN-7407-1 | external |
| https://ubuntu.com/security/notices/USN-7413-1 | external |
| https://ubuntu.com/security/notices/USN-7421-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://ubuntu.com/security/notices/USN-7459-1 | external |
| https://ubuntu.com/security/notices/USN-7463-1 | external |
| https://ubuntu.com/security/notices/USN-7458-1 | external |
| https://ubuntu.com/security/notices/USN-7459-2 | external |
| https://access.redhat.com/errata/RHSA-2025:6966 | external |
| https://access.redhat.com/errata/RHSA-2025:7423 | external |
| https://ubuntu.com/security/notices/USN-7515-1 | external |
| https://ubuntu.com/security/notices/USN-7516-1 | external |
| https://ubuntu.com/security/notices/USN-7513-2 | external |
| https://ubuntu.com/security/notices/USN-7514-1 | external |
| https://ubuntu.com/security/notices/USN-7510-1 | external |
| https://ubuntu.com/security/notices/USN-7513-1 | external |
| https://ubuntu.com/security/notices/USN-7510-2 | external |
| https://ubuntu.com/security/notices/USN-7511-1 | external |
| https://ubuntu.com/security/notices/USN-7512-1 | external |
| https://ubuntu.com/security/notices/USN-7511-2 | external |
| https://ubuntu.com/security/notices/USN-7517-1 | external |
| https://ubuntu.com/security/notices/USN-7518-1 | external |
| https://ubuntu.com/security/notices/USN-7511-3 | external |
| https://ubuntu.com/security/notices/USN-7523-1 | external |
| https://ubuntu.com/security/notices/USN-7522-1 | external |
| https://ubuntu.com/security/notices/USN-7516-3 | external |
| https://ubuntu.com/security/notices/USN-7515-2 | external |
| https://ubuntu.com/security/notices/USN-7513-3 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7510-3 | external |
| https://ubuntu.com/security/notices/USN-7510-4 | external |
| https://ubuntu.com/security/notices/USN-7510-5 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7517-2 | external |
| https://ubuntu.com/security/notices/USN-7516-4 | external |
| https://ubuntu.com/security/notices/USN-7516-5 | external |
| https://linux.oracle.com/errata/ELSA-2025-7903.html | external |
| https://linux.oracle.com/errata/ELSA-2025-7423.html | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://ubuntu.com/security/notices/USN-7524-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7516-6 | external |
| https://ubuntu.com/security/notices/USN-7510-6 | external |
| https://ubuntu.com/security/notices/USN-7540-1 | external |
| https://ubuntu.com/security/notices/USN-7510-7 | external |
| https://ubuntu.com/security/notices/USN-7513-4 | external |
| https://ubuntu.com/security/notices/USN-7539-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7510-8 | external |
| https://ubuntu.com/security/notices/USN-7513-5 | external |
| https://ubuntu.com/security/notices/USN-7516-7 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7516-8 | external |
| https://ubuntu.com/security/notices/USN-7516-9 | 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://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7593-1 | external |
| https://ubuntu.com/security/notices/USN-7595-1 | external |
| https://ubuntu.com/security/notices/USN-7595-2 | external |
| https://ubuntu.com/security/notices/USN-7596-1 | external |
| https://ubuntu.com/security/notices/USN-7596-2 | external |
| https://ubuntu.com/security/notices/USN-7595-3 | external |
| https://ubuntu.com/security/notices/USN-7602-1 | external |
| https://ubuntu.com/security/notices/USN-7595-4 | external |
| https://ubuntu.com/security/notices/USN-7595-5 | external |
| https://linux.oracle.com/errata/ELSA-2025-20406.html | external |
| https://ubuntu.com/security/notices/USN-7640-1 | external |
| https://ubuntu.com/security/notices/USN-7653-1 | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://linux.oracle.com/errata/ELSA-2025-20553.html | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://www.dell.com/support/kbdoc/000376224 | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://www.dell.com/support/kbdoc/000385230 | external |
| https://access.redhat.com/errata/RHSA-2025:20518 | external |
| https://access.redhat.com/errata/RHSA-2025:20095 | external |
| https://errata.build.resf.org/RLSA-2025:20518 | external |
| https://linux.oracle.com/errata/ELSA-2025-20518-0.html | external |
| https://errata.build.resf.org/RLSA-2025:20095 | external |
| https://access.redhat.com/errata/RHSA-2026:2352 | external |
| https://lists.suse.com/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 |
{
"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 lokaler Angreifer kann mehrere Schwachstellen im Linux Kernel ausnutzen, um einen Denial of Service Angriff durchzuf\u00fchren oder andere nicht spezifizierte Auswirkungen zu verursachen.",
"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-2025-0119 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2025/wid-sec-w-2025-0119.json"
},
{
"category": "self",
"summary": "WID-SEC-2025-0119 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2025-0119"
},
{
"category": "external",
"summary": "Kernel CVE Announce Mailingliste",
"url": "https://lore.kernel.org/linux-cve-announce/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57904",
"url": "https://lore.kernel.org/linux-cve-announce/2025011934-CVE-2024-57904-dac5@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57905",
"url": "https://lore.kernel.org/linux-cve-announce/2025011937-CVE-2024-57905-7d0d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57906",
"url": "https://lore.kernel.org/linux-cve-announce/2025011937-CVE-2024-57906-6e61@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57907",
"url": "https://lore.kernel.org/linux-cve-announce/2025011937-CVE-2024-57907-e5dd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57908",
"url": "https://lore.kernel.org/linux-cve-announce/2025011938-CVE-2024-57908-654f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57909",
"url": "https://lore.kernel.org/linux-cve-announce/2025011938-CVE-2024-57909-ed6a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57910",
"url": "https://lore.kernel.org/linux-cve-announce/2025011938-CVE-2024-57910-e4e0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57911",
"url": "https://lore.kernel.org/linux-cve-announce/2025011939-CVE-2024-57911-0e13@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57912",
"url": "https://lore.kernel.org/linux-cve-announce/2025011939-CVE-2024-57912-6049@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57913",
"url": "https://lore.kernel.org/linux-cve-announce/2025011939-CVE-2024-57913-d69f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57914",
"url": "https://lore.kernel.org/linux-cve-announce/2025011940-CVE-2024-57914-33e0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57915",
"url": "https://lore.kernel.org/linux-cve-announce/2025011940-CVE-2024-57915-fc93@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57916",
"url": "https://lore.kernel.org/linux-cve-announce/2025011940-CVE-2024-57916-4116@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57917",
"url": "https://lore.kernel.org/linux-cve-announce/2025011941-CVE-2024-57917-f1e1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57918",
"url": "https://lore.kernel.org/linux-cve-announce/2025011941-CVE-2024-57918-ad02@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57919",
"url": "https://lore.kernel.org/linux-cve-announce/2025011941-CVE-2024-57919-9800@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57920",
"url": "https://lore.kernel.org/linux-cve-announce/2025011942-CVE-2024-57920-b514@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57921",
"url": "https://lore.kernel.org/linux-cve-announce/2025011942-CVE-2024-57921-836d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57922",
"url": "https://lore.kernel.org/linux-cve-announce/2025011942-CVE-2024-57922-1f81@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57923",
"url": "https://lore.kernel.org/linux-cve-announce/2025011943-CVE-2024-57923-3c99@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57924",
"url": "https://lore.kernel.org/linux-cve-announce/2025011943-CVE-2024-57924-954a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57925",
"url": "https://lore.kernel.org/linux-cve-announce/2025011944-CVE-2024-57925-b738@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57926",
"url": "https://lore.kernel.org/linux-cve-announce/2025011944-CVE-2024-57926-023f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57927",
"url": "https://lore.kernel.org/linux-cve-announce/2025011944-CVE-2024-57927-fb00@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57928",
"url": "https://lore.kernel.org/linux-cve-announce/2025011945-CVE-2024-57928-7291@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-57929",
"url": "https://lore.kernel.org/linux-cve-announce/2025011945-CVE-2024-57929-2b82@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21631",
"url": "https://lore.kernel.org/linux-cve-announce/2025011939-CVE-2025-21631-5f2d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21632",
"url": "https://lore.kernel.org/linux-cve-announce/2025011942-CVE-2025-21632-9fde@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21633",
"url": "https://lore.kernel.org/linux-cve-announce/2025011942-CVE-2025-21633-a313@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21634",
"url": "https://lore.kernel.org/linux-cve-announce/2025011942-CVE-2025-21634-011f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21635",
"url": "https://lore.kernel.org/linux-cve-announce/2025011943-CVE-2025-21635-12e7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21636",
"url": "https://lore.kernel.org/linux-cve-announce/2025011943-CVE-2025-21636-0bb0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21637",
"url": "https://lore.kernel.org/linux-cve-announce/2025011943-CVE-2025-21637-3dde@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21638",
"url": "https://lore.kernel.org/linux-cve-announce/2025011944-CVE-2025-21638-35a8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21639",
"url": "https://lore.kernel.org/linux-cve-announce/2025011944-CVE-2025-21639-f1ca@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21640",
"url": "https://lore.kernel.org/linux-cve-announce/2025011944-CVE-2025-21640-4dd1@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21641",
"url": "https://lore.kernel.org/linux-cve-announce/2025011944-CVE-2025-21641-0897@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21642",
"url": "https://lore.kernel.org/linux-cve-announce/2025011944-CVE-2025-21642-5728@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21643",
"url": "https://lore.kernel.org/linux-cve-announce/2025011945-CVE-2025-21643-f3f6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21644",
"url": "https://lore.kernel.org/linux-cve-announce/2025011945-CVE-2025-21644-9113@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21645",
"url": "https://lore.kernel.org/linux-cve-announce/2025011945-CVE-2025-21645-e342@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21646",
"url": "https://lore.kernel.org/linux-cve-announce/2025011945-CVE-2025-21646-8f6e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21647",
"url": "https://lore.kernel.org/linux-cve-announce/2025011946-CVE-2025-21647-51d8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21648",
"url": "https://lore.kernel.org/linux-cve-announce/2025011946-CVE-2025-21648-bcda@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21649",
"url": "https://lore.kernel.org/linux-cve-announce/2025011946-CVE-2025-21649-f7ac@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21650",
"url": "https://lore.kernel.org/linux-cve-announce/2025011946-CVE-2025-21650-3a74@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21651",
"url": "https://lore.kernel.org/linux-cve-announce/2025011946-CVE-2025-21651-fbe8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21652",
"url": "https://lore.kernel.org/linux-cve-announce/2025011947-CVE-2025-21652-95d7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21653",
"url": "https://lore.kernel.org/linux-cve-announce/2025011947-CVE-2025-21653-b6c0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2025-21654",
"url": "https://lore.kernel.org/linux-cve-announce/2025011947-CVE-2025-21654-5eac@gregkh/"
},
{
"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": "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": "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:0565-1 vom 2025-02-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020360.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": "Amazon Linux Security Advisory ALASKERNEL-5.4-2025-094 vom 2025-02-25",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.4-2025-094.html"
},
{
"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": "Debian Security Advisory DLA-4075 vom 2025-03-01",
"url": "https://lists.debian.org/debian-lts-announce/2025/03/msg00002.html"
},
{
"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": "SUSE Security Update SUSE-SU-2025:0784-1 vom 2025-03-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020484.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0833-1 vom 2025-03-11",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/NVOTJPDFQQWPNLUFPKTQVNNMK5RQPZGP/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0833-2 vom 2025-03-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020502.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": "SUSE Security Update SUSE-SU-2025:0847-1 vom 2025-03-12",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020505.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0853-1 vom 2025-03-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020506.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": "Amazon Linux Security Advisory ALASKERNEL-5.15-2025-067 vom 2025-03-14",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.15-2025-067.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASKERNEL-5.10-2025-085 vom 2025-03-14",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.10-2025-085.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0856-1 vom 2025-03-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/OSPHACQPT5GWCIN3WJL55RCYA4OHTBLI/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0856-1 vom 2025-03-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020508.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0856-1 vom 2025-03-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/OSPHACQPT5GWCIN3WJL55RCYA4OHTBLI/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0955-1 vom 2025-03-19",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020563.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASLIVEPATCH-2025-206 vom 2025-03-26",
"url": "https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-2025-206.html"
},
{
"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-7381-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7381-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7382-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7382-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-7380-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7380-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7379-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7379-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-7391-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7391-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7392-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7392-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-7393-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7393-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7392-2 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7392-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-7387-2 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7387-2"
},
{
"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": "Amazon Linux Security Advisory ALASKERNEL-5.4-2025-097 vom 2025-04-01",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.4-2025-097.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7392-4 vom 2025-04-01",
"url": "https://ubuntu.com/security/notices/USN-7392-4"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASLIVEPATCH-2025-208 vom 2025-04-01",
"url": "https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-2025-208.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASLIVEPATCH-2025-209 vom 2025-04-01",
"url": "https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-2025-209.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASLIVEPATCH-2025-210 vom 2025-04-01",
"url": "https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-2025-210.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7392-3 vom 2025-04-01",
"url": "https://ubuntu.com/security/notices/USN-7392-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7379-2 vom 2025-04-01",
"url": "https://ubuntu.com/security/notices/USN-7379-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": "Ubuntu Security Notice USN-7413-1 vom 2025-04-03",
"url": "https://ubuntu.com/security/notices/USN-7413-1"
},
{
"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": "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": "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-7463-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7463-1"
},
{
"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": "Ubuntu Security Notice USN-7459-2 vom 2025-04-28",
"url": "https://ubuntu.com/security/notices/USN-7459-2"
},
{
"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": "Red Hat Security Advisory RHSA-2025:7423 vom 2025-05-13",
"url": "https://access.redhat.com/errata/RHSA-2025:7423"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7515-1 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7515-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7516-1 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7516-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7513-2 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7513-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7514-1 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7514-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7510-1 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7510-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7513-1 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7513-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7510-2 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7510-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7511-1 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7511-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7512-1 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7512-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7516-2 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7511-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7517-1 vom 2025-05-16",
"url": "https://ubuntu.com/security/notices/USN-7517-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7518-1 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7518-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7511-3 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7511-3"
},
{
"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": "Ubuntu Security Notice USN-7522-1 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7522-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7516-3 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7516-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7515-2 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7515-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7513-3 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7513-3"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01600-1 vom 2025-05-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020854.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7510-3 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7510-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7510-4 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7510-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7510-5 vom 2025-05-20",
"url": "https://ubuntu.com/security/notices/USN-7510-5"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01614-1 vom 2025-05-21",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020870.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7517-2 vom 2025-05-21",
"url": "https://ubuntu.com/security/notices/USN-7517-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7516-4 vom 2025-05-21",
"url": "https://ubuntu.com/security/notices/USN-7516-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7516-5 vom 2025-05-23",
"url": "https://ubuntu.com/security/notices/USN-7516-5"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-7903 vom 2025-05-23",
"url": "https://linux.oracle.com/errata/ELSA-2025-7903.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-7423 vom 2025-05-23",
"url": "https://linux.oracle.com/errata/ELSA-2025-7423.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-5925 vom 2025-05-24",
"url": "https://lists.debian.org/debian-security-announce/2025/msg00088.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4178 vom 2025-05-26",
"url": "https://lists.debian.org/debian-lts-announce/2025/05/msg00030.html"
},
{
"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": "SUSE Security Update SUSE-SU-2025:01707-1 vom 2025-05-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020902.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7516-6 vom 2025-05-26",
"url": "https://ubuntu.com/security/notices/USN-7516-6"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7510-6 vom 2025-05-27",
"url": "https://ubuntu.com/security/notices/USN-7510-6"
},
{
"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-7510-7 vom 2025-05-28",
"url": "https://ubuntu.com/security/notices/USN-7510-7"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7513-4 vom 2025-05-28",
"url": "https://ubuntu.com/security/notices/USN-7513-4"
},
{
"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:20343-1 vom 2025-05-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020965.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7510-8 vom 2025-05-29",
"url": "https://ubuntu.com/security/notices/USN-7510-8"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7513-5 vom 2025-05-29",
"url": "https://ubuntu.com/security/notices/USN-7513-5"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7516-7 vom 2025-05-29",
"url": "https://ubuntu.com/security/notices/USN-7516-7"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20344-1 vom 2025-05-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020964.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7516-8 vom 2025-05-29",
"url": "https://ubuntu.com/security/notices/USN-7516-8"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7516-9 vom 2025-05-29",
"url": "https://ubuntu.com/security/notices/USN-7516-9"
},
{
"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:20355-1 vom 2025-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021015.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20354-1 vom 2025-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021016.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: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: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: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: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:20165-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021174.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20166-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021176.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": "SUSE Security Update SUSE-SU-2025:01964-1 vom 2025-06-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021531.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01965-1 vom 2025-06-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021535.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20408-1 vom 2025-06-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021550.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20413-1 vom 2025-06-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021547.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01972-1 vom 2025-06-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021537.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:01983-1 vom 2025-06-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021538.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02000-1 vom 2025-06-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021568.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20421-1 vom 2025-06-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021590.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20419-1 vom 2025-06-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021591.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7593-1 vom 2025-06-24",
"url": "https://ubuntu.com/security/notices/USN-7593-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7595-1 vom 2025-06-24",
"url": "https://ubuntu.com/security/notices/USN-7595-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7595-2 vom 2025-06-24",
"url": "https://ubuntu.com/security/notices/USN-7595-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7596-1 vom 2025-06-24",
"url": "https://ubuntu.com/security/notices/USN-7596-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7596-2 vom 2025-06-25",
"url": "https://ubuntu.com/security/notices/USN-7596-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7595-3 vom 2025-06-25",
"url": "https://ubuntu.com/security/notices/USN-7595-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7602-1 vom 2025-06-26",
"url": "https://ubuntu.com/security/notices/USN-7602-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7595-4 vom 2025-06-26",
"url": "https://ubuntu.com/security/notices/USN-7595-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7595-5 vom 2025-06-30",
"url": "https://ubuntu.com/security/notices/USN-7595-5"
},
{
"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-7640-1 vom 2025-07-16",
"url": "https://ubuntu.com/security/notices/USN-7640-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7653-1 vom 2025-07-17",
"url": "https://ubuntu.com/security/notices/USN-7653-1"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4271 vom 2025-08-13",
"url": "https://lists.debian.org/debian-lts-announce/2025/08/msg00010.html"
},
{
"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": "Debian Security Advisory DSA-6009 vom 2025-09-23",
"url": "https://lists.debian.org/debian-security-announce/2025/msg00173.html"
},
{
"category": "external",
"summary": "Dell Security Update vom 2025-10-02",
"url": "https://www.dell.com/support/kbdoc/000376224"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4328 vom 2025-10-13",
"url": "https://lists.debian.org/debian-lts-announce/2025/10/msg00008.html"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2025-390 vom 2025-11-05",
"url": "https://www.dell.com/support/kbdoc/000385230"
},
{
"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": "Red Hat Security Advisory RHSA-2025:20095 vom 2025-11-11",
"url": "https://access.redhat.com/errata/RHSA-2025:20095"
},
{
"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": "Rocky Linux Security Advisory RLSA-2025:20095 vom 2025-11-27",
"url": "https://errata.build.resf.org/RLSA-2025:20095"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:2352 vom 2026-02-09",
"url": "https://access.redhat.com/errata/RHSA-2026:2352"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20328-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024167.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20327-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024168.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: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: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: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:20300-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024190.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20302-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024188.html"
}
],
"source_lang": "en-US",
"title": "Linux Kernel: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-02-16T23:00:00.000+00:00",
"generator": {
"date": "2026-02-17T09:51:58.540+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.5.0"
}
},
"id": "WID-SEC-W-2025-0119",
"initial_release_date": "2025-01-19T23:00:00.000+00:00",
"revision_history": [
{
"date": "2025-01-19T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2025-01-29T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-09T23:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-02-11T23:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-13T23:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-16T23:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-17T23:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-25T23:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2025-03-02T23:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-03-05T23:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-03-11T23:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-03-12T23:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-03-13T23:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates von SUSE und Amazon aufgenommen"
},
{
"date": "2025-03-19T23:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-03-26T23:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2025-03-27T23:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-30T22:00:00.000+00:00",
"number": "17",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-01T22:00:00.000+00:00",
"number": "18",
"summary": "Neue Updates von Ubuntu und Amazon aufgenommen"
},
{
"date": "2025-04-02T22:00:00.000+00:00",
"number": "19",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-03T22:00:00.000+00:00",
"number": "20",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-07T22:00:00.000+00:00",
"number": "21",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-08T22:00:00.000+00:00",
"number": "22",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-04-24T22:00:00.000+00:00",
"number": "23",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-28T22:00:00.000+00:00",
"number": "24",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-13T22:00:00.000+00:00",
"number": "25",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-05-18T22:00:00.000+00:00",
"number": "26",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-19T22:00:00.000+00:00",
"number": "27",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-20T22:00:00.000+00:00",
"number": "28",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2025-05-21T22:00:00.000+00:00",
"number": "29",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2025-05-22T22:00:00.000+00:00",
"number": "30",
"summary": "Neue Updates von Ubuntu und Oracle Linux aufgenommen"
},
{
"date": "2025-05-25T22:00:00.000+00:00",
"number": "31",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-05-26T22:00:00.000+00:00",
"number": "32",
"summary": "Neue Updates von Debian, Ubuntu und SUSE aufgenommen"
},
{
"date": "2025-05-27T22:00:00.000+00:00",
"number": "33",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-29T22:00:00.000+00:00",
"number": "34",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2025-06-02T22:00:00.000+00:00",
"number": "35",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-03T22:00:00.000+00:00",
"number": "36",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-11T22:00:00.000+00:00",
"number": "37",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-15T22:00:00.000+00:00",
"number": "38",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-16T22:00:00.000+00:00",
"number": "39",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-17T22:00:00.000+00:00",
"number": "40",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-19T22:00:00.000+00:00",
"number": "41",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-23T22:00:00.000+00:00",
"number": "42",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-06-24T22:00:00.000+00:00",
"number": "43",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-06-25T22:00:00.000+00:00",
"number": "44",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-06-26T22:00:00.000+00:00",
"number": "45",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-06-30T22:00:00.000+00:00",
"number": "46",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-08T22:00:00.000+00:00",
"number": "47",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-07-16T22:00:00.000+00:00",
"number": "48",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-17T22:00:00.000+00:00",
"number": "49",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-31T22:00:00.000+00:00",
"number": "50",
"summary": "Referenz(en) aufgenommen:"
},
{
"date": "2025-08-12T22:00:00.000+00:00",
"number": "51",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-09-09T22:00:00.000+00:00",
"number": "52",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-09-22T22:00:00.000+00:00",
"number": "53",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-10-01T22:00:00.000+00:00",
"number": "54",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2025-10-12T22:00:00.000+00:00",
"number": "55",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-11-04T23:00:00.000+00:00",
"number": "56",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2025-11-11T23:00:00.000+00:00",
"number": "57",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-11-23T23:00:00.000+00:00",
"number": "58",
"summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2025-11-24T23:00:00.000+00:00",
"number": "59",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-11-26T23:00:00.000+00:00",
"number": "60",
"summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-02-09T23:00:00.000+00:00",
"number": "61",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-02-15T23:00:00.000+00:00",
"number": "62",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-16T23:00:00.000+00:00",
"number": "63",
"summary": "Neue Updates von SUSE aufgenommen"
}
],
"status": "final",
"version": "63"
}
},
"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"
},
{
"branches": [
{
"category": "product_version_range",
"name": "Appliance \u003c5.32.00.18",
"product": {
"name": "Dell Secure Connect Gateway Appliance \u003c5.32.00.18",
"product_id": "T048301"
}
},
{
"category": "product_version",
"name": "Appliance 5.32.00.18",
"product": {
"name": "Dell Secure Connect Gateway Appliance 5.32.00.18",
"product_id": "T048301-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:secure_connect_gateway:appliance__5.32.00.18"
}
}
}
],
"category": "product_name",
"name": "Secure Connect Gateway"
}
],
"category": "vendor",
"name": "Dell"
},
{
"branches": [
{
"category": "product_name",
"name": "Open Source Linux Kernel",
"product": {
"name": "Open Source Linux Kernel",
"product_id": "T046484",
"product_identification_helper": {
"cpe": "cpe:/o:linux:linux_kernel:-"
}
}
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"category": "product_name",
"name": "Oracle Linux",
"product": {
"name": "Oracle Linux",
"product_id": "T004914",
"product_identification_helper": {
"cpe": "cpe:/o:oracle:linux:-"
}
}
}
],
"category": "vendor",
"name": "Oracle"
},
{
"branches": [
{
"category": "product_name",
"name": "RESF Rocky Linux",
"product": {
"name": "RESF Rocky Linux",
"product_id": "T032255",
"product_identification_helper": {
"cpe": "cpe:/o:resf:rocky_linux:-"
}
}
}
],
"category": "vendor",
"name": "RESF"
},
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
}
],
"category": "vendor",
"name": "Red Hat"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux",
"product": {
"name": "SUSE Linux",
"product_id": "T002207",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse_linux:-"
}
}
}
],
"category": "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-57904",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57904"
},
{
"cve": "CVE-2024-57905",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57905"
},
{
"cve": "CVE-2024-57906",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57906"
},
{
"cve": "CVE-2024-57907",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57907"
},
{
"cve": "CVE-2024-57908",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57908"
},
{
"cve": "CVE-2024-57909",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57909"
},
{
"cve": "CVE-2024-57910",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57910"
},
{
"cve": "CVE-2024-57911",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57911"
},
{
"cve": "CVE-2024-57912",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57912"
},
{
"cve": "CVE-2024-57913",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57913"
},
{
"cve": "CVE-2024-57914",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57914"
},
{
"cve": "CVE-2024-57915",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57915"
},
{
"cve": "CVE-2024-57916",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57916"
},
{
"cve": "CVE-2024-57917",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57917"
},
{
"cve": "CVE-2024-57918",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57918"
},
{
"cve": "CVE-2024-57919",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57919"
},
{
"cve": "CVE-2024-57920",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57920"
},
{
"cve": "CVE-2024-57921",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57921"
},
{
"cve": "CVE-2024-57922",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57922"
},
{
"cve": "CVE-2024-57923",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57923"
},
{
"cve": "CVE-2024-57924",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57924"
},
{
"cve": "CVE-2024-57925",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57925"
},
{
"cve": "CVE-2024-57926",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57926"
},
{
"cve": "CVE-2024-57927",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57927"
},
{
"cve": "CVE-2024-57928",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57928"
},
{
"cve": "CVE-2024-57929",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2024-57929"
},
{
"cve": "CVE-2025-21631",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21631"
},
{
"cve": "CVE-2025-21632",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21632"
},
{
"cve": "CVE-2025-21633",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21633"
},
{
"cve": "CVE-2025-21634",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21634"
},
{
"cve": "CVE-2025-21635",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21635"
},
{
"cve": "CVE-2025-21636",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21636"
},
{
"cve": "CVE-2025-21637",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21637"
},
{
"cve": "CVE-2025-21638",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21638"
},
{
"cve": "CVE-2025-21639",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21639"
},
{
"cve": "CVE-2025-21640",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21640"
},
{
"cve": "CVE-2025-21641",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21641"
},
{
"cve": "CVE-2025-21642",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21642"
},
{
"cve": "CVE-2025-21643",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21643"
},
{
"cve": "CVE-2025-21644",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21644"
},
{
"cve": "CVE-2025-21645",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21645"
},
{
"cve": "CVE-2025-21646",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21646"
},
{
"cve": "CVE-2025-21647",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21647"
},
{
"cve": "CVE-2025-21648",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21648"
},
{
"cve": "CVE-2025-21649",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21649"
},
{
"cve": "CVE-2025-21650",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21650"
},
{
"cve": "CVE-2025-21651",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21651"
},
{
"cve": "CVE-2025-21652",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21652"
},
{
"cve": "CVE-2025-21653",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21653"
},
{
"cve": "CVE-2025-21654",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T046484",
"T047343",
"398363",
"T045881",
"T047344",
"T048301"
]
},
"release_date": "2025-01-19T23:00:00.000+00:00",
"title": "CVE-2025-21654"
}
]
}
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.