Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2024-50227 (GCVE-0-2024-50227)
Vulnerability from cvelistv5 – Published: 2024-11-09 10:14 – Updated: 2026-05-11 20:47- CWE-125 - Out-of-bounds Read
| Vendor | Product | Version | |
|---|---|---|---|
| Linux | Linux |
Affected:
ff6ab055e070d819f51196622e08f8941b6d2a4b , < 08b2771e9270fbe1ed4fbbe93abe05ac7fe9861d
(git)
Affected: ff6ab055e070d819f51196622e08f8941b6d2a4b , < e9e1b20fae7de06ba36dd3f8dba858157bad233d (git) |
|
| Linux | Linux |
Affected:
6.11
Unaffected: 0 , < 6.11 (semver) Unaffected: 6.11.7 , ≤ 6.11.* (semver) Unaffected: 6.12 , ≤ * (original_commit_for_fix) |
{
"containers": {
"adp": [
{
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
}
},
{
"other": {
"content": {
"id": "CVE-2024-50227",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2025-10-01T20:16:51.510217Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-125",
"description": "CWE-125 Out-of-bounds Read",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2025-10-01T20:17:28.049Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"drivers/thunderbolt/retimer.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "08b2771e9270fbe1ed4fbbe93abe05ac7fe9861d",
"status": "affected",
"version": "ff6ab055e070d819f51196622e08f8941b6d2a4b",
"versionType": "git"
},
{
"lessThan": "e9e1b20fae7de06ba36dd3f8dba858157bad233d",
"status": "affected",
"version": "ff6ab055e070d819f51196622e08f8941b6d2a4b",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"drivers/thunderbolt/retimer.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.11"
},
{
"lessThan": "6.11",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.11.*",
"status": "unaffected",
"version": "6.11.7",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "6.12",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.11.7",
"versionStartIncluding": "6.11",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12",
"versionStartIncluding": "6.11",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nthunderbolt: Fix KASAN reported stack out-of-bounds read in tb_retimer_scan()\n\nKASAN reported following issue:\n\n BUG: KASAN: stack-out-of-bounds in tb_retimer_scan+0xffe/0x1550 [thunderbolt]\n Read of size 4 at addr ffff88810111fc1c by task kworker/u56:0/11\n CPU: 0 UID: 0 PID: 11 Comm: kworker/u56:0 Tainted: G U 6.11.0+ #1387\n Tainted: [U]=USER\n Workqueue: thunderbolt0 tb_handle_hotplug [thunderbolt]\n Call Trace:\n \u003cTASK\u003e\n dump_stack_lvl+0x6c/0x90\n print_report+0xd1/0x630\n kasan_report+0xdb/0x110\n __asan_report_load4_noabort+0x14/0x20\n tb_retimer_scan+0xffe/0x1550 [thunderbolt]\n tb_scan_port+0xa6f/0x2060 [thunderbolt]\n tb_handle_hotplug+0x17b1/0x3080 [thunderbolt]\n process_one_work+0x626/0x1100\n worker_thread+0x6c8/0xfa0\n kthread+0x2c8/0x3a0\n ret_from_fork+0x3a/0x80\n ret_from_fork_asm+0x1a/0x30\n\nThis happens because the loop variable still gets incremented by one so\nmax becomes 3 instead of 2, and this makes the second loop read past the\nthe array declared on the stack.\n\nFix this by assigning to max directly in the loop body."
}
],
"providerMetadata": {
"dateUpdated": "2026-05-11T20:47:51.687Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/08b2771e9270fbe1ed4fbbe93abe05ac7fe9861d"
},
{
"url": "https://git.kernel.org/stable/c/e9e1b20fae7de06ba36dd3f8dba858157bad233d"
}
],
"title": "thunderbolt: Fix KASAN reported stack out-of-bounds read in tb_retimer_scan()",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2024-50227",
"datePublished": "2024-11-09T10:14:37.905Z",
"dateReserved": "2024-10-21T19:36:19.973Z",
"dateUpdated": "2026-05-11T20:47:51.687Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2024-50227",
"date": "2026-07-16",
"epss": "0.00223",
"percentile": "0.12925"
},
"fkie_nvd": {
"configurations": "[{\"nodes\": [{\"operator\": \"OR\", \"negate\": false, \"cpeMatch\": [{\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"versionStartIncluding\": \"6.11\", \"versionEndExcluding\": \"6.11.7\", \"matchCriteriaId\": \"386941FE-51A4-4893-9EC3-054AD3863E8D\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc1:*:*:*:*:*:*\", \"matchCriteriaId\": \"7F361E1D-580F-4A2D-A509-7615F73167A1\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc2:*:*:*:*:*:*\", \"matchCriteriaId\": \"925478D0-3E3D-4E6F-ACD5-09F28D5DF82C\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc3:*:*:*:*:*:*\", \"matchCriteriaId\": \"3C95E234-D335-4B6C-96BF-E2CEBD8654ED\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc4:*:*:*:*:*:*\", \"matchCriteriaId\": \"E0F717D8-3014-4F84-8086-0124B2111379\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:o:linux:linux_kernel:6.12:rc5:*:*:*:*:*:*\", \"matchCriteriaId\": \"24DBE6C7-2AAE-4818-AED2-E131F153D2FA\"}]}]}]",
"descriptions": "[{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nthunderbolt: Fix KASAN reported stack out-of-bounds read in tb_retimer_scan()\\n\\nKASAN reported following issue:\\n\\n BUG: KASAN: stack-out-of-bounds in tb_retimer_scan+0xffe/0x1550 [thunderbolt]\\n Read of size 4 at addr ffff88810111fc1c by task kworker/u56:0/11\\n CPU: 0 UID: 0 PID: 11 Comm: kworker/u56:0 Tainted: G U 6.11.0+ #1387\\n Tainted: [U]=USER\\n Workqueue: thunderbolt0 tb_handle_hotplug [thunderbolt]\\n Call Trace:\\n \u003cTASK\u003e\\n dump_stack_lvl+0x6c/0x90\\n print_report+0xd1/0x630\\n kasan_report+0xdb/0x110\\n __asan_report_load4_noabort+0x14/0x20\\n tb_retimer_scan+0xffe/0x1550 [thunderbolt]\\n tb_scan_port+0xa6f/0x2060 [thunderbolt]\\n tb_handle_hotplug+0x17b1/0x3080 [thunderbolt]\\n process_one_work+0x626/0x1100\\n worker_thread+0x6c8/0xfa0\\n kthread+0x2c8/0x3a0\\n ret_from_fork+0x3a/0x80\\n ret_from_fork_asm+0x1a/0x30\\n\\nThis happens because the loop variable still gets incremented by one so\\nmax becomes 3 instead of 2, and this makes the second loop read past the\\nthe array declared on the stack.\\n\\nFix this by assigning to max directly in the loop body.\"}, {\"lang\": \"es\", \"value\": \"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: thunderbolt: Se corrige la lectura fuera de los l\\u00edmites de pila informada por KASAN en tb_retimer_scan() KASAN inform\\u00f3 el siguiente problema: ERROR: KASAN: pila fuera de los l\\u00edmites en tb_retimer_scan+0xffe/0x1550 [thunderbolt] Lectura de tama\\u00f1o 4 en la direcci\\u00f3n ffff88810111fc1c por la tarea kworker/u56:0/11 CPU: 0 UID: 0 PID: 11 Comm: kworker/u56:0 Tainted: GU 6.11.0+ #1387 Tainted: [U]=USER Workqueue: thunderbolt0 tb_handle_hotplug [thunderbolt] Rastreo de llamadas: dump_stack_lvl+0x6c/0x90 print_report+0xd1/0x630 kasan_report+0xdb/0x110 __asan_report_load4_noabort+0x14/0x20 tb_retimer_scan+0xffe/0x1550 [thunderbolt] tb_scan_port+0xa6f/0x2060 [thunderbolt] tb_handle_hotplug+0x17b1/0x3080 [thunderbolt] process_one_work+0x626/0x1100 worker_thread+0x6c8/0xfa0 kthread+0x2c8/0x3a0 ret_from_fork+0x3a/0x80 ret_from_fork_asm+0x1a/0x30 Esto sucede porque la variable de bucle todav\\u00eda se incrementa en uno, por lo que max se convierte en 3 en lugar de 2, y esto hace que el segundo bucle lea m\\u00e1s all\\u00e1 de la matriz declarada en la pila. Solucione este problema asignando a max directamente en el cuerpo del bucle.\"}]",
"id": "CVE-2024-50227",
"lastModified": "2024-11-13T18:39:07.120",
"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:H/I:N/A:H\", \"baseScore\": 7.1, \"baseSeverity\": \"HIGH\", \"attackVector\": \"LOCAL\", \"attackComplexity\": \"LOW\", \"privilegesRequired\": \"LOW\", \"userInteraction\": \"NONE\", \"scope\": \"UNCHANGED\", \"confidentialityImpact\": \"HIGH\", \"integrityImpact\": \"NONE\", \"availabilityImpact\": \"HIGH\"}, \"exploitabilityScore\": 1.8, \"impactScore\": 5.2}]}",
"published": "2024-11-09T11:15:08.383",
"references": "[{\"url\": \"https://git.kernel.org/stable/c/08b2771e9270fbe1ed4fbbe93abe05ac7fe9861d\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"tags\": [\"Patch\"]}, {\"url\": \"https://git.kernel.org/stable/c/e9e1b20fae7de06ba36dd3f8dba858157bad233d\", \"source\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"tags\": [\"Patch\"]}]",
"sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"vulnStatus": "Analyzed",
"weaknesses": "[{\"source\": \"nvd@nist.gov\", \"type\": \"Primary\", \"description\": [{\"lang\": \"en\", \"value\": \"CWE-125\"}]}]"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2024-50227\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-11-09T11:15:08.383\",\"lastModified\":\"2026-06-17T08:03:55.480\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nthunderbolt: Fix KASAN reported stack out-of-bounds read in tb_retimer_scan()\\n\\nKASAN reported following issue:\\n\\n BUG: KASAN: stack-out-of-bounds in tb_retimer_scan+0xffe/0x1550 [thunderbolt]\\n Read of size 4 at addr ffff88810111fc1c by task kworker/u56:0/11\\n CPU: 0 UID: 0 PID: 11 Comm: kworker/u56:0 Tainted: G U 6.11.0+ #1387\\n Tainted: [U]=USER\\n Workqueue: thunderbolt0 tb_handle_hotplug [thunderbolt]\\n Call Trace:\\n \u003cTASK\u003e\\n dump_stack_lvl+0x6c/0x90\\n print_report+0xd1/0x630\\n kasan_report+0xdb/0x110\\n __asan_report_load4_noabort+0x14/0x20\\n tb_retimer_scan+0xffe/0x1550 [thunderbolt]\\n tb_scan_port+0xa6f/0x2060 [thunderbolt]\\n tb_handle_hotplug+0x17b1/0x3080 [thunderbolt]\\n process_one_work+0x626/0x1100\\n worker_thread+0x6c8/0xfa0\\n kthread+0x2c8/0x3a0\\n ret_from_fork+0x3a/0x80\\n ret_from_fork_asm+0x1a/0x30\\n\\nThis happens because the loop variable still gets incremented by one so\\nmax becomes 3 instead of 2, and this makes the second loop read past the\\nthe array declared on the stack.\\n\\nFix this by assigning to max directly in the loop body.\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: thunderbolt: Se corrige la lectura fuera de los l\u00edmites de pila informada por KASAN en tb_retimer_scan() KASAN inform\u00f3 el siguiente problema: ERROR: KASAN: pila fuera de los l\u00edmites en tb_retimer_scan+0xffe/0x1550 [thunderbolt] Lectura de tama\u00f1o 4 en la direcci\u00f3n ffff88810111fc1c por la tarea kworker/u56:0/11 CPU: 0 UID: 0 PID: 11 Comm: kworker/u56:0 Tainted: GU 6.11.0+ #1387 Tainted: [U]=USER Workqueue: thunderbolt0 tb_handle_hotplug [thunderbolt] Rastreo de llamadas: dump_stack_lvl+0x6c/0x90 print_report+0xd1/0x630 kasan_report+0xdb/0x110 __asan_report_load4_noabort+0x14/0x20 tb_retimer_scan+0xffe/0x1550 [thunderbolt] tb_scan_port+0xa6f/0x2060 [thunderbolt] tb_handle_hotplug+0x17b1/0x3080 [thunderbolt] process_one_work+0x626/0x1100 worker_thread+0x6c8/0xfa0 kthread+0x2c8/0x3a0 ret_from_fork+0x3a/0x80 ret_from_fork_asm+0x1a/0x30 Esto sucede porque la variable de bucle todav\u00eda se incrementa en uno, por lo que max se convierte en 3 en lugar de 2, y esto hace que el segundo bucle lea m\u00e1s all\u00e1 de la matriz declarada en la pila. Solucione este problema asignando a max directamente en el cuerpo del bucle.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"drivers/thunderbolt/retimer.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"ff6ab055e070d819f51196622e08f8941b6d2a4b\",\"lessThan\":\"08b2771e9270fbe1ed4fbbe93abe05ac7fe9861d\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"ff6ab055e070d819f51196622e08f8941b6d2a4b\",\"lessThan\":\"e9e1b20fae7de06ba36dd3f8dba858157bad233d\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"drivers/thunderbolt/retimer.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.11\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.11\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.11.7\",\"lessThanOrEqual\":\"6.11.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.12\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H\",\"baseScore\":7.1,\"baseSeverity\":\"HIGH\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":5.2},{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H\",\"baseScore\":7.1,\"baseSeverity\":\"HIGH\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":5.2}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2025-10-01T20:16:51.510217Z\",\"id\":\"CVE-2024-50227\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"no\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-125\"}]},{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-125\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.11\",\"versionEndExcluding\":\"6.11.7\",\"matchCriteriaId\":\"386941FE-51A4-4893-9EC3-054AD3863E8D\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"7F361E1D-580F-4A2D-A509-7615F73167A1\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc2:*:*:*:*:*:*\",\"matchCriteriaId\":\"925478D0-3E3D-4E6F-ACD5-09F28D5DF82C\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc3:*:*:*:*:*:*\",\"matchCriteriaId\":\"3C95E234-D335-4B6C-96BF-E2CEBD8654ED\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc4:*:*:*:*:*:*\",\"matchCriteriaId\":\"E0F717D8-3014-4F84-8086-0124B2111379\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:6.12:rc5:*:*:*:*:*:*\",\"matchCriteriaId\":\"24DBE6C7-2AAE-4818-AED2-E131F153D2FA\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/08b2771e9270fbe1ed4fbbe93abe05ac7fe9861d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/e9e1b20fae7de06ba36dd3f8dba858157bad233d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2025-11-21T14:20:43+00:00",
"cve": "CVE-2024-50227",
"id": "CVE-2024-50227",
"initial_release_date": "2024-11-09T00:00:00+00:00",
"product_status:known_not_affected": "198",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "kernel: thunderbolt: Fix KASAN reported stack out-of-bounds read in tb_retimer_scan()",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2024/cve-2024-50227.json",
"version": "3"
},
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 7.1, \"attackVector\": \"LOCAL\", \"baseSeverity\": \"HIGH\", \"vectorString\": \"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H\", \"integrityImpact\": \"NONE\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"HIGH\", \"privilegesRequired\": \"LOW\", \"confidentialityImpact\": \"HIGH\"}}, {\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2024-50227\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2025-10-01T20:16:51.510217Z\"}}}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-125\", \"description\": \"CWE-125 Out-of-bounds Read\"}]}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2025-10-01T15:23:21.257Z\"}}], \"cna\": {\"title\": \"thunderbolt: Fix KASAN reported stack out-of-bounds read in tb_retimer_scan()\", \"affected\": [{\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"ff6ab055e070d819f51196622e08f8941b6d2a4b\", \"lessThan\": \"08b2771e9270fbe1ed4fbbe93abe05ac7fe9861d\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"ff6ab055e070d819f51196622e08f8941b6d2a4b\", \"lessThan\": \"e9e1b20fae7de06ba36dd3f8dba858157bad233d\", \"versionType\": \"git\"}], \"programFiles\": [\"drivers/thunderbolt/retimer.c\"], \"defaultStatus\": \"unaffected\"}, {\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"6.11\"}, {\"status\": \"unaffected\", \"version\": \"0\", \"lessThan\": \"6.11\", \"versionType\": \"semver\"}, {\"status\": \"unaffected\", \"version\": \"6.11.7\", \"versionType\": \"semver\", \"lessThanOrEqual\": \"6.11.*\"}, {\"status\": \"unaffected\", \"version\": \"6.12\", \"versionType\": \"original_commit_for_fix\", \"lessThanOrEqual\": \"*\"}], \"programFiles\": [\"drivers/thunderbolt/retimer.c\"], \"defaultStatus\": \"affected\"}], \"references\": [{\"url\": \"https://git.kernel.org/stable/c/08b2771e9270fbe1ed4fbbe93abe05ac7fe9861d\"}, {\"url\": \"https://git.kernel.org/stable/c/e9e1b20fae7de06ba36dd3f8dba858157bad233d\"}], \"x_generator\": {\"engine\": \"bippy-1.2.0\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nthunderbolt: Fix KASAN reported stack out-of-bounds read in tb_retimer_scan()\\n\\nKASAN reported following issue:\\n\\n BUG: KASAN: stack-out-of-bounds in tb_retimer_scan+0xffe/0x1550 [thunderbolt]\\n Read of size 4 at addr ffff88810111fc1c by task kworker/u56:0/11\\n CPU: 0 UID: 0 PID: 11 Comm: kworker/u56:0 Tainted: G U 6.11.0+ #1387\\n Tainted: [U]=USER\\n Workqueue: thunderbolt0 tb_handle_hotplug [thunderbolt]\\n Call Trace:\\n \u003cTASK\u003e\\n dump_stack_lvl+0x6c/0x90\\n print_report+0xd1/0x630\\n kasan_report+0xdb/0x110\\n __asan_report_load4_noabort+0x14/0x20\\n tb_retimer_scan+0xffe/0x1550 [thunderbolt]\\n tb_scan_port+0xa6f/0x2060 [thunderbolt]\\n tb_handle_hotplug+0x17b1/0x3080 [thunderbolt]\\n process_one_work+0x626/0x1100\\n worker_thread+0x6c8/0xfa0\\n kthread+0x2c8/0x3a0\\n ret_from_fork+0x3a/0x80\\n ret_from_fork_asm+0x1a/0x30\\n\\nThis happens because the loop variable still gets incremented by one so\\nmax becomes 3 instead of 2, and this makes the second loop read past the\\nthe array declared on the stack.\\n\\nFix this by assigning to max directly in the loop body.\"}], \"cpeApplicability\": [{\"nodes\": [{\"negate\": false, \"cpeMatch\": [{\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"6.11.7\", \"versionStartIncluding\": \"6.11\"}, {\"criteria\": \"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\", \"vulnerable\": true, \"versionEndExcluding\": \"6.12\", \"versionStartIncluding\": \"6.11\"}], \"operator\": \"OR\"}]}], \"providerMetadata\": {\"orgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"shortName\": \"Linux\", \"dateUpdated\": \"2025-05-04T09:49:14.265Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2024-50227\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2025-10-01T20:17:28.049Z\", \"dateReserved\": \"2024-10-21T19:36:19.973Z\", \"assignerOrgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"datePublished\": \"2024-11-09T10:14:37.905Z\", \"assignerShortName\": \"Linux\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.1"
}
}
}
usn-7276-1
Vulnerability from osv_ubuntu
Attila Szász discovered that the HFS+ file system implementation in the Linux Kernel contained a heap overflow vulnerability. An attacker could use a specially crafted file system image that, when mounted, could cause a denial of service (system crash) or possibly execute arbitrary code. (CVE-2025-0927)
Several security issues were discovered in the Linux kernel. An attacker could possibly use these to compromise the system. This update corrects flaws in the following subsystems: - ARM32 architecture; - ARM64 architecture; - PowerPC architecture; - RISC-V architecture; - S390 architecture; - SuperH RISC architecture; - User-Mode Linux (UML); - x86 architecture; - Block layer subsystem; - Cryptographic API; - Compute Acceleration Framework; - ACPI drivers; - Drivers core; - ATA over ethernet (AOE) driver; - RAM backed block device driver; - Network block device driver; - Ublk userspace block driver; - Compressed RAM block device driver; - Bluetooth drivers; - TPM device driver; - Clock framework and drivers; - Data acquisition framework and drivers; - CPU frequency scaling framework; - Hardware crypto device drivers; - CXL (Compute Express Link) drivers; - DAX dirext access to differentiated memory framework; - Buffer Sharing and Synchronization framework; - EDAC drivers; - FireWire subsystem; - ARM SCMI message protocol; - ARM SCPI message protocol; - EFI core; - Qualcomm firmware drivers; - GPIO subsystem; - GPU drivers; - HID subsystem; - I2C subsystem; - I3C subsystem; - IIO ADC drivers; - IIO subsystem; - InfiniBand drivers; - Input Device core drivers; - IOMMU subsystem; - IRQ chip drivers; - Mailbox framework; - Multiple devices driver; - Media drivers; - Multifunction device drivers; - MMC subsystem; - MTD block device drivers; - Ethernet bonding driver; - Network drivers; - Mellanox network drivers; - STMicroelectronics network drivers; - NTB driver; - Virtio pmem driver; - NVME drivers; - Parport drivers; - PCI subsystem; - Alibaba DDR Sub-System Driveway PMU driver; - PHY drivers; - Pin controllers subsystem; - x86 platform drivers; - i.MX PM domains; - Powercap sysfs driver; - Voltage and Current Regulator drivers; - Remote Processor subsystem; - StarFive reset controller drivers; - Real Time Clock drivers; - SCSI subsystem; - SuperH / SH-Mobile drivers; - QCOM SoC drivers; - Xilinx SoC drivers; - SPI subsystem; - Direct Digital Synthesis drivers; - Media staging drivers; - TCM subsystem; - Thermal drivers; - Thunderbolt and USB4 drivers; - TTY drivers; - UFS subsystem; - USB Device Class drivers; - DesignWare USB3 driver; - USB Gadget drivers; - USB Host Controller drivers; - USB Dual Role (OTG-ready) Controller drivers; - USB Serial drivers; - USB Type-C support driver; - USB Type-C Port Controller Manager driver; - TI TPS6598x USB Power Delivery controller driver; - USB Type-C Connector System Software Interface driver; - vDPA drivers; - VFIO drivers; - Virtio Host (VHOST) subsystem; - Framebuffer layer; - Virtio drivers; - Xen hypervisor drivers; - AFS file system; - BTRFS file system; - File systems infrastructure; - Ceph distributed file system; - EROFS file system; - Ext4 file system; - F2FS file system; - GFS2 file system; - JFS file system; - Network file systems library; - Network file system (NFS) client; - Network file system (NFS) server daemon; - NILFS2 file system; - File system notification infrastructure; - NTFS3 file system; - Proc file system; - SMB network file system; - UBI file system; - BPF subsystem; - Network file system (NFS) superblock; - Virtio network driver; - Bluetooth subsystem; - Network traffic control; - Network sockets; - TCP network protocol; - Tracing infrastructure; - User-space API (UAPI); - Kernel init infrastructure; - io_uring subsystem; - IPC subsystem; - Perf events; - Kernel fork() syscall; - Kernel thread helper (kthread); - Padata parallel execution mechanism; - RCU subsystem; - Arbitrary resource management; - Scheduler infrastructure; - Signal handling mechanism; - Static call mechanism; - Task handling mechanism; - Timer substystem drivers; - Maple Tree data structure library; - Memory management; - 9P file system network protocol; - Ethernet bridge; - CAN network layer; - Networking core; - DCCP (Datagram Congestion Control Protocol); - Distributed Switch Architecture; - IPv4 networking; - IPv6 networking; - IUCV driver; - L2TP protocol; - MAC80211 subsystem; - IEEE 802.15.4 subsystem; - Multipath TCP; - NCSI (Network Controller Sideband Interface) driver; - Netfilter; - Netlink; - RxRPC session sockets; - SCTP protocol; - SMC sockets; - Sun RPC protocol; - TIPC protocol; - Unix domain sockets; - VMware vSockets driver; - Wireless networking; - eXpress Data Path; - XFRM subsystem; - AppArmor security module; - Integrity Measurement Architecture(IMA) framework; - Key management; - ALSA framework; - FireWire sound drivers; - AudioScience HPI driver; - HD-audio driver; - SoC Audio for Freescale CPUs drivers; - Intel ASoC drivers; - MediaTek ASoC drivers; - QCOM ASoC drivers; - SoC audio core drivers; - STMicroelectronics SoC drivers; - USB sound devices; - KVM core; (CVE-2024-53192, CVE-2024-53130, CVE-2024-53234, CVE-2024-49986, CVE-2024-49948, CVE-2024-49976, CVE-2024-53158, CVE-2024-50142, CVE-2024-53160, CVE-2024-50124, CVE-2024-50055, CVE-2024-56744, CVE-2024-53128, CVE-2024-50204, CVE-2024-50176, CVE-2024-50294, CVE-2024-50166, CVE-2024-49906, CVE-2024-50074, CVE-2024-47734, CVE-2024-50249, CVE-2024-53216, CVE-2024-53162, CVE-2024-50189, CVE-2024-53196, CVE-2024-49969, CVE-2024-53210, CVE-2024-50300, CVE-2024-47714, CVE-2024-50158, CVE-2024-49983, CVE-2024-49959, CVE-2024-49985, CVE-2024-53078, CVE-2024-53180, CVE-2024-50099, CVE-2024-50009, CVE-2024-53059, CVE-2024-49962, CVE-2024-56755, CVE-2024-50106, CVE-2024-53184, CVE-2024-53063, CVE-2024-50161, CVE-2024-50289, CVE-2024-56705, CVE-2024-56697, CVE-2024-53135, CVE-2024-47676, CVE-2024-53084, CVE-2024-50270, CVE-2024-50078, CVE-2024-50247, CVE-2024-50075, CVE-2024-49946, CVE-2024-50209, CVE-2024-53048, CVE-2024-53071, CVE-2024-49930, CVE-2024-50174, CVE-2024-50039, CVE-2024-50115, CVE-2024-56680, CVE-2024-49901, CVE-2024-49971, CVE-2024-50180, CVE-2024-50061, CVE-2024-47681, CVE-2024-50107, CVE-2024-49972, CVE-2024-49889, CVE-2024-49872, CVE-2024-50067, CVE-2024-47718, CVE-2024-50246, CVE-2024-53090, CVE-2024-49961, CVE-2024-56549, CVE-2024-47688, CVE-2024-50073, CVE-2024-47716, CVE-2024-49952, CVE-2024-56749, CVE-2024-47737, CVE-2024-56739, CVE-2024-56752, CVE-2024-47700, CVE-2024-56741, CVE-2024-50196, CVE-2024-49881, CVE-2024-50230, CVE-2024-50020, CVE-2024-49992, CVE-2024-56534, CVE-2024-49883, CVE-2024-50233, CVE-2024-50057, CVE-2024-53091, CVE-2024-49886, CVE-2024-53144, CVE-2024-50029, CVE-2024-50240, CVE-2024-56720, CVE-2024-50282, CVE-2024-50036, CVE-2024-53126, CVE-2024-56702, CVE-2024-50101, CVE-2024-56696, CVE-2024-50193, CVE-2024-53089, CVE-2024-50263, CVE-2024-47707, CVE-2024-49925, CVE-2024-50178, CVE-2024-47690, CVE-2024-53119, CVE-2024-49939, CVE-2024-50274, CVE-2024-50168, CVE-2024-49963, CVE-2024-50220, CVE-2024-50250, CVE-2024-49966, CVE-2024-50104, CVE-2024-49968, CVE-2024-47685, CVE-2024-50281, CVE-2024-50190, CVE-2024-50181, CVE-2024-50304, CVE-2022-49034, CVE-2024-47726, CVE-2024-50159, CVE-2024-49851, CVE-2024-49933, CVE-2024-50277, CVE-2024-56729, CVE-2024-49885, CVE-2024-53068, CVE-2024-50162, CVE-2024-50179, CVE-2024-53072, CVE-2024-47742, CVE-2024-53083, CVE-2024-50025, CVE-2023-52917, CVE-2024-50269, CVE-2024-50302, CVE-2024-50293, CVE-2024-50177, CVE-2024-53075, CVE-2024-50257, CVE-2024-49995, CVE-2024-53076, CVE-2024-49940, CVE-2024-50114, CVE-2024-50043, CVE-2024-47713, CVE-2024-53081, CVE-2024-50151, CVE-2024-50211, CVE-2024-53047, CVE-2024-50016, CVE-2024-56679, CVE-2024-56689, CVE-2024-50008, CVE-2024-47723, CVE-2024-50285, CVE-2024-49899, CVE-2024-50098, CVE-2024-50000, CVE-2024-53098, CVE-2024-53175, CVE-2024-49888, CVE-2024-50132, CVE-2024-49964, CVE-2024-53042, CVE-2024-50295, CVE-2024-50038, CVE-2024-49905, CVE-2024-50012, CVE-2024-47754, CVE-2024-50017, CVE-2024-53095, CVE-2024-49978, CVE-2024-56541, CVE-2024-49891, CVE-2024-50033, CVE-2024-50292, CVE-2024-50037, CVE-2024-53145, CVE-2024-56747, CVE-2024-50260, CVE-2024-53177, CVE-2024-53229, CVE-2024-53221, CVE-2024-56677, CVE-2024-53171, CVE-2024-50299, CVE-2024-50202, CVE-2024-53208, CVE-2024-53105, CVE-2024-50006, CVE-2024-50149, CVE-2024-50275, CVE-2024-47753, CVE-2024-50212, CVE-2024-49855, CVE-2024-50145, CVE-2024-53120, CVE-2024-53061, CVE-2024-53217, CVE-2024-53198, CVE-2024-50165, CVE-2024-49866, CVE-2024-49994, CVE-2024-50109, CVE-2024-50137, CVE-2024-50245, CVE-2024-53154, CVE-2024-56724, CVE-2024-53187, CVE-2024-53202, CVE-2024-49927, CVE-2024-50163, CVE-2024-50152, CVE-2024-53220, CVE-2024-47741, CVE-2024-50102, CVE-2024-53188, CVE-2024-53116, CVE-2024-47695, CVE-2024-47702, CVE-2024-49970, CVE-2024-50155, CVE-2024-53058, CVE-2024-49908, CVE-2024-50256, CVE-2024-53161, CVE-2024-49893, CVE-2024-53074, CVE-2024-50144, CVE-2024-53219, CVE-2024-49869, CVE-2024-53133, CVE-2024-50041, CVE-2024-49974, CVE-2024-50287, CVE-2024-50133, CVE-2024-53183, CVE-2024-49997, CVE-2024-47749, CVE-2024-53153, CVE-2024-50063, CVE-2024-49852, CVE-2024-50259, CVE-2024-50013, CVE-2024-56751, CVE-2024-53236, CVE-2024-49999, CVE-2024-50076, CVE-2024-49923, CVE-2024-50288, CVE-2024-49867, CVE-2024-49887, CVE-2024-53101, CVE-2024-56725, CVE-2024-56745, CVE-2024-49863, CVE-2024-49890, CVE-2024-50187, CVE-2024-50200, CVE-2024-47679, CVE-2024-50077, CVE-2024-50069, CVE-2024-53114, CVE-2024-50071, CVE-2024-50072, CVE-2024-47705, CVE-2024-50205, CVE-2024-49975, CVE-2024-50237, CVE-2024-53092, CVE-2024-49917, CVE-2024-49853, CVE-2024-50103, CVE-2024-53190, CVE-2024-53215, CVE-2024-50280, CVE-2024-50014, CVE-2024-47756, CVE-2024-53231, CVE-2024-49856, CVE-2024-50023, CVE-2024-53123, CVE-2024-56756, CVE-2024-50140, CVE-2024-56699, CVE-2024-47703, CVE-2024-49958, CVE-2024-56692, CVE-2024-50082, CVE-2024-53181, CVE-2024-47699, CVE-2024-50154, CVE-2024-49960, CVE-2024-53226, CVE-2024-56683, CVE-2024-53239, CVE-2024-53104, CVE-2024-50044, CVE-2024-50255, CVE-2024-50021, CVE-2024-50070, CVE-2024-47740, CVE-2024-49882, CVE-2024-50232, CVE-2024-47708, CVE-2024-47747, CVE-2024-49929, CVE-2024-56693, CVE-2024-53124, CVE-2024-50223, CVE-2024-50265, CVE-2024-53172, CVE-2024-50197, CVE-2024-49915, CVE-2024-53224, CVE-2024-47684, CVE-2024-50217, CVE-2024-50286, CVE-2024-47677, CVE-2024-49942, CVE-2024-50026, CVE-2024-50236, CVE-2024-50086, CVE-2024-50153, CVE-2024-47675, CVE-2024-53112, CVE-2024-50138, CVE-2024-53045, CVE-2024-53170, CVE-2024-50095, CVE-2024-50188, CVE-2024-50173, CVE-2024-50019, CVE-2024-50117, CVE-2024-47746, CVE-2024-50172, CVE-2024-53166, CVE-2024-56721, CVE-2024-50266, CVE-2024-47696, CVE-2024-47719, CVE-2024-49892, CVE-2024-56678, CVE-2024-47680, CVE-2024-50296, CVE-2024-53152, CVE-2024-56536, CVE-2024-50042, CVE-2024-49894, CVE-2024-49897, CVE-2024-47671, CVE-2024-53064, CVE-2024-53077, CVE-2024-49903, CVE-2024-53169, CVE-2024-50011, CVE-2024-47710, CVE-2024-53046, CVE-2024-50046, CVE-2024-53131, CVE-2024-53237, CVE-2024-56707, CVE-2024-49950, CVE-2024-53079, CVE-2024-56694, CVE-2024-53106, CVE-2024-49900, CVE-2024-47745, CVE-2024-50301, CVE-2024-50040, CVE-2024-50183, CVE-2024-56532, CVE-2024-56698, CVE-2024-53139, CVE-2024-47721, CVE-2024-50062, CVE-2024-50129, CVE-2024-50027, CVE-2024-49941, CVE-2024-53199, CVE-2024-50185, CVE-2024-49858, CVE-2024-50024, CVE-2024-50146, CVE-2024-50088, CVE-2024-53111, CVE-2024-50244, CVE-2024-47697, CVE-2024-53108, CVE-2024-49896, CVE-2024-49859, CVE-2024-56748, CVE-2024-50111, CVE-2024-53056, CVE-2024-50283, CVE-2024-49955, CVE-2024-47706, CVE-2024-53214, CVE-2024-47712, CVE-2024-47678, CVE-2024-53125, CVE-2024-53178, CVE-2024-53232, CVE-2024-49928, CVE-2024-47731, CVE-2024-53121, CVE-2024-56540, CVE-2024-50271, CVE-2024-53044, CVE-2024-53132, CVE-2024-53052, CVE-2024-50195, CVE-2024-50191, CVE-2024-47694, CVE-2024-49973, CVE-2024-49910, CVE-2024-56746, CVE-2024-56674, CVE-2024-49871, CVE-2024-50258, CVE-2024-50049, CVE-2024-49951, CVE-2024-50182, CVE-2024-53174, CVE-2024-50143, CVE-2024-53203, CVE-2024-53129, CVE-2024-50224, CVE-2024-49943, CVE-2024-50131, CVE-2024-50221, CVE-2024-53143, CVE-2024-56531, CVE-2024-53055, CVE-2024-50135, CVE-2024-50279, CVE-2024-50120, CVE-2024-53140, CVE-2024-50272, CVE-2024-47728, CVE-2024-53167, CVE-2024-56691, CVE-2024-53223, CVE-2024-49919, CVE-2024-53082, CVE-2024-53213, CVE-2024-50298, CVE-2024-56681, CVE-2024-53069, CVE-2024-50001, CVE-2024-50083, CVE-2024-50056, CVE-2024-56544, CVE-2024-49989, CVE-2024-50251, CVE-2024-50121, CVE-2024-53228, CVE-2024-56700, CVE-2024-49862, CVE-2024-49870, CVE-2024-50148, CVE-2024-53138, CVE-2024-50160, CVE-2024-50002, CVE-2024-56533, CVE-2024-46869, CVE-2024-50118, CVE-2024-50276, CVE-2024-50226, CVE-2024-53146, CVE-2024-53134, CVE-2024-53165, CVE-2024-56728, CVE-2024-49931, CVE-2024-50261, CVE-2024-50064, CVE-2024-47711, CVE-2024-53157, CVE-2024-53113, CVE-2024-49898, CVE-2024-50214, CVE-2024-53085, CVE-2024-49924, CVE-2024-49944, CVE-2024-47686, CVE-2024-53238, CVE-2024-56754, CVE-2024-50066, CVE-2024-53189, CVE-2024-49864, CVE-2024-50093, CVE-2024-50060, CVE-2024-56684, CVE-2024-49861, CVE-2024-50243, CVE-2024-50007, CVE-2024-50227, CVE-2024-50238, CVE-2024-49918, CVE-2024-53227, CVE-2024-50119, CVE-2024-53088, CVE-2024-53100, CVE-2024-47693, CVE-2024-53197, CVE-2024-49932, CVE-2024-53163, CVE-2024-53118, CVE-2024-47733, CVE-2024-49913, CVE-2024-56545, CVE-2024-47739, CVE-2024-47709, CVE-2024-50015, CVE-2024-56690, CVE-2024-56535, CVE-2024-50167, CVE-2024-49965, CVE-2024-53043, CVE-2024-50092, CVE-2024-50128, CVE-2024-53080, CVE-2024-56539, CVE-2024-50222, CVE-2024-47724, CVE-2024-49980, CVE-2024-49860, CVE-2024-50034, CVE-2024-47682, CVE-2024-49949, CVE-2024-49935, CVE-2024-49914, CVE-2024-47732, CVE-2024-47701, CVE-2024-53200, CVE-2024-50123, CVE-2024-50100, CVE-2024-56704, CVE-2024-53115, CVE-2024-49879, CVE-2024-50096, CVE-2024-53062, CVE-2024-50094, CVE-2024-50105, CVE-2024-49947, CVE-2024-50252, CVE-2024-56537, CVE-2024-49953, CVE-2024-53067, CVE-2024-50091, CVE-2024-53148, CVE-2024-50164, CVE-2024-50231, CVE-2024-49874, CVE-2024-47750, CVE-2024-50206, CVE-2024-50207, CVE-2024-56742, CVE-2024-50005, CVE-2024-56687, CVE-2024-50157, CVE-2024-50201, CVE-2024-49921, CVE-2024-56727, CVE-2024-50136, CVE-2024-50126, CVE-2024-50239, CVE-2024-50268, CVE-2024-50234, CVE-2024-50085, CVE-2024-47736, CVE-2024-49911, CVE-2024-50198, CVE-2024-47704, CVE-2024-53233, CVE-2024-49981, CVE-2024-53053, CVE-2024-50139, CVE-2024-49895, CVE-2024-56688, CVE-2024-50031, CVE-2024-49916, CVE-2024-53155, CVE-2024-50035, CVE-2024-53230, CVE-2024-47738, CVE-2024-53099, CVE-2024-53212, CVE-2024-47743, CVE-2024-56701, CVE-2024-53151, CVE-2024-49934, CVE-2024-53141, CVE-2024-50059, CVE-2024-49922, CVE-2024-50215, CVE-2024-50022, CVE-2024-50229, CVE-2024-50184, CVE-2024-50065, CVE-2024-50242, CVE-2024-50003, CVE-2024-47715, CVE-2024-53093, CVE-2024-49956, CVE-2024-49868, CVE-2024-49878, CVE-2024-56722, CVE-2024-53156, CVE-2024-49857, CVE-2024-53110, CVE-2024-47735, CVE-2024-53168, CVE-2024-56543, CVE-2024-50080, CVE-2024-50068, CVE-2024-49909, CVE-2024-56708, CVE-2024-50134, CVE-2024-50262, CVE-2024-50303, CVE-2024-50203, CVE-2024-49957, CVE-2024-50087, CVE-2024-53065, CVE-2024-49920, CVE-2024-49880, CVE-2024-50110, CVE-2024-49877, CVE-2024-47692, CVE-2024-50127, CVE-2024-49907, CVE-2024-49937, CVE-2024-49987, CVE-2024-50141, CVE-2024-56538, CVE-2024-49865, CVE-2024-47689, CVE-2024-50218, CVE-2024-47720, CVE-2024-53191, CVE-2024-53194, CVE-2024-50216, CVE-2024-50213, CVE-2024-49988, CVE-2024-53094, CVE-2024-50186, CVE-2024-50010, CVE-2024-50169, CVE-2024-53107, CVE-2024-47698, CVE-2024-53142, CVE-2024-49945, CVE-2024-49873, CVE-2024-53176, CVE-2024-49884, CVE-2024-50112, CVE-2024-50199, CVE-2024-53122, CVE-2024-50284, CVE-2024-50208, CVE-2024-53218, CVE-2024-50045, CVE-2024-50028, CVE-2024-50122, CVE-2024-50291, CVE-2024-50047, CVE-2024-50090, CVE-2024-49876, CVE-2024-47730, CVE-2024-53195, CVE-2024-56703, CVE-2024-49996, CVE-2024-49954, CVE-2024-47757, CVE-2024-47717, CVE-2024-49850, CVE-2024-50273, CVE-2024-47752, CVE-2024-53149, CVE-2024-53173, CVE-2024-50235, CVE-2024-50150, CVE-2024-50030, CVE-2024-50079, CVE-2024-56546, CVE-2024-53086, CVE-2024-53150, CVE-2024-49979, CVE-2024-50058, CVE-2024-50171, CVE-2024-56685, CVE-2024-50254, CVE-2024-47751, CVE-2024-53193, CVE-2024-53209, CVE-2024-49926, CVE-2024-47748, CVE-2024-53109, CVE-2024-53066, CVE-2024-50225, CVE-2024-53137, CVE-2024-50113, CVE-2024-49912, CVE-2024-49998, CVE-2024-50116, CVE-2024-49977, CVE-2024-47687, CVE-2024-50084, CVE-2024-49982, CVE-2024-50253, CVE-2024-50290, CVE-2024-47727, CVE-2024-50248, CVE-2024-50170, CVE-2024-47691, CVE-2024-53147, CVE-2024-50192, CVE-2024-53117, CVE-2024-49938, CVE-2024-47744, CVE-2024-50147, CVE-2024-49991, CVE-2024-50048, CVE-2024-53127, CVE-2024-49902, CVE-2024-50156, CVE-2024-53087, CVE-2024-56548, CVE-2024-50125, CVE-2024-56723, CVE-2024-50108, CVE-2024-53049, CVE-2024-50081, CVE-2024-56726, CVE-2024-49875, CVE-2024-50194, CVE-2024-50278, CVE-2024-49904, CVE-2024-50267, CVE-2024-50297, CVE-2024-50130, CVE-2024-49936)
{
"affected": [
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-bpf-dev",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-buildinfo-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-buildinfo-6.11.0-18-generic-64k",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-cloud-tools-6.11.0-18",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-cloud-tools-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-cloud-tools-common",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-doc",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-headers-6.11.0-18",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-headers-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-headers-6.11.0-18-generic-64k",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-image-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-image-6.11.0-18-generic-dbgsym",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-image-unsigned-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-image-unsigned-6.11.0-18-generic-64k",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-image-unsigned-6.11.0-18-generic-64k-dbgsym",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-image-unsigned-6.11.0-18-generic-dbgsym",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-lib-rust-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-libc-dev",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-modules-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-modules-6.11.0-18-generic-64k",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-modules-extra-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-modules-ipu6-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-modules-ipu7-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-modules-usbio-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-modules-vision-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-source-6.11.0",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-tools-6.11.0-18",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-tools-6.11.0-18-generic",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-tools-6.11.0-18-generic-64k",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-tools-common",
"binary_version": "6.11.0-18.18"
},
{
"binary_name": "linux-tools-host",
"binary_version": "6.11.0-18.18"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux",
"purl": "pkg:deb/ubuntu/linux@6.11.0-18.18?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-18.18"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-31.31",
"6.11.0-7.7",
"6.11.0-8.8",
"6.11.0-9.9",
"6.11.0-12.13",
"6.11.0-13.14",
"6.11.0-14.15"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1010-lowlatency",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-buildinfo-6.11.0-1010-lowlatency-64k",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1010-lowlatency",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-headers-6.11.0-1010-lowlatency",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-headers-6.11.0-1010-lowlatency-64k",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1010-lowlatency",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1010-lowlatency-64k",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1010-lowlatency-64k-dbgsym",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1010-lowlatency-dbgsym",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-lowlatency-cloud-tools-6.11.0-1010",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-lowlatency-headers-6.11.0-1010",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-lowlatency-lib-rust-6.11.0-1010-lowlatency",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-lowlatency-tools-6.11.0-1010",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-modules-6.11.0-1010-lowlatency",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-modules-6.11.0-1010-lowlatency-64k",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1010-lowlatency",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-tools-6.11.0-1010-lowlatency",
"binary_version": "6.11.0-1010.11"
},
{
"binary_name": "linux-tools-6.11.0-1010-lowlatency-64k",
"binary_version": "6.11.0-1010.11"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-lowlatency",
"purl": "pkg:deb/ubuntu/linux-lowlatency@6.11.0-1010.11?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1010.11"
}
],
"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"
]
}
],
"aliases": [],
"details": "Attila Sz\u00e1sz discovered that the HFS+ file system implementation in the\nLinux Kernel contained a heap overflow vulnerability. An attacker could use\na specially crafted file system image that, when mounted, could cause a\ndenial of service (system crash) or possibly execute arbitrary code.\n(CVE-2025-0927)\n\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 - ARM32 architecture;\n - ARM64 architecture;\n - PowerPC architecture;\n - RISC-V architecture;\n - S390 architecture;\n - SuperH RISC architecture;\n - User-Mode Linux (UML);\n - x86 architecture;\n - Block layer subsystem;\n - Cryptographic API;\n - Compute Acceleration Framework;\n - ACPI drivers;\n - Drivers core;\n - ATA over ethernet (AOE) driver;\n - RAM backed block device driver;\n - Network block device driver;\n - Ublk userspace block driver;\n - Compressed RAM block device driver;\n - Bluetooth drivers;\n - TPM device driver;\n - Clock framework and drivers;\n - Data acquisition framework and drivers;\n - CPU frequency scaling framework;\n - Hardware crypto device drivers;\n - CXL (Compute Express Link) drivers;\n - DAX dirext access to differentiated memory framework;\n - Buffer Sharing and Synchronization framework;\n - EDAC drivers;\n - FireWire subsystem;\n - ARM SCMI message protocol;\n - ARM SCPI message protocol;\n - EFI core;\n - Qualcomm firmware drivers;\n - GPIO subsystem;\n - GPU drivers;\n - HID subsystem;\n - I2C subsystem;\n - I3C subsystem;\n - IIO ADC drivers;\n - IIO subsystem;\n - InfiniBand drivers;\n - Input Device core drivers;\n - IOMMU subsystem;\n - IRQ chip drivers;\n - Mailbox framework;\n - Multiple devices driver;\n - Media drivers;\n - Multifunction device drivers;\n - MMC subsystem;\n - MTD block device drivers;\n - Ethernet bonding driver;\n - Network drivers;\n - Mellanox network drivers;\n - STMicroelectronics network drivers;\n - NTB driver;\n - Virtio pmem driver;\n - NVME drivers;\n - Parport drivers;\n - PCI subsystem;\n - Alibaba DDR Sub-System Driveway PMU driver;\n - PHY drivers;\n - Pin controllers subsystem;\n - x86 platform drivers;\n - i.MX PM domains;\n - Powercap sysfs driver;\n - Voltage and Current Regulator drivers;\n - Remote Processor subsystem;\n - StarFive reset controller drivers;\n - Real Time Clock drivers;\n - SCSI subsystem;\n - SuperH / SH-Mobile drivers;\n - QCOM SoC drivers;\n - Xilinx SoC drivers;\n - SPI subsystem;\n - Direct Digital Synthesis drivers;\n - Media staging drivers;\n - TCM subsystem;\n - Thermal drivers;\n - Thunderbolt and USB4 drivers;\n - TTY drivers;\n - UFS subsystem;\n - USB Device Class drivers;\n - DesignWare USB3 driver;\n - USB Gadget drivers;\n - USB Host Controller drivers;\n - USB Dual Role (OTG-ready) Controller drivers;\n - USB Serial drivers;\n - USB Type-C support driver;\n - USB Type-C Port Controller Manager driver;\n - TI TPS6598x USB Power Delivery controller driver;\n - USB Type-C Connector System Software Interface driver;\n - vDPA drivers;\n - VFIO drivers;\n - Virtio Host (VHOST) subsystem;\n - Framebuffer layer;\n - Virtio drivers;\n - Xen hypervisor drivers;\n - AFS file system;\n - BTRFS file system;\n - File systems infrastructure;\n - Ceph distributed file system;\n - EROFS file system;\n - Ext4 file system;\n - F2FS file system;\n - GFS2 file system;\n - JFS file system;\n - Network file systems library;\n - Network file system (NFS) client;\n - Network file system (NFS) server daemon;\n - NILFS2 file system;\n - File system notification infrastructure;\n - NTFS3 file system;\n - Proc file system;\n - SMB network file system;\n - UBI file system;\n - BPF subsystem;\n - Network file system (NFS) superblock;\n - Virtio network driver;\n - Bluetooth subsystem;\n - Network traffic control;\n - Network sockets;\n - TCP network protocol;\n - Tracing infrastructure;\n - User-space API (UAPI);\n - Kernel init infrastructure;\n - io_uring subsystem;\n - IPC subsystem;\n - Perf events;\n - Kernel fork() syscall;\n - Kernel thread helper (kthread);\n - Padata parallel execution mechanism;\n - RCU subsystem;\n - Arbitrary resource management;\n - Scheduler infrastructure;\n - Signal handling mechanism;\n - Static call mechanism;\n - Task handling mechanism;\n - Timer substystem drivers;\n - Maple Tree data structure library;\n - Memory management;\n - 9P file system network protocol;\n - Ethernet bridge;\n - CAN network layer;\n - Networking core;\n - DCCP (Datagram Congestion Control Protocol);\n - Distributed Switch Architecture;\n - IPv4 networking;\n - IPv6 networking;\n - IUCV driver;\n - L2TP protocol;\n - MAC80211 subsystem;\n - IEEE 802.15.4 subsystem;\n - Multipath TCP;\n - NCSI (Network Controller Sideband Interface) driver;\n - Netfilter;\n - Netlink;\n - RxRPC session sockets;\n - SCTP protocol;\n - SMC sockets;\n - Sun RPC protocol;\n - TIPC protocol;\n - Unix domain sockets;\n - VMware vSockets driver;\n - Wireless networking;\n - eXpress Data Path;\n - XFRM subsystem;\n - AppArmor security module;\n - Integrity Measurement Architecture(IMA) framework;\n - Key management;\n - ALSA framework;\n - FireWire sound drivers;\n - AudioScience HPI driver;\n - HD-audio driver;\n - SoC Audio for Freescale CPUs drivers;\n - Intel ASoC drivers;\n - MediaTek ASoC drivers;\n - QCOM ASoC drivers;\n - SoC audio core drivers;\n - STMicroelectronics SoC drivers;\n - USB sound devices;\n - KVM core;\n(CVE-2024-53192, CVE-2024-53130, CVE-2024-53234, CVE-2024-49986,\nCVE-2024-49948, CVE-2024-49976, CVE-2024-53158, CVE-2024-50142,\nCVE-2024-53160, CVE-2024-50124, CVE-2024-50055, CVE-2024-56744,\nCVE-2024-53128, CVE-2024-50204, CVE-2024-50176, CVE-2024-50294,\nCVE-2024-50166, CVE-2024-49906, CVE-2024-50074, CVE-2024-47734,\nCVE-2024-50249, CVE-2024-53216, CVE-2024-53162, CVE-2024-50189,\nCVE-2024-53196, CVE-2024-49969, CVE-2024-53210, CVE-2024-50300,\nCVE-2024-47714, CVE-2024-50158, CVE-2024-49983, CVE-2024-49959,\nCVE-2024-49985, CVE-2024-53078, CVE-2024-53180, CVE-2024-50099,\nCVE-2024-50009, CVE-2024-53059, CVE-2024-49962, CVE-2024-56755,\nCVE-2024-50106, CVE-2024-53184, CVE-2024-53063, CVE-2024-50161,\nCVE-2024-50289, CVE-2024-56705, CVE-2024-56697, CVE-2024-53135,\nCVE-2024-47676, CVE-2024-53084, CVE-2024-50270, CVE-2024-50078,\nCVE-2024-50247, CVE-2024-50075, CVE-2024-49946, CVE-2024-50209,\nCVE-2024-53048, CVE-2024-53071, CVE-2024-49930, CVE-2024-50174,\nCVE-2024-50039, CVE-2024-50115, CVE-2024-56680, CVE-2024-49901,\nCVE-2024-49971, CVE-2024-50180, CVE-2024-50061, CVE-2024-47681,\nCVE-2024-50107, CVE-2024-49972, CVE-2024-49889, CVE-2024-49872,\nCVE-2024-50067, CVE-2024-47718, CVE-2024-50246, CVE-2024-53090,\nCVE-2024-49961, CVE-2024-56549, CVE-2024-47688, CVE-2024-50073,\nCVE-2024-47716, CVE-2024-49952, CVE-2024-56749, CVE-2024-47737,\nCVE-2024-56739, CVE-2024-56752, CVE-2024-47700, CVE-2024-56741,\nCVE-2024-50196, CVE-2024-49881, CVE-2024-50230, CVE-2024-50020,\nCVE-2024-49992, CVE-2024-56534, CVE-2024-49883, CVE-2024-50233,\nCVE-2024-50057, CVE-2024-53091, CVE-2024-49886, CVE-2024-53144,\nCVE-2024-50029, CVE-2024-50240, CVE-2024-56720, CVE-2024-50282,\nCVE-2024-50036, CVE-2024-53126, CVE-2024-56702, CVE-2024-50101,\nCVE-2024-56696, CVE-2024-50193, CVE-2024-53089, CVE-2024-50263,\nCVE-2024-47707, CVE-2024-49925, CVE-2024-50178, CVE-2024-47690,\nCVE-2024-53119, CVE-2024-49939, CVE-2024-50274, CVE-2024-50168,\nCVE-2024-49963, CVE-2024-50220, CVE-2024-50250, CVE-2024-49966,\nCVE-2024-50104, CVE-2024-49968, CVE-2024-47685, CVE-2024-50281,\nCVE-2024-50190, CVE-2024-50181, CVE-2024-50304, CVE-2022-49034,\nCVE-2024-47726, CVE-2024-50159, CVE-2024-49851, CVE-2024-49933,\nCVE-2024-50277, CVE-2024-56729, CVE-2024-49885, CVE-2024-53068,\nCVE-2024-50162, CVE-2024-50179, CVE-2024-53072, CVE-2024-47742,\nCVE-2024-53083, CVE-2024-50025, CVE-2023-52917, CVE-2024-50269,\nCVE-2024-50302, CVE-2024-50293, CVE-2024-50177, CVE-2024-53075,\nCVE-2024-50257, CVE-2024-49995, CVE-2024-53076, CVE-2024-49940,\nCVE-2024-50114, CVE-2024-50043, CVE-2024-47713, CVE-2024-53081,\nCVE-2024-50151, CVE-2024-50211, CVE-2024-53047, CVE-2024-50016,\nCVE-2024-56679, CVE-2024-56689, CVE-2024-50008, CVE-2024-47723,\nCVE-2024-50285, CVE-2024-49899, CVE-2024-50098, CVE-2024-50000,\nCVE-2024-53098, CVE-2024-53175, CVE-2024-49888, CVE-2024-50132,\nCVE-2024-49964, CVE-2024-53042, CVE-2024-50295, CVE-2024-50038,\nCVE-2024-49905, CVE-2024-50012, CVE-2024-47754, CVE-2024-50017,\nCVE-2024-53095, CVE-2024-49978, CVE-2024-56541, CVE-2024-49891,\nCVE-2024-50033, CVE-2024-50292, CVE-2024-50037, CVE-2024-53145,\nCVE-2024-56747, CVE-2024-50260, CVE-2024-53177, CVE-2024-53229,\nCVE-2024-53221, CVE-2024-56677, CVE-2024-53171, CVE-2024-50299,\nCVE-2024-50202, CVE-2024-53208, CVE-2024-53105, CVE-2024-50006,\nCVE-2024-50149, CVE-2024-50275, CVE-2024-47753, CVE-2024-50212,\nCVE-2024-49855, CVE-2024-50145, CVE-2024-53120, CVE-2024-53061,\nCVE-2024-53217, CVE-2024-53198, CVE-2024-50165, CVE-2024-49866,\nCVE-2024-49994, CVE-2024-50109, CVE-2024-50137, CVE-2024-50245,\nCVE-2024-53154, CVE-2024-56724, CVE-2024-53187, CVE-2024-53202,\nCVE-2024-49927, CVE-2024-50163, CVE-2024-50152, CVE-2024-53220,\nCVE-2024-47741, CVE-2024-50102, CVE-2024-53188, CVE-2024-53116,\nCVE-2024-47695, CVE-2024-47702, CVE-2024-49970, CVE-2024-50155,\nCVE-2024-53058, CVE-2024-49908, CVE-2024-50256, CVE-2024-53161,\nCVE-2024-49893, CVE-2024-53074, CVE-2024-50144, CVE-2024-53219,\nCVE-2024-49869, CVE-2024-53133, CVE-2024-50041, CVE-2024-49974,\nCVE-2024-50287, CVE-2024-50133, CVE-2024-53183, CVE-2024-49997,\nCVE-2024-47749, CVE-2024-53153, CVE-2024-50063, CVE-2024-49852,\nCVE-2024-50259, CVE-2024-50013, CVE-2024-56751, CVE-2024-53236,\nCVE-2024-49999, CVE-2024-50076, CVE-2024-49923, CVE-2024-50288,\nCVE-2024-49867, CVE-2024-49887, CVE-2024-53101, CVE-2024-56725,\nCVE-2024-56745, CVE-2024-49863, CVE-2024-49890, CVE-2024-50187,\nCVE-2024-50200, CVE-2024-47679, CVE-2024-50077, CVE-2024-50069,\nCVE-2024-53114, CVE-2024-50071, CVE-2024-50072, CVE-2024-47705,\nCVE-2024-50205, CVE-2024-49975, CVE-2024-50237, CVE-2024-53092,\nCVE-2024-49917, CVE-2024-49853, CVE-2024-50103, CVE-2024-53190,\nCVE-2024-53215, CVE-2024-50280, CVE-2024-50014, CVE-2024-47756,\nCVE-2024-53231, CVE-2024-49856, CVE-2024-50023, CVE-2024-53123,\nCVE-2024-56756, CVE-2024-50140, CVE-2024-56699, CVE-2024-47703,\nCVE-2024-49958, CVE-2024-56692, CVE-2024-50082, CVE-2024-53181,\nCVE-2024-47699, CVE-2024-50154, CVE-2024-49960, CVE-2024-53226,\nCVE-2024-56683, CVE-2024-53239, CVE-2024-53104, CVE-2024-50044,\nCVE-2024-50255, CVE-2024-50021, CVE-2024-50070, CVE-2024-47740,\nCVE-2024-49882, CVE-2024-50232, CVE-2024-47708, CVE-2024-47747,\nCVE-2024-49929, CVE-2024-56693, CVE-2024-53124, CVE-2024-50223,\nCVE-2024-50265, CVE-2024-53172, CVE-2024-50197, CVE-2024-49915,\nCVE-2024-53224, CVE-2024-47684, CVE-2024-50217, CVE-2024-50286,\nCVE-2024-47677, CVE-2024-49942, CVE-2024-50026, CVE-2024-50236,\nCVE-2024-50086, CVE-2024-50153, CVE-2024-47675, CVE-2024-53112,\nCVE-2024-50138, CVE-2024-53045, CVE-2024-53170, CVE-2024-50095,\nCVE-2024-50188, CVE-2024-50173, CVE-2024-50019, CVE-2024-50117,\nCVE-2024-47746, CVE-2024-50172, CVE-2024-53166, CVE-2024-56721,\nCVE-2024-50266, CVE-2024-47696, CVE-2024-47719, CVE-2024-49892,\nCVE-2024-56678, CVE-2024-47680, CVE-2024-50296, CVE-2024-53152,\nCVE-2024-56536, CVE-2024-50042, CVE-2024-49894, CVE-2024-49897,\nCVE-2024-47671, CVE-2024-53064, CVE-2024-53077, CVE-2024-49903,\nCVE-2024-53169, CVE-2024-50011, CVE-2024-47710, CVE-2024-53046,\nCVE-2024-50046, CVE-2024-53131, CVE-2024-53237, CVE-2024-56707,\nCVE-2024-49950, CVE-2024-53079, CVE-2024-56694, CVE-2024-53106,\nCVE-2024-49900, CVE-2024-47745, CVE-2024-50301, CVE-2024-50040,\nCVE-2024-50183, CVE-2024-56532, CVE-2024-56698, CVE-2024-53139,\nCVE-2024-47721, CVE-2024-50062, CVE-2024-50129, CVE-2024-50027,\nCVE-2024-49941, CVE-2024-53199, CVE-2024-50185, CVE-2024-49858,\nCVE-2024-50024, CVE-2024-50146, CVE-2024-50088, CVE-2024-53111,\nCVE-2024-50244, CVE-2024-47697, CVE-2024-53108, CVE-2024-49896,\nCVE-2024-49859, CVE-2024-56748, CVE-2024-50111, CVE-2024-53056,\nCVE-2024-50283, CVE-2024-49955, CVE-2024-47706, CVE-2024-53214,\nCVE-2024-47712, CVE-2024-47678, CVE-2024-53125, CVE-2024-53178,\nCVE-2024-53232, CVE-2024-49928, CVE-2024-47731, CVE-2024-53121,\nCVE-2024-56540, CVE-2024-50271, CVE-2024-53044, CVE-2024-53132,\nCVE-2024-53052, CVE-2024-50195, CVE-2024-50191, CVE-2024-47694,\nCVE-2024-49973, CVE-2024-49910, CVE-2024-56746, CVE-2024-56674,\nCVE-2024-49871, CVE-2024-50258, CVE-2024-50049, CVE-2024-49951,\nCVE-2024-50182, CVE-2024-53174, CVE-2024-50143, CVE-2024-53203,\nCVE-2024-53129, CVE-2024-50224, CVE-2024-49943, CVE-2024-50131,\nCVE-2024-50221, CVE-2024-53143, CVE-2024-56531, CVE-2024-53055,\nCVE-2024-50135, CVE-2024-50279, CVE-2024-50120, CVE-2024-53140,\nCVE-2024-50272, CVE-2024-47728, CVE-2024-53167, CVE-2024-56691,\nCVE-2024-53223, CVE-2024-49919, CVE-2024-53082, CVE-2024-53213,\nCVE-2024-50298, CVE-2024-56681, CVE-2024-53069, CVE-2024-50001,\nCVE-2024-50083, CVE-2024-50056, CVE-2024-56544, CVE-2024-49989,\nCVE-2024-50251, CVE-2024-50121, CVE-2024-53228, CVE-2024-56700,\nCVE-2024-49862, CVE-2024-49870, CVE-2024-50148, CVE-2024-53138,\nCVE-2024-50160, CVE-2024-50002, CVE-2024-56533, CVE-2024-46869,\nCVE-2024-50118, CVE-2024-50276, CVE-2024-50226, CVE-2024-53146,\nCVE-2024-53134, CVE-2024-53165, CVE-2024-56728, CVE-2024-49931,\nCVE-2024-50261, CVE-2024-50064, CVE-2024-47711, CVE-2024-53157,\nCVE-2024-53113, CVE-2024-49898, CVE-2024-50214, CVE-2024-53085,\nCVE-2024-49924, CVE-2024-49944, CVE-2024-47686, CVE-2024-53238,\nCVE-2024-56754, CVE-2024-50066, CVE-2024-53189, CVE-2024-49864,\nCVE-2024-50093, CVE-2024-50060, CVE-2024-56684, CVE-2024-49861,\nCVE-2024-50243, CVE-2024-50007, CVE-2024-50227, CVE-2024-50238,\nCVE-2024-49918, CVE-2024-53227, CVE-2024-50119, CVE-2024-53088,\nCVE-2024-53100, CVE-2024-47693, CVE-2024-53197, CVE-2024-49932,\nCVE-2024-53163, CVE-2024-53118, CVE-2024-47733, CVE-2024-49913,\nCVE-2024-56545, CVE-2024-47739, CVE-2024-47709, CVE-2024-50015,\nCVE-2024-56690, CVE-2024-56535, CVE-2024-50167, CVE-2024-49965,\nCVE-2024-53043, CVE-2024-50092, CVE-2024-50128, CVE-2024-53080,\nCVE-2024-56539, CVE-2024-50222, CVE-2024-47724, CVE-2024-49980,\nCVE-2024-49860, CVE-2024-50034, CVE-2024-47682, CVE-2024-49949,\nCVE-2024-49935, CVE-2024-49914, CVE-2024-47732, CVE-2024-47701,\nCVE-2024-53200, CVE-2024-50123, CVE-2024-50100, CVE-2024-56704,\nCVE-2024-53115, CVE-2024-49879, CVE-2024-50096, CVE-2024-53062,\nCVE-2024-50094, CVE-2024-50105, CVE-2024-49947, CVE-2024-50252,\nCVE-2024-56537, CVE-2024-49953, CVE-2024-53067, CVE-2024-50091,\nCVE-2024-53148, CVE-2024-50164, CVE-2024-50231, CVE-2024-49874,\nCVE-2024-47750, CVE-2024-50206, CVE-2024-50207, CVE-2024-56742,\nCVE-2024-50005, CVE-2024-56687, CVE-2024-50157, CVE-2024-50201,\nCVE-2024-49921, CVE-2024-56727, CVE-2024-50136, CVE-2024-50126,\nCVE-2024-50239, CVE-2024-50268, CVE-2024-50234, CVE-2024-50085,\nCVE-2024-47736, CVE-2024-49911, CVE-2024-50198, CVE-2024-47704,\nCVE-2024-53233, CVE-2024-49981, CVE-2024-53053, CVE-2024-50139,\nCVE-2024-49895, CVE-2024-56688, CVE-2024-50031, CVE-2024-49916,\nCVE-2024-53155, CVE-2024-50035, CVE-2024-53230, CVE-2024-47738,\nCVE-2024-53099, CVE-2024-53212, CVE-2024-47743, CVE-2024-56701,\nCVE-2024-53151, CVE-2024-49934, CVE-2024-53141, CVE-2024-50059,\nCVE-2024-49922, CVE-2024-50215, CVE-2024-50022, CVE-2024-50229,\nCVE-2024-50184, CVE-2024-50065, CVE-2024-50242, CVE-2024-50003,\nCVE-2024-47715, CVE-2024-53093, CVE-2024-49956, CVE-2024-49868,\nCVE-2024-49878, CVE-2024-56722, CVE-2024-53156, CVE-2024-49857,\nCVE-2024-53110, CVE-2024-47735, CVE-2024-53168, CVE-2024-56543,\nCVE-2024-50080, CVE-2024-50068, CVE-2024-49909, CVE-2024-56708,\nCVE-2024-50134, CVE-2024-50262, CVE-2024-50303, CVE-2024-50203,\nCVE-2024-49957, CVE-2024-50087, CVE-2024-53065, CVE-2024-49920,\nCVE-2024-49880, CVE-2024-50110, CVE-2024-49877, CVE-2024-47692,\nCVE-2024-50127, CVE-2024-49907, CVE-2024-49937, CVE-2024-49987,\nCVE-2024-50141, CVE-2024-56538, CVE-2024-49865, CVE-2024-47689,\nCVE-2024-50218, CVE-2024-47720, CVE-2024-53191, CVE-2024-53194,\nCVE-2024-50216, CVE-2024-50213, CVE-2024-49988, CVE-2024-53094,\nCVE-2024-50186, CVE-2024-50010, CVE-2024-50169, CVE-2024-53107,\nCVE-2024-47698, CVE-2024-53142, CVE-2024-49945, CVE-2024-49873,\nCVE-2024-53176, CVE-2024-49884, CVE-2024-50112, CVE-2024-50199,\nCVE-2024-53122, CVE-2024-50284, CVE-2024-50208, CVE-2024-53218,\nCVE-2024-50045, CVE-2024-50028, CVE-2024-50122, CVE-2024-50291,\nCVE-2024-50047, CVE-2024-50090, CVE-2024-49876, CVE-2024-47730,\nCVE-2024-53195, CVE-2024-56703, CVE-2024-49996, CVE-2024-49954,\nCVE-2024-47757, CVE-2024-47717, CVE-2024-49850, CVE-2024-50273,\nCVE-2024-47752, CVE-2024-53149, CVE-2024-53173, CVE-2024-50235,\nCVE-2024-50150, CVE-2024-50030, CVE-2024-50079, CVE-2024-56546,\nCVE-2024-53086, CVE-2024-53150, CVE-2024-49979, CVE-2024-50058,\nCVE-2024-50171, CVE-2024-56685, CVE-2024-50254, CVE-2024-47751,\nCVE-2024-53193, CVE-2024-53209, CVE-2024-49926, CVE-2024-47748,\nCVE-2024-53109, CVE-2024-53066, CVE-2024-50225, CVE-2024-53137,\nCVE-2024-50113, CVE-2024-49912, CVE-2024-49998, CVE-2024-50116,\nCVE-2024-49977, CVE-2024-47687, CVE-2024-50084, CVE-2024-49982,\nCVE-2024-50253, CVE-2024-50290, CVE-2024-47727, CVE-2024-50248,\nCVE-2024-50170, CVE-2024-47691, CVE-2024-53147, CVE-2024-50192,\nCVE-2024-53117, CVE-2024-49938, CVE-2024-47744, CVE-2024-50147,\nCVE-2024-49991, CVE-2024-50048, CVE-2024-53127, CVE-2024-49902,\nCVE-2024-50156, CVE-2024-53087, CVE-2024-56548, CVE-2024-50125,\nCVE-2024-56723, CVE-2024-50108, CVE-2024-53049, CVE-2024-50081,\nCVE-2024-56726, CVE-2024-49875, CVE-2024-50194, CVE-2024-50278,\nCVE-2024-49904, CVE-2024-50267, CVE-2024-50297, CVE-2024-50130,\nCVE-2024-49936)\n",
"id": "USN-7276-1",
"modified": "2025-02-19T15:58:57.779509Z",
"published": "2025-02-19T15:58:57.779509Z",
"references": [
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-7276-1"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2022-49034"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-46869"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47671"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47675"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47676"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47677"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47678"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47679"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47680"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47681"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47682"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47684"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47685"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47686"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47687"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47688"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47689"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47690"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47691"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47692"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47693"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47694"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47695"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47696"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47697"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47698"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47699"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47700"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47701"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47702"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47703"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47704"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47705"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47706"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47707"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47708"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47709"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47710"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47711"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47712"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47713"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47714"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47715"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47716"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47717"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47718"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47719"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47720"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47721"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47723"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47724"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47726"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47727"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47728"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47730"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47731"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47732"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47733"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47734"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47735"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47736"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47737"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47738"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47739"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47740"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47741"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47742"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47743"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47744"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47745"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47746"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47747"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47748"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47749"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47750"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47751"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47752"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47753"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47754"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47756"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47757"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49850"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49851"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49852"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49853"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49855"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49856"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49857"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49858"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49859"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49860"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49861"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49862"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49863"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49864"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49865"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49866"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49867"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49868"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49869"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49870"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49871"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49872"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49873"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49874"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49875"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49876"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49877"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49878"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49879"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49880"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49881"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49882"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49883"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49884"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49885"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49886"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49887"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49888"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49889"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49890"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49891"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49892"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49893"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49894"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49895"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49896"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49897"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49898"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49899"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49900"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49901"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49902"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49903"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49904"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49905"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49906"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49907"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49908"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49909"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49910"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49911"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49912"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49913"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49914"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49915"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49916"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49917"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49918"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49919"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49920"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49921"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49922"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49923"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49924"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49925"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49926"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49927"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49928"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49929"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49930"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49931"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49932"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49933"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49934"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49935"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49936"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49937"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49938"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49939"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49940"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49941"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49942"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49943"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49944"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49945"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49946"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49947"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49948"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49949"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49950"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49951"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49952"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49953"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49954"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49955"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49956"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49957"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49958"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49959"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49960"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49961"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49962"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49963"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49964"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49965"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49966"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49968"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49969"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49970"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49971"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49972"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49973"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49974"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49975"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49976"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49977"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49978"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49979"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49980"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49981"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49982"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49983"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49985"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49986"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49987"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49988"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49989"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49991"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49992"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49994"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49995"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49996"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49997"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49998"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49999"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50000"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50001"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50002"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50003"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50005"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50006"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50007"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50008"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50009"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50010"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50011"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50012"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50013"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50014"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50015"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50017"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50019"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50020"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50021"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50022"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50023"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50024"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50025"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50026"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50027"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50028"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50029"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50030"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50031"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50033"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50034"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50035"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50036"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50037"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50038"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50039"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50040"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50041"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50042"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50043"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50044"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50045"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50046"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50047"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50048"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50049"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50055"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50056"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50057"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50058"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50059"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50060"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50061"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50062"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50063"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50064"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50065"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50066"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50067"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50068"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50069"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50070"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50071"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50072"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50073"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50074"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50075"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50076"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50077"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50078"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50079"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50080"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50081"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50082"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50083"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50084"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50085"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50086"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50087"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50088"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50090"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50091"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50092"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50093"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50094"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50095"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50096"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50098"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50099"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50100"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50101"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50102"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50103"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50104"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50105"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50106"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50107"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50108"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50109"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50110"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50111"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50112"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50113"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50114"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50115"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50116"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50117"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50118"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50119"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50120"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50121"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50122"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50123"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50124"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50125"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50126"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50127"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50128"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50129"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50130"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50131"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50132"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50133"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50134"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50135"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50136"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50137"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50138"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50139"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50140"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50141"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50142"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50143"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50144"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50145"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50146"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50147"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50148"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50149"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50150"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50151"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50152"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50153"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50154"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50155"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50156"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50157"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50158"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50159"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50160"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50161"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50162"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50163"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50164"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50165"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50166"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50167"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50168"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50169"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50170"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50171"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50172"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50173"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50174"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50176"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50177"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50178"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50179"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50180"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50182"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50183"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50184"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50185"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50186"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50187"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50188"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50189"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50190"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50191"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50192"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50193"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50194"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50195"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50196"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50197"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50198"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50199"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50200"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50201"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50202"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50203"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50204"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50205"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50206"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50207"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50208"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50209"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50211"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50212"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50213"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50214"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50215"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50216"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50217"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50218"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50220"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50221"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50222"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50223"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50224"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50225"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50226"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50227"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50229"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50230"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50231"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50232"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50233"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50234"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50235"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50236"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50237"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50238"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50239"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50240"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50242"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50243"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50244"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50245"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50246"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50247"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50248"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50249"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50250"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50251"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50252"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50253"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50254"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50255"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50256"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50257"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50258"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50259"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50260"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50261"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50262"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50263"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50265"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50266"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50267"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50268"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50269"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50270"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50271"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50272"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50273"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50274"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50275"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50276"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50277"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50278"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50279"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50280"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50281"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50282"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50283"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50284"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50285"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50286"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50287"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50288"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50289"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50290"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50291"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50292"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50293"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50294"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50295"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50296"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50297"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50298"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50299"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50300"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50301"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50302"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50303"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50304"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53042"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53043"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53044"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53045"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53046"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53047"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53048"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53049"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53052"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53053"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53055"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53056"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53058"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53059"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53061"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53062"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53063"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53064"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53065"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53066"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53067"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53068"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53069"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53071"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53072"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53074"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53075"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53076"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53077"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53078"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53079"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53080"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53081"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53082"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53083"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53084"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53085"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53086"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53087"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53088"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53089"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53090"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53091"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53092"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53093"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53094"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53095"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53098"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53099"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53100"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53101"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53104"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53105"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53106"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53107"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53108"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53109"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53110"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53111"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53112"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53113"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53114"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53115"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53116"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53117"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53118"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53119"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53120"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53121"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53122"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53123"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53124"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53125"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53126"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53127"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53128"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53129"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53130"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53131"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53132"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53133"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53134"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53135"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53137"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53138"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53139"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53140"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53141"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53142"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53143"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53144"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53145"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53146"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53147"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53148"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53149"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53150"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53151"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53152"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53153"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53154"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53155"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53156"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53157"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53158"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53160"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53161"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53162"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53163"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53165"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53166"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53167"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53168"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53169"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53170"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53171"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53172"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53173"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53174"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53175"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53176"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53177"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53178"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53180"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53181"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53183"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53184"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53187"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53188"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53189"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53190"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53191"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53192"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53193"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53194"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53195"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53196"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53197"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53198"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53199"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53200"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53202"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53203"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53208"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53209"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53210"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53212"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53213"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53214"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53215"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53216"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53217"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53218"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53219"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53220"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53221"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53223"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53224"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53226"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53227"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53228"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53229"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53230"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53231"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53232"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53233"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53234"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53236"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53237"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53238"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53239"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56531"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56532"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56533"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56534"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56535"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56536"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56537"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56538"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56539"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56540"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56541"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56543"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56544"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56545"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56546"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56548"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56549"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56674"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56677"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56678"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56679"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56680"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56681"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56683"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56684"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56685"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56687"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56688"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56689"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56690"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56691"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56692"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56693"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56694"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56696"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56697"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56698"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56699"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56700"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56701"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56702"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56703"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56704"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56705"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56707"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56708"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56720"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56721"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56722"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56723"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56724"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56725"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56726"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56727"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56728"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56729"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56739"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56742"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56744"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56745"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56746"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56747"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56748"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56749"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56751"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56752"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56754"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56755"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56756"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2025-0927"
}
],
"related": [
"CVE-2022-49034",
"UBUNTU-CVE-2022-49034",
"CVE-2024-46869",
"UBUNTU-CVE-2024-46869",
"CVE-2024-47671",
"UBUNTU-CVE-2024-47671",
"CVE-2024-47675",
"UBUNTU-CVE-2024-47675",
"CVE-2024-47676",
"UBUNTU-CVE-2024-47676",
"CVE-2024-47677",
"UBUNTU-CVE-2024-47677",
"CVE-2024-47678",
"UBUNTU-CVE-2024-47678",
"CVE-2024-47679",
"UBUNTU-CVE-2024-47679",
"CVE-2024-47680",
"UBUNTU-CVE-2024-47680",
"CVE-2024-47681",
"UBUNTU-CVE-2024-47681",
"CVE-2024-47682",
"UBUNTU-CVE-2024-47682",
"CVE-2024-47684",
"UBUNTU-CVE-2024-47684",
"CVE-2024-47685",
"UBUNTU-CVE-2024-47685",
"CVE-2024-47686",
"UBUNTU-CVE-2024-47686",
"CVE-2024-47687",
"UBUNTU-CVE-2024-47687",
"CVE-2024-47688",
"UBUNTU-CVE-2024-47688",
"CVE-2024-47689",
"UBUNTU-CVE-2024-47689",
"CVE-2024-47690",
"UBUNTU-CVE-2024-47690",
"CVE-2024-47691",
"UBUNTU-CVE-2024-47691",
"CVE-2024-47692",
"UBUNTU-CVE-2024-47692",
"CVE-2024-47693",
"UBUNTU-CVE-2024-47693",
"CVE-2024-47694",
"UBUNTU-CVE-2024-47694",
"CVE-2024-47695",
"UBUNTU-CVE-2024-47695",
"CVE-2024-47696",
"UBUNTU-CVE-2024-47696",
"CVE-2024-47697",
"UBUNTU-CVE-2024-47697",
"CVE-2024-47698",
"UBUNTU-CVE-2024-47698",
"CVE-2024-47699",
"UBUNTU-CVE-2024-47699",
"CVE-2024-47700",
"UBUNTU-CVE-2024-47700",
"CVE-2024-47701",
"UBUNTU-CVE-2024-47701",
"CVE-2024-47702",
"UBUNTU-CVE-2024-47702",
"CVE-2024-47703",
"UBUNTU-CVE-2024-47703",
"CVE-2024-47704",
"UBUNTU-CVE-2024-47704",
"CVE-2024-47705",
"UBUNTU-CVE-2024-47705",
"CVE-2024-47706",
"UBUNTU-CVE-2024-47706",
"CVE-2024-47707",
"UBUNTU-CVE-2024-47707",
"CVE-2024-47708",
"UBUNTU-CVE-2024-47708",
"CVE-2024-47709",
"UBUNTU-CVE-2024-47709",
"CVE-2024-47710",
"UBUNTU-CVE-2024-47710",
"CVE-2024-47711",
"UBUNTU-CVE-2024-47711",
"CVE-2024-47712",
"UBUNTU-CVE-2024-47712",
"CVE-2024-47713",
"UBUNTU-CVE-2024-47713",
"CVE-2024-47714",
"UBUNTU-CVE-2024-47714",
"CVE-2024-47715",
"UBUNTU-CVE-2024-47715",
"CVE-2024-47716",
"UBUNTU-CVE-2024-47716",
"CVE-2024-47717",
"UBUNTU-CVE-2024-47717",
"CVE-2024-47718",
"UBUNTU-CVE-2024-47718",
"CVE-2024-47719",
"UBUNTU-CVE-2024-47719",
"CVE-2024-47720",
"UBUNTU-CVE-2024-47720",
"CVE-2024-47721",
"UBUNTU-CVE-2024-47721",
"CVE-2024-47723",
"UBUNTU-CVE-2024-47723",
"CVE-2024-47724",
"UBUNTU-CVE-2024-47724",
"CVE-2024-47726",
"UBUNTU-CVE-2024-47726",
"CVE-2024-47727",
"UBUNTU-CVE-2024-47727",
"CVE-2024-47728",
"UBUNTU-CVE-2024-47728",
"CVE-2024-47730",
"UBUNTU-CVE-2024-47730",
"CVE-2024-47731",
"UBUNTU-CVE-2024-47731",
"CVE-2024-47732",
"UBUNTU-CVE-2024-47732",
"CVE-2024-47733",
"UBUNTU-CVE-2024-47733",
"CVE-2024-47734",
"UBUNTU-CVE-2024-47734",
"CVE-2024-47735",
"UBUNTU-CVE-2024-47735",
"CVE-2024-47736",
"UBUNTU-CVE-2024-47736",
"CVE-2024-47737",
"UBUNTU-CVE-2024-47737",
"CVE-2024-47738",
"UBUNTU-CVE-2024-47738",
"CVE-2024-47739",
"UBUNTU-CVE-2024-47739",
"CVE-2024-47740",
"UBUNTU-CVE-2024-47740",
"CVE-2024-47741",
"UBUNTU-CVE-2024-47741",
"CVE-2024-47742",
"UBUNTU-CVE-2024-47742",
"CVE-2024-47743",
"UBUNTU-CVE-2024-47743",
"CVE-2024-47744",
"UBUNTU-CVE-2024-47744",
"CVE-2024-47745",
"UBUNTU-CVE-2024-47745",
"CVE-2024-47746",
"UBUNTU-CVE-2024-47746",
"CVE-2024-47747",
"UBUNTU-CVE-2024-47747",
"CVE-2024-47748",
"UBUNTU-CVE-2024-47748",
"CVE-2024-47749",
"UBUNTU-CVE-2024-47749",
"CVE-2024-47750",
"UBUNTU-CVE-2024-47750",
"CVE-2024-47751",
"UBUNTU-CVE-2024-47751",
"CVE-2024-47752",
"UBUNTU-CVE-2024-47752",
"CVE-2024-47753",
"UBUNTU-CVE-2024-47753",
"CVE-2024-47754",
"UBUNTU-CVE-2024-47754",
"CVE-2024-47756",
"UBUNTU-CVE-2024-47756",
"CVE-2024-47757",
"UBUNTU-CVE-2024-47757",
"CVE-2024-49850",
"UBUNTU-CVE-2024-49850",
"CVE-2024-49851",
"UBUNTU-CVE-2024-49851",
"CVE-2024-49852",
"UBUNTU-CVE-2024-49852",
"CVE-2024-49853",
"UBUNTU-CVE-2024-49853",
"CVE-2024-49855",
"UBUNTU-CVE-2024-49855",
"CVE-2024-49856",
"UBUNTU-CVE-2024-49856",
"CVE-2024-49857",
"UBUNTU-CVE-2024-49857",
"CVE-2024-49858",
"UBUNTU-CVE-2024-49858",
"CVE-2024-49859",
"UBUNTU-CVE-2024-49859",
"CVE-2024-49860",
"UBUNTU-CVE-2024-49860",
"CVE-2024-49861",
"UBUNTU-CVE-2024-49861",
"CVE-2024-49862",
"UBUNTU-CVE-2024-49862",
"CVE-2024-49863",
"UBUNTU-CVE-2024-49863",
"CVE-2024-49864",
"UBUNTU-CVE-2024-49864",
"CVE-2024-49865",
"UBUNTU-CVE-2024-49865",
"CVE-2024-49866",
"UBUNTU-CVE-2024-49866",
"CVE-2024-49867",
"UBUNTU-CVE-2024-49867",
"CVE-2024-49868",
"UBUNTU-CVE-2024-49868",
"CVE-2024-49869",
"UBUNTU-CVE-2024-49869",
"CVE-2024-49870",
"UBUNTU-CVE-2024-49870",
"CVE-2024-49871",
"UBUNTU-CVE-2024-49871",
"CVE-2024-49872",
"UBUNTU-CVE-2024-49872",
"CVE-2024-49873",
"UBUNTU-CVE-2024-49873",
"CVE-2024-49874",
"UBUNTU-CVE-2024-49874",
"CVE-2024-49875",
"UBUNTU-CVE-2024-49875",
"CVE-2024-49876",
"UBUNTU-CVE-2024-49876",
"CVE-2024-49877",
"UBUNTU-CVE-2024-49877",
"CVE-2024-49878",
"UBUNTU-CVE-2024-49878",
"CVE-2024-49879",
"UBUNTU-CVE-2024-49879",
"CVE-2024-49880",
"UBUNTU-CVE-2024-49880",
"CVE-2024-49881",
"UBUNTU-CVE-2024-49881",
"CVE-2024-49882",
"UBUNTU-CVE-2024-49882",
"CVE-2024-49883",
"UBUNTU-CVE-2024-49883",
"CVE-2024-49884",
"UBUNTU-CVE-2024-49884",
"CVE-2024-49885",
"UBUNTU-CVE-2024-49885",
"CVE-2024-49886",
"UBUNTU-CVE-2024-49886",
"CVE-2024-49887",
"UBUNTU-CVE-2024-49887",
"CVE-2024-49888",
"UBUNTU-CVE-2024-49888",
"CVE-2024-49889",
"UBUNTU-CVE-2024-49889",
"CVE-2024-49890",
"UBUNTU-CVE-2024-49890",
"CVE-2024-49891",
"UBUNTU-CVE-2024-49891",
"CVE-2024-49892",
"UBUNTU-CVE-2024-49892",
"CVE-2024-49893",
"UBUNTU-CVE-2024-49893",
"CVE-2024-49894",
"UBUNTU-CVE-2024-49894",
"CVE-2024-49895",
"UBUNTU-CVE-2024-49895",
"CVE-2024-49896",
"UBUNTU-CVE-2024-49896",
"CVE-2024-49897",
"UBUNTU-CVE-2024-49897",
"CVE-2024-49898",
"UBUNTU-CVE-2024-49898",
"CVE-2024-49899",
"UBUNTU-CVE-2024-49899",
"CVE-2024-49900",
"UBUNTU-CVE-2024-49900",
"CVE-2024-49901",
"UBUNTU-CVE-2024-49901",
"CVE-2024-49902",
"UBUNTU-CVE-2024-49902",
"CVE-2024-49903",
"UBUNTU-CVE-2024-49903",
"CVE-2024-49904",
"UBUNTU-CVE-2024-49904",
"CVE-2024-49905",
"UBUNTU-CVE-2024-49905",
"CVE-2024-49906",
"UBUNTU-CVE-2024-49906",
"CVE-2024-49907",
"UBUNTU-CVE-2024-49907",
"CVE-2024-49908",
"UBUNTU-CVE-2024-49908",
"CVE-2024-49909",
"UBUNTU-CVE-2024-49909",
"CVE-2024-49910",
"UBUNTU-CVE-2024-49910",
"CVE-2024-49911",
"UBUNTU-CVE-2024-49911",
"CVE-2024-49912",
"UBUNTU-CVE-2024-49912",
"CVE-2024-49913",
"UBUNTU-CVE-2024-49913",
"CVE-2024-49914",
"UBUNTU-CVE-2024-49914",
"CVE-2024-49915",
"UBUNTU-CVE-2024-49915",
"CVE-2024-49916",
"UBUNTU-CVE-2024-49916",
"CVE-2024-49917",
"UBUNTU-CVE-2024-49917",
"CVE-2024-49918",
"UBUNTU-CVE-2024-49918",
"CVE-2024-49919",
"UBUNTU-CVE-2024-49919",
"CVE-2024-49920",
"UBUNTU-CVE-2024-49920",
"CVE-2024-49921",
"UBUNTU-CVE-2024-49921",
"CVE-2024-49922",
"UBUNTU-CVE-2024-49922",
"CVE-2024-49923",
"UBUNTU-CVE-2024-49923",
"CVE-2024-49924",
"UBUNTU-CVE-2024-49924",
"CVE-2024-49925",
"UBUNTU-CVE-2024-49925",
"CVE-2024-49926",
"UBUNTU-CVE-2024-49926",
"CVE-2024-49927",
"UBUNTU-CVE-2024-49927",
"CVE-2024-49928",
"UBUNTU-CVE-2024-49928",
"CVE-2024-49929",
"UBUNTU-CVE-2024-49929",
"CVE-2024-49930",
"UBUNTU-CVE-2024-49930",
"CVE-2024-49931",
"UBUNTU-CVE-2024-49931",
"CVE-2024-49932",
"UBUNTU-CVE-2024-49932",
"CVE-2024-49933",
"UBUNTU-CVE-2024-49933",
"CVE-2024-49934",
"UBUNTU-CVE-2024-49934",
"CVE-2024-49935",
"UBUNTU-CVE-2024-49935",
"CVE-2024-49936",
"UBUNTU-CVE-2024-49936",
"CVE-2024-49937",
"UBUNTU-CVE-2024-49937",
"CVE-2024-49938",
"UBUNTU-CVE-2024-49938",
"CVE-2024-49939",
"UBUNTU-CVE-2024-49939",
"CVE-2024-49940",
"UBUNTU-CVE-2024-49940",
"CVE-2024-49941",
"UBUNTU-CVE-2024-49941",
"CVE-2024-49942",
"UBUNTU-CVE-2024-49942",
"CVE-2024-49943",
"UBUNTU-CVE-2024-49943",
"CVE-2024-49944",
"UBUNTU-CVE-2024-49944",
"CVE-2024-49945",
"UBUNTU-CVE-2024-49945",
"CVE-2024-49946",
"UBUNTU-CVE-2024-49946",
"CVE-2024-49947",
"UBUNTU-CVE-2024-49947",
"CVE-2024-49948",
"UBUNTU-CVE-2024-49948",
"CVE-2024-49949",
"UBUNTU-CVE-2024-49949",
"CVE-2024-49950",
"UBUNTU-CVE-2024-49950",
"CVE-2024-49951",
"UBUNTU-CVE-2024-49951",
"CVE-2024-49952",
"UBUNTU-CVE-2024-49952",
"CVE-2024-49953",
"UBUNTU-CVE-2024-49953",
"CVE-2024-49954",
"UBUNTU-CVE-2024-49954",
"CVE-2024-49955",
"UBUNTU-CVE-2024-49955",
"CVE-2024-49956",
"UBUNTU-CVE-2024-49956",
"CVE-2024-49957",
"UBUNTU-CVE-2024-49957",
"CVE-2024-49958",
"UBUNTU-CVE-2024-49958",
"CVE-2024-49959",
"UBUNTU-CVE-2024-49959",
"CVE-2024-49960",
"UBUNTU-CVE-2024-49960",
"CVE-2024-49961",
"UBUNTU-CVE-2024-49961",
"CVE-2024-49962",
"UBUNTU-CVE-2024-49962",
"CVE-2024-49963",
"UBUNTU-CVE-2024-49963",
"CVE-2024-49964",
"UBUNTU-CVE-2024-49964",
"CVE-2024-49965",
"UBUNTU-CVE-2024-49965",
"CVE-2024-49966",
"UBUNTU-CVE-2024-49966",
"CVE-2024-49968",
"UBUNTU-CVE-2024-49968",
"CVE-2024-49969",
"UBUNTU-CVE-2024-49969",
"CVE-2024-49970",
"UBUNTU-CVE-2024-49970",
"CVE-2024-49971",
"UBUNTU-CVE-2024-49971",
"CVE-2024-49972",
"UBUNTU-CVE-2024-49972",
"CVE-2024-49973",
"UBUNTU-CVE-2024-49973",
"CVE-2024-49974",
"UBUNTU-CVE-2024-49974",
"CVE-2024-49975",
"UBUNTU-CVE-2024-49975",
"CVE-2024-49976",
"UBUNTU-CVE-2024-49976",
"CVE-2024-49977",
"UBUNTU-CVE-2024-49977",
"CVE-2024-49978",
"UBUNTU-CVE-2024-49978",
"CVE-2024-49979",
"UBUNTU-CVE-2024-49979",
"CVE-2024-49980",
"UBUNTU-CVE-2024-49980",
"CVE-2024-49981",
"UBUNTU-CVE-2024-49981",
"CVE-2024-49982",
"UBUNTU-CVE-2024-49982",
"CVE-2024-49983",
"UBUNTU-CVE-2024-49983",
"CVE-2024-49985",
"UBUNTU-CVE-2024-49985",
"CVE-2024-49986",
"UBUNTU-CVE-2024-49986",
"CVE-2024-49987",
"UBUNTU-CVE-2024-49987",
"CVE-2024-49988",
"UBUNTU-CVE-2024-49988",
"CVE-2024-49989",
"UBUNTU-CVE-2024-49989",
"CVE-2024-49991",
"UBUNTU-CVE-2024-49991",
"CVE-2024-49992",
"UBUNTU-CVE-2024-49992",
"CVE-2024-49994",
"UBUNTU-CVE-2024-49994",
"CVE-2024-49995",
"UBUNTU-CVE-2024-49995",
"CVE-2024-49996",
"UBUNTU-CVE-2024-49996",
"CVE-2024-49997",
"UBUNTU-CVE-2024-49997",
"CVE-2024-49998",
"UBUNTU-CVE-2024-49998",
"CVE-2024-49999",
"UBUNTU-CVE-2024-49999",
"CVE-2024-50000",
"UBUNTU-CVE-2024-50000",
"CVE-2024-50001",
"UBUNTU-CVE-2024-50001",
"CVE-2024-50002",
"UBUNTU-CVE-2024-50002",
"CVE-2024-50003",
"UBUNTU-CVE-2024-50003",
"CVE-2024-50005",
"UBUNTU-CVE-2024-50005",
"CVE-2024-50006",
"UBUNTU-CVE-2024-50006",
"CVE-2024-50007",
"UBUNTU-CVE-2024-50007",
"CVE-2024-50008",
"UBUNTU-CVE-2024-50008",
"CVE-2024-50009",
"UBUNTU-CVE-2024-50009",
"CVE-2024-50010",
"UBUNTU-CVE-2024-50010",
"CVE-2024-50011",
"UBUNTU-CVE-2024-50011",
"CVE-2024-50012",
"UBUNTU-CVE-2024-50012",
"CVE-2024-50013",
"UBUNTU-CVE-2024-50013",
"CVE-2024-50014",
"UBUNTU-CVE-2024-50014",
"CVE-2024-50015",
"UBUNTU-CVE-2024-50015",
"CVE-2024-50017",
"UBUNTU-CVE-2024-50017",
"CVE-2024-50019",
"UBUNTU-CVE-2024-50019",
"CVE-2024-50020",
"UBUNTU-CVE-2024-50020",
"CVE-2024-50021",
"UBUNTU-CVE-2024-50021",
"CVE-2024-50022",
"UBUNTU-CVE-2024-50022",
"CVE-2024-50023",
"UBUNTU-CVE-2024-50023",
"CVE-2024-50024",
"UBUNTU-CVE-2024-50024",
"CVE-2024-50025",
"UBUNTU-CVE-2024-50025",
"CVE-2024-50026",
"UBUNTU-CVE-2024-50026",
"CVE-2024-50027",
"UBUNTU-CVE-2024-50027",
"CVE-2024-50028",
"UBUNTU-CVE-2024-50028",
"CVE-2024-50029",
"UBUNTU-CVE-2024-50029",
"CVE-2024-50030",
"UBUNTU-CVE-2024-50030",
"CVE-2024-50031",
"UBUNTU-CVE-2024-50031",
"CVE-2024-50033",
"UBUNTU-CVE-2024-50033",
"CVE-2024-50034",
"UBUNTU-CVE-2024-50034",
"CVE-2024-50035",
"UBUNTU-CVE-2024-50035",
"CVE-2024-50036",
"UBUNTU-CVE-2024-50036",
"CVE-2024-50037",
"UBUNTU-CVE-2024-50037",
"CVE-2024-50038",
"UBUNTU-CVE-2024-50038",
"CVE-2024-50039",
"UBUNTU-CVE-2024-50039",
"CVE-2024-50040",
"UBUNTU-CVE-2024-50040",
"CVE-2024-50041",
"UBUNTU-CVE-2024-50041",
"CVE-2024-50042",
"UBUNTU-CVE-2024-50042",
"CVE-2024-50043",
"UBUNTU-CVE-2024-50043",
"CVE-2024-50044",
"UBUNTU-CVE-2024-50044",
"CVE-2024-50045",
"UBUNTU-CVE-2024-50045",
"CVE-2024-50046",
"UBUNTU-CVE-2024-50046",
"CVE-2024-50047",
"UBUNTU-CVE-2024-50047",
"CVE-2024-50048",
"UBUNTU-CVE-2024-50048",
"CVE-2024-50049",
"UBUNTU-CVE-2024-50049",
"CVE-2024-50055",
"UBUNTU-CVE-2024-50055",
"CVE-2024-50056",
"UBUNTU-CVE-2024-50056",
"CVE-2024-50057",
"UBUNTU-CVE-2024-50057",
"CVE-2024-50058",
"UBUNTU-CVE-2024-50058",
"CVE-2024-50059",
"UBUNTU-CVE-2024-50059",
"CVE-2024-50060",
"UBUNTU-CVE-2024-50060",
"CVE-2024-50061",
"UBUNTU-CVE-2024-50061",
"CVE-2024-50062",
"UBUNTU-CVE-2024-50062",
"CVE-2024-50063",
"UBUNTU-CVE-2024-50063",
"CVE-2024-50064",
"UBUNTU-CVE-2024-50064",
"CVE-2024-50065",
"UBUNTU-CVE-2024-50065",
"CVE-2024-50066",
"UBUNTU-CVE-2024-50066",
"CVE-2024-50067",
"UBUNTU-CVE-2024-50067",
"CVE-2024-50068",
"UBUNTU-CVE-2024-50068",
"CVE-2024-50069",
"UBUNTU-CVE-2024-50069",
"CVE-2024-50070",
"UBUNTU-CVE-2024-50070",
"CVE-2024-50071",
"UBUNTU-CVE-2024-50071",
"CVE-2024-50072",
"UBUNTU-CVE-2024-50072",
"CVE-2024-50073",
"UBUNTU-CVE-2024-50073",
"CVE-2024-50074",
"UBUNTU-CVE-2024-50074",
"CVE-2024-50075",
"UBUNTU-CVE-2024-50075",
"CVE-2024-50076",
"UBUNTU-CVE-2024-50076",
"CVE-2024-50077",
"UBUNTU-CVE-2024-50077",
"CVE-2024-50078",
"UBUNTU-CVE-2024-50078",
"CVE-2024-50079",
"UBUNTU-CVE-2024-50079",
"CVE-2024-50080",
"UBUNTU-CVE-2024-50080",
"CVE-2024-50081",
"UBUNTU-CVE-2024-50081",
"CVE-2024-50082",
"UBUNTU-CVE-2024-50082",
"CVE-2024-50083",
"UBUNTU-CVE-2024-50083",
"CVE-2024-50084",
"UBUNTU-CVE-2024-50084",
"CVE-2024-50085",
"UBUNTU-CVE-2024-50085",
"CVE-2024-50086",
"UBUNTU-CVE-2024-50086",
"CVE-2024-50087",
"UBUNTU-CVE-2024-50087",
"CVE-2024-50088",
"UBUNTU-CVE-2024-50088",
"CVE-2024-50090",
"UBUNTU-CVE-2024-50090",
"CVE-2024-50091",
"UBUNTU-CVE-2024-50091",
"CVE-2024-50092",
"UBUNTU-CVE-2024-50092",
"CVE-2024-50093",
"UBUNTU-CVE-2024-50093",
"CVE-2024-50094",
"UBUNTU-CVE-2024-50094",
"CVE-2024-50095",
"UBUNTU-CVE-2024-50095",
"CVE-2024-50096",
"UBUNTU-CVE-2024-50096",
"CVE-2024-50098",
"UBUNTU-CVE-2024-50098",
"CVE-2024-50099",
"UBUNTU-CVE-2024-50099",
"CVE-2024-50100",
"UBUNTU-CVE-2024-50100",
"CVE-2024-50101",
"UBUNTU-CVE-2024-50101",
"CVE-2024-50102",
"UBUNTU-CVE-2024-50102",
"CVE-2024-50103",
"UBUNTU-CVE-2024-50103",
"CVE-2024-50104",
"UBUNTU-CVE-2024-50104",
"CVE-2024-50105",
"UBUNTU-CVE-2024-50105",
"CVE-2024-50106",
"UBUNTU-CVE-2024-50106",
"CVE-2024-50107",
"UBUNTU-CVE-2024-50107",
"CVE-2024-50108",
"UBUNTU-CVE-2024-50108",
"CVE-2024-50109",
"UBUNTU-CVE-2024-50109",
"CVE-2024-50110",
"UBUNTU-CVE-2024-50110",
"CVE-2024-50111",
"UBUNTU-CVE-2024-50111",
"CVE-2024-50112",
"UBUNTU-CVE-2024-50112",
"CVE-2024-50113",
"UBUNTU-CVE-2024-50113",
"CVE-2024-50114",
"UBUNTU-CVE-2024-50114",
"CVE-2024-50115",
"UBUNTU-CVE-2024-50115",
"CVE-2024-50116",
"UBUNTU-CVE-2024-50116",
"CVE-2024-50117",
"UBUNTU-CVE-2024-50117",
"CVE-2024-50118",
"UBUNTU-CVE-2024-50118",
"CVE-2024-50119",
"UBUNTU-CVE-2024-50119",
"CVE-2024-50120",
"UBUNTU-CVE-2024-50120",
"CVE-2024-50121",
"UBUNTU-CVE-2024-50121",
"CVE-2024-50122",
"UBUNTU-CVE-2024-50122",
"CVE-2024-50123",
"UBUNTU-CVE-2024-50123",
"CVE-2024-50124",
"UBUNTU-CVE-2024-50124",
"CVE-2024-50125",
"UBUNTU-CVE-2024-50125",
"CVE-2024-50126",
"UBUNTU-CVE-2024-50126",
"CVE-2024-50127",
"UBUNTU-CVE-2024-50127",
"CVE-2024-50128",
"UBUNTU-CVE-2024-50128",
"CVE-2024-50129",
"UBUNTU-CVE-2024-50129",
"CVE-2024-50130",
"UBUNTU-CVE-2024-50130",
"CVE-2024-50131",
"UBUNTU-CVE-2024-50131",
"CVE-2024-50132",
"UBUNTU-CVE-2024-50132",
"CVE-2024-50133",
"UBUNTU-CVE-2024-50133",
"CVE-2024-50134",
"UBUNTU-CVE-2024-50134",
"CVE-2024-50135",
"UBUNTU-CVE-2024-50135",
"CVE-2024-50136",
"UBUNTU-CVE-2024-50136",
"CVE-2024-50137",
"UBUNTU-CVE-2024-50137",
"CVE-2024-50138",
"UBUNTU-CVE-2024-50138",
"CVE-2024-50139",
"UBUNTU-CVE-2024-50139",
"CVE-2024-50140",
"UBUNTU-CVE-2024-50140",
"CVE-2024-50141",
"UBUNTU-CVE-2024-50141",
"CVE-2024-50142",
"UBUNTU-CVE-2024-50142",
"CVE-2024-50143",
"UBUNTU-CVE-2024-50143",
"CVE-2024-50144",
"UBUNTU-CVE-2024-50144",
"CVE-2024-50145",
"UBUNTU-CVE-2024-50145",
"CVE-2024-50146",
"UBUNTU-CVE-2024-50146",
"CVE-2024-50147",
"UBUNTU-CVE-2024-50147",
"CVE-2024-50148",
"UBUNTU-CVE-2024-50148",
"CVE-2024-50149",
"UBUNTU-CVE-2024-50149",
"CVE-2024-50150",
"UBUNTU-CVE-2024-50150",
"CVE-2024-50151",
"UBUNTU-CVE-2024-50151",
"CVE-2024-50152",
"UBUNTU-CVE-2024-50152",
"CVE-2024-50153",
"UBUNTU-CVE-2024-50153",
"CVE-2024-50154",
"UBUNTU-CVE-2024-50154",
"CVE-2024-50155",
"UBUNTU-CVE-2024-50155",
"CVE-2024-50156",
"UBUNTU-CVE-2024-50156",
"CVE-2024-50157",
"UBUNTU-CVE-2024-50157",
"CVE-2024-50158",
"UBUNTU-CVE-2024-50158",
"CVE-2024-50159",
"UBUNTU-CVE-2024-50159",
"CVE-2024-50160",
"UBUNTU-CVE-2024-50160",
"CVE-2024-50161",
"UBUNTU-CVE-2024-50161",
"CVE-2024-50162",
"UBUNTU-CVE-2024-50162",
"CVE-2024-50163",
"UBUNTU-CVE-2024-50163",
"CVE-2024-50164",
"UBUNTU-CVE-2024-50164",
"CVE-2024-50165",
"UBUNTU-CVE-2024-50165",
"CVE-2024-50166",
"UBUNTU-CVE-2024-50166",
"CVE-2024-50167",
"UBUNTU-CVE-2024-50167",
"CVE-2024-50168",
"UBUNTU-CVE-2024-50168",
"CVE-2024-50169",
"UBUNTU-CVE-2024-50169",
"CVE-2024-50170",
"UBUNTU-CVE-2024-50170",
"CVE-2024-50171",
"UBUNTU-CVE-2024-50171",
"CVE-2024-50172",
"UBUNTU-CVE-2024-50172",
"CVE-2024-50173",
"UBUNTU-CVE-2024-50173",
"CVE-2024-50174",
"UBUNTU-CVE-2024-50174",
"CVE-2024-50176",
"UBUNTU-CVE-2024-50176",
"CVE-2024-50177",
"UBUNTU-CVE-2024-50177",
"CVE-2024-50178",
"UBUNTU-CVE-2024-50178",
"CVE-2024-50179",
"UBUNTU-CVE-2024-50179",
"CVE-2024-50180",
"UBUNTU-CVE-2024-50180",
"CVE-2024-50182",
"UBUNTU-CVE-2024-50182",
"CVE-2024-50183",
"UBUNTU-CVE-2024-50183",
"CVE-2024-50184",
"UBUNTU-CVE-2024-50184",
"CVE-2024-50185",
"UBUNTU-CVE-2024-50185",
"CVE-2024-50186",
"UBUNTU-CVE-2024-50186",
"CVE-2024-50187",
"UBUNTU-CVE-2024-50187",
"CVE-2024-50188",
"UBUNTU-CVE-2024-50188",
"CVE-2024-50189",
"UBUNTU-CVE-2024-50189",
"CVE-2024-50190",
"UBUNTU-CVE-2024-50190",
"CVE-2024-50191",
"UBUNTU-CVE-2024-50191",
"CVE-2024-50192",
"UBUNTU-CVE-2024-50192",
"CVE-2024-50193",
"UBUNTU-CVE-2024-50193",
"CVE-2024-50194",
"UBUNTU-CVE-2024-50194",
"CVE-2024-50195",
"UBUNTU-CVE-2024-50195",
"CVE-2024-50196",
"UBUNTU-CVE-2024-50196",
"CVE-2024-50197",
"UBUNTU-CVE-2024-50197",
"CVE-2024-50198",
"UBUNTU-CVE-2024-50198",
"CVE-2024-50199",
"UBUNTU-CVE-2024-50199",
"CVE-2024-50200",
"UBUNTU-CVE-2024-50200",
"CVE-2024-50201",
"UBUNTU-CVE-2024-50201",
"CVE-2024-50202",
"UBUNTU-CVE-2024-50202",
"CVE-2024-50203",
"UBUNTU-CVE-2024-50203",
"CVE-2024-50204",
"UBUNTU-CVE-2024-50204",
"CVE-2024-50205",
"UBUNTU-CVE-2024-50205",
"CVE-2024-50206",
"UBUNTU-CVE-2024-50206",
"CVE-2024-50207",
"UBUNTU-CVE-2024-50207",
"CVE-2024-50208",
"UBUNTU-CVE-2024-50208",
"CVE-2024-50209",
"UBUNTU-CVE-2024-50209",
"CVE-2024-50211",
"UBUNTU-CVE-2024-50211",
"CVE-2024-50212",
"UBUNTU-CVE-2024-50212",
"CVE-2024-50213",
"UBUNTU-CVE-2024-50213",
"CVE-2024-50214",
"UBUNTU-CVE-2024-50214",
"CVE-2024-50215",
"UBUNTU-CVE-2024-50215",
"CVE-2024-50216",
"UBUNTU-CVE-2024-50216",
"CVE-2024-50217",
"UBUNTU-CVE-2024-50217",
"CVE-2024-50218",
"UBUNTU-CVE-2024-50218",
"CVE-2024-50220",
"UBUNTU-CVE-2024-50220",
"CVE-2024-50221",
"UBUNTU-CVE-2024-50221",
"CVE-2024-50222",
"UBUNTU-CVE-2024-50222",
"CVE-2024-50223",
"UBUNTU-CVE-2024-50223",
"CVE-2024-50224",
"UBUNTU-CVE-2024-50224",
"CVE-2024-50225",
"UBUNTU-CVE-2024-50225",
"CVE-2024-50226",
"UBUNTU-CVE-2024-50226",
"CVE-2024-50227",
"UBUNTU-CVE-2024-50227",
"CVE-2024-50229",
"UBUNTU-CVE-2024-50229",
"CVE-2024-50230",
"UBUNTU-CVE-2024-50230",
"CVE-2024-50231",
"UBUNTU-CVE-2024-50231",
"CVE-2024-50232",
"UBUNTU-CVE-2024-50232",
"CVE-2024-50233",
"UBUNTU-CVE-2024-50233",
"CVE-2024-50234",
"UBUNTU-CVE-2024-50234",
"CVE-2024-50235",
"UBUNTU-CVE-2024-50235",
"CVE-2024-50236",
"UBUNTU-CVE-2024-50236",
"CVE-2024-50237",
"UBUNTU-CVE-2024-50237",
"CVE-2024-50238",
"UBUNTU-CVE-2024-50238",
"CVE-2024-50239",
"UBUNTU-CVE-2024-50239",
"CVE-2024-50240",
"UBUNTU-CVE-2024-50240",
"CVE-2024-50242",
"UBUNTU-CVE-2024-50242",
"CVE-2024-50243",
"UBUNTU-CVE-2024-50243",
"CVE-2024-50244",
"UBUNTU-CVE-2024-50244",
"CVE-2024-50245",
"UBUNTU-CVE-2024-50245",
"CVE-2024-50246",
"UBUNTU-CVE-2024-50246",
"CVE-2024-50247",
"UBUNTU-CVE-2024-50247",
"CVE-2024-50248",
"UBUNTU-CVE-2024-50248",
"CVE-2024-50249",
"UBUNTU-CVE-2024-50249",
"CVE-2024-50250",
"UBUNTU-CVE-2024-50250",
"CVE-2024-50251",
"UBUNTU-CVE-2024-50251",
"CVE-2024-50252",
"UBUNTU-CVE-2024-50252",
"CVE-2024-50253",
"UBUNTU-CVE-2024-50253",
"CVE-2024-50254",
"UBUNTU-CVE-2024-50254",
"CVE-2024-50255",
"UBUNTU-CVE-2024-50255",
"CVE-2024-50256",
"UBUNTU-CVE-2024-50256",
"CVE-2024-50257",
"UBUNTU-CVE-2024-50257",
"CVE-2024-50258",
"UBUNTU-CVE-2024-50258",
"CVE-2024-50259",
"UBUNTU-CVE-2024-50259",
"CVE-2024-50260",
"UBUNTU-CVE-2024-50260",
"CVE-2024-50261",
"UBUNTU-CVE-2024-50261",
"CVE-2024-50262",
"UBUNTU-CVE-2024-50262",
"CVE-2024-50263",
"UBUNTU-CVE-2024-50263",
"CVE-2024-50265",
"UBUNTU-CVE-2024-50265",
"CVE-2024-50266",
"UBUNTU-CVE-2024-50266",
"CVE-2024-50267",
"UBUNTU-CVE-2024-50267",
"CVE-2024-50268",
"UBUNTU-CVE-2024-50268",
"CVE-2024-50269",
"UBUNTU-CVE-2024-50269",
"CVE-2024-50270",
"UBUNTU-CVE-2024-50270",
"CVE-2024-50271",
"UBUNTU-CVE-2024-50271",
"CVE-2024-50272",
"UBUNTU-CVE-2024-50272",
"CVE-2024-50273",
"UBUNTU-CVE-2024-50273",
"CVE-2024-50274",
"UBUNTU-CVE-2024-50274",
"CVE-2024-50275",
"UBUNTU-CVE-2024-50275",
"CVE-2024-50276",
"UBUNTU-CVE-2024-50276",
"CVE-2024-50277",
"UBUNTU-CVE-2024-50277",
"CVE-2024-50278",
"UBUNTU-CVE-2024-50278",
"CVE-2024-50279",
"UBUNTU-CVE-2024-50279",
"CVE-2024-50280",
"UBUNTU-CVE-2024-50280",
"CVE-2024-50281",
"UBUNTU-CVE-2024-50281",
"CVE-2024-50282",
"UBUNTU-CVE-2024-50282",
"CVE-2024-50283",
"UBUNTU-CVE-2024-50283",
"CVE-2024-50284",
"UBUNTU-CVE-2024-50284",
"CVE-2024-50285",
"UBUNTU-CVE-2024-50285",
"CVE-2024-50286",
"UBUNTU-CVE-2024-50286",
"CVE-2024-50287",
"UBUNTU-CVE-2024-50287",
"CVE-2024-50288",
"UBUNTU-CVE-2024-50288",
"CVE-2024-50289",
"UBUNTU-CVE-2024-50289",
"CVE-2024-50290",
"UBUNTU-CVE-2024-50290",
"CVE-2024-50291",
"UBUNTU-CVE-2024-50291",
"CVE-2024-50292",
"UBUNTU-CVE-2024-50292",
"CVE-2024-50293",
"UBUNTU-CVE-2024-50293",
"CVE-2024-50294",
"UBUNTU-CVE-2024-50294",
"CVE-2024-50295",
"UBUNTU-CVE-2024-50295",
"CVE-2024-50296",
"UBUNTU-CVE-2024-50296",
"CVE-2024-50297",
"UBUNTU-CVE-2024-50297",
"CVE-2024-50298",
"UBUNTU-CVE-2024-50298",
"CVE-2024-50299",
"UBUNTU-CVE-2024-50299",
"CVE-2024-50300",
"UBUNTU-CVE-2024-50300",
"CVE-2024-50301",
"UBUNTU-CVE-2024-50301",
"CVE-2024-50302",
"UBUNTU-CVE-2024-50302",
"CVE-2024-50303",
"UBUNTU-CVE-2024-50303",
"CVE-2024-50304",
"UBUNTU-CVE-2024-50304",
"CVE-2024-53042",
"UBUNTU-CVE-2024-53042",
"CVE-2024-53043",
"UBUNTU-CVE-2024-53043",
"CVE-2024-53044",
"UBUNTU-CVE-2024-53044",
"CVE-2024-53045",
"UBUNTU-CVE-2024-53045",
"CVE-2024-53046",
"UBUNTU-CVE-2024-53046",
"CVE-2024-53047",
"UBUNTU-CVE-2024-53047",
"CVE-2024-53048",
"UBUNTU-CVE-2024-53048",
"CVE-2024-53049",
"UBUNTU-CVE-2024-53049",
"CVE-2024-53052",
"UBUNTU-CVE-2024-53052",
"CVE-2024-53053",
"UBUNTU-CVE-2024-53053",
"CVE-2024-53055",
"UBUNTU-CVE-2024-53055",
"CVE-2024-53056",
"UBUNTU-CVE-2024-53056",
"CVE-2024-53058",
"UBUNTU-CVE-2024-53058",
"CVE-2024-53059",
"UBUNTU-CVE-2024-53059",
"CVE-2024-53061",
"UBUNTU-CVE-2024-53061",
"CVE-2024-53062",
"UBUNTU-CVE-2024-53062",
"CVE-2024-53063",
"UBUNTU-CVE-2024-53063",
"CVE-2024-53064",
"UBUNTU-CVE-2024-53064",
"CVE-2024-53065",
"UBUNTU-CVE-2024-53065",
"CVE-2024-53066",
"UBUNTU-CVE-2024-53066",
"CVE-2024-53067",
"UBUNTU-CVE-2024-53067",
"CVE-2024-53068",
"UBUNTU-CVE-2024-53068",
"CVE-2024-53069",
"UBUNTU-CVE-2024-53069",
"CVE-2024-53071",
"UBUNTU-CVE-2024-53071",
"CVE-2024-53072",
"UBUNTU-CVE-2024-53072",
"CVE-2024-53074",
"UBUNTU-CVE-2024-53074",
"CVE-2024-53075",
"UBUNTU-CVE-2024-53075",
"CVE-2024-53076",
"UBUNTU-CVE-2024-53076",
"CVE-2024-53077",
"UBUNTU-CVE-2024-53077",
"CVE-2024-53078",
"UBUNTU-CVE-2024-53078",
"CVE-2024-53079",
"UBUNTU-CVE-2024-53079",
"CVE-2024-53080",
"UBUNTU-CVE-2024-53080",
"CVE-2024-53081",
"UBUNTU-CVE-2024-53081",
"CVE-2024-53082",
"UBUNTU-CVE-2024-53082",
"CVE-2024-53083",
"UBUNTU-CVE-2024-53083",
"CVE-2024-53084",
"UBUNTU-CVE-2024-53084",
"CVE-2024-53085",
"UBUNTU-CVE-2024-53085",
"CVE-2024-53086",
"UBUNTU-CVE-2024-53086",
"CVE-2024-53087",
"UBUNTU-CVE-2024-53087",
"CVE-2024-53088",
"UBUNTU-CVE-2024-53088",
"CVE-2024-53089",
"UBUNTU-CVE-2024-53089",
"CVE-2024-53090",
"UBUNTU-CVE-2024-53090",
"CVE-2024-53091",
"UBUNTU-CVE-2024-53091",
"CVE-2024-53092",
"UBUNTU-CVE-2024-53092",
"CVE-2024-53093",
"UBUNTU-CVE-2024-53093",
"CVE-2024-53094",
"UBUNTU-CVE-2024-53094",
"CVE-2024-53095",
"UBUNTU-CVE-2024-53095",
"CVE-2024-53098",
"UBUNTU-CVE-2024-53098",
"CVE-2024-53099",
"UBUNTU-CVE-2024-53099",
"CVE-2024-53100",
"UBUNTU-CVE-2024-53100",
"CVE-2024-53101",
"UBUNTU-CVE-2024-53101",
"CVE-2024-53104",
"UBUNTU-CVE-2024-53104",
"CVE-2024-53105",
"UBUNTU-CVE-2024-53105",
"CVE-2024-53106",
"UBUNTU-CVE-2024-53106",
"CVE-2024-53107",
"UBUNTU-CVE-2024-53107",
"CVE-2024-53108",
"UBUNTU-CVE-2024-53108",
"CVE-2024-53109",
"UBUNTU-CVE-2024-53109",
"CVE-2024-53110",
"UBUNTU-CVE-2024-53110",
"CVE-2024-53111",
"UBUNTU-CVE-2024-53111",
"CVE-2024-53112",
"UBUNTU-CVE-2024-53112",
"CVE-2024-53113",
"UBUNTU-CVE-2024-53113",
"CVE-2024-53114",
"UBUNTU-CVE-2024-53114",
"CVE-2024-53115",
"UBUNTU-CVE-2024-53115",
"CVE-2024-53116",
"UBUNTU-CVE-2024-53116",
"CVE-2024-53117",
"UBUNTU-CVE-2024-53117",
"CVE-2024-53118",
"UBUNTU-CVE-2024-53118",
"CVE-2024-53119",
"UBUNTU-CVE-2024-53119",
"CVE-2024-53120",
"UBUNTU-CVE-2024-53120",
"CVE-2024-53121",
"UBUNTU-CVE-2024-53121",
"CVE-2024-53122",
"UBUNTU-CVE-2024-53122",
"CVE-2024-53123",
"UBUNTU-CVE-2024-53123",
"CVE-2024-53124",
"UBUNTU-CVE-2024-53124",
"CVE-2024-53125",
"UBUNTU-CVE-2024-53125",
"CVE-2024-53126",
"UBUNTU-CVE-2024-53126",
"CVE-2024-53127",
"UBUNTU-CVE-2024-53127",
"CVE-2024-53128",
"UBUNTU-CVE-2024-53128",
"CVE-2024-53129",
"UBUNTU-CVE-2024-53129",
"CVE-2024-53130",
"UBUNTU-CVE-2024-53130",
"CVE-2024-53131",
"UBUNTU-CVE-2024-53131",
"CVE-2024-53132",
"UBUNTU-CVE-2024-53132",
"CVE-2024-53133",
"UBUNTU-CVE-2024-53133",
"CVE-2024-53134",
"UBUNTU-CVE-2024-53134",
"CVE-2024-53135",
"UBUNTU-CVE-2024-53135",
"CVE-2024-53137",
"UBUNTU-CVE-2024-53137",
"CVE-2024-53138",
"UBUNTU-CVE-2024-53138",
"CVE-2024-53139",
"UBUNTU-CVE-2024-53139",
"CVE-2024-53140",
"UBUNTU-CVE-2024-53140",
"CVE-2024-53141",
"UBUNTU-CVE-2024-53141",
"CVE-2024-53142",
"UBUNTU-CVE-2024-53142",
"CVE-2024-53143",
"UBUNTU-CVE-2024-53143",
"CVE-2024-53144",
"UBUNTU-CVE-2024-53144",
"CVE-2024-53145",
"UBUNTU-CVE-2024-53145",
"CVE-2024-53146",
"UBUNTU-CVE-2024-53146",
"CVE-2024-53147",
"UBUNTU-CVE-2024-53147",
"CVE-2024-53148",
"UBUNTU-CVE-2024-53148",
"CVE-2024-53149",
"UBUNTU-CVE-2024-53149",
"CVE-2024-53150",
"UBUNTU-CVE-2024-53150",
"CVE-2024-53151",
"UBUNTU-CVE-2024-53151",
"CVE-2024-53152",
"UBUNTU-CVE-2024-53152",
"CVE-2024-53153",
"UBUNTU-CVE-2024-53153",
"CVE-2024-53154",
"UBUNTU-CVE-2024-53154",
"CVE-2024-53155",
"UBUNTU-CVE-2024-53155",
"CVE-2024-53156",
"UBUNTU-CVE-2024-53156",
"CVE-2024-53157",
"UBUNTU-CVE-2024-53157",
"CVE-2024-53158",
"UBUNTU-CVE-2024-53158",
"CVE-2024-53160",
"UBUNTU-CVE-2024-53160",
"CVE-2024-53161",
"UBUNTU-CVE-2024-53161",
"CVE-2024-53162",
"UBUNTU-CVE-2024-53162",
"CVE-2024-53163",
"UBUNTU-CVE-2024-53163",
"CVE-2024-53165",
"UBUNTU-CVE-2024-53165",
"CVE-2024-53166",
"UBUNTU-CVE-2024-53166",
"CVE-2024-53167",
"UBUNTU-CVE-2024-53167",
"CVE-2024-53168",
"UBUNTU-CVE-2024-53168",
"CVE-2024-53169",
"UBUNTU-CVE-2024-53169",
"CVE-2024-53170",
"UBUNTU-CVE-2024-53170",
"CVE-2024-53171",
"UBUNTU-CVE-2024-53171",
"CVE-2024-53172",
"UBUNTU-CVE-2024-53172",
"CVE-2024-53173",
"UBUNTU-CVE-2024-53173",
"CVE-2024-53174",
"UBUNTU-CVE-2024-53174",
"CVE-2024-53175",
"UBUNTU-CVE-2024-53175",
"CVE-2024-53176",
"UBUNTU-CVE-2024-53176",
"CVE-2024-53177",
"UBUNTU-CVE-2024-53177",
"CVE-2024-53178",
"UBUNTU-CVE-2024-53178",
"CVE-2024-53180",
"UBUNTU-CVE-2024-53180",
"CVE-2024-53181",
"UBUNTU-CVE-2024-53181",
"CVE-2024-53183",
"UBUNTU-CVE-2024-53183",
"CVE-2024-53184",
"UBUNTU-CVE-2024-53184",
"CVE-2024-53187",
"UBUNTU-CVE-2024-53187",
"CVE-2024-53188",
"UBUNTU-CVE-2024-53188",
"CVE-2024-53189",
"UBUNTU-CVE-2024-53189",
"CVE-2024-53190",
"UBUNTU-CVE-2024-53190",
"CVE-2024-53191",
"UBUNTU-CVE-2024-53191",
"CVE-2024-53192",
"UBUNTU-CVE-2024-53192",
"CVE-2024-53193",
"UBUNTU-CVE-2024-53193",
"CVE-2024-53194",
"UBUNTU-CVE-2024-53194",
"CVE-2024-53195",
"UBUNTU-CVE-2024-53195",
"CVE-2024-53196",
"UBUNTU-CVE-2024-53196",
"CVE-2024-53197",
"UBUNTU-CVE-2024-53197",
"CVE-2024-53198",
"UBUNTU-CVE-2024-53198",
"CVE-2024-53199",
"UBUNTU-CVE-2024-53199",
"CVE-2024-53200",
"UBUNTU-CVE-2024-53200",
"CVE-2024-53202",
"UBUNTU-CVE-2024-53202",
"CVE-2024-53203",
"UBUNTU-CVE-2024-53203",
"CVE-2024-53208",
"UBUNTU-CVE-2024-53208",
"CVE-2024-53209",
"UBUNTU-CVE-2024-53209",
"CVE-2024-53210",
"UBUNTU-CVE-2024-53210",
"CVE-2024-53212",
"UBUNTU-CVE-2024-53212",
"CVE-2024-53213",
"UBUNTU-CVE-2024-53213",
"CVE-2024-53214",
"UBUNTU-CVE-2024-53214",
"CVE-2024-53215",
"UBUNTU-CVE-2024-53215",
"CVE-2024-53216",
"UBUNTU-CVE-2024-53216",
"CVE-2024-53217",
"UBUNTU-CVE-2024-53217",
"CVE-2024-53218",
"UBUNTU-CVE-2024-53218",
"CVE-2024-53219",
"UBUNTU-CVE-2024-53219",
"CVE-2024-53220",
"UBUNTU-CVE-2024-53220",
"CVE-2024-53221",
"UBUNTU-CVE-2024-53221",
"CVE-2024-53223",
"UBUNTU-CVE-2024-53223",
"CVE-2024-53224",
"UBUNTU-CVE-2024-53224",
"CVE-2024-53226",
"UBUNTU-CVE-2024-53226",
"CVE-2024-53227",
"UBUNTU-CVE-2024-53227",
"CVE-2024-53228",
"UBUNTU-CVE-2024-53228",
"CVE-2024-53229",
"UBUNTU-CVE-2024-53229",
"CVE-2024-53230",
"UBUNTU-CVE-2024-53230",
"CVE-2024-53231",
"UBUNTU-CVE-2024-53231",
"CVE-2024-53232",
"UBUNTU-CVE-2024-53232",
"CVE-2024-53233",
"UBUNTU-CVE-2024-53233",
"CVE-2024-53234",
"UBUNTU-CVE-2024-53234",
"CVE-2024-53236",
"UBUNTU-CVE-2024-53236",
"CVE-2024-53237",
"UBUNTU-CVE-2024-53237",
"CVE-2024-53238",
"UBUNTU-CVE-2024-53238",
"CVE-2024-53239",
"UBUNTU-CVE-2024-53239",
"CVE-2024-56531",
"UBUNTU-CVE-2024-56531",
"CVE-2024-56532",
"UBUNTU-CVE-2024-56532",
"CVE-2024-56533",
"UBUNTU-CVE-2024-56533",
"CVE-2024-56534",
"UBUNTU-CVE-2024-56534",
"CVE-2024-56535",
"UBUNTU-CVE-2024-56535",
"CVE-2024-56536",
"UBUNTU-CVE-2024-56536",
"CVE-2024-56537",
"UBUNTU-CVE-2024-56537",
"CVE-2024-56538",
"UBUNTU-CVE-2024-56538",
"CVE-2024-56539",
"UBUNTU-CVE-2024-56539",
"CVE-2024-56540",
"UBUNTU-CVE-2024-56540",
"CVE-2024-56541",
"UBUNTU-CVE-2024-56541",
"CVE-2024-56543",
"UBUNTU-CVE-2024-56543",
"CVE-2024-56544",
"UBUNTU-CVE-2024-56544",
"CVE-2024-56545",
"UBUNTU-CVE-2024-56545",
"CVE-2024-56546",
"UBUNTU-CVE-2024-56546",
"CVE-2024-56548",
"UBUNTU-CVE-2024-56548",
"CVE-2024-56549",
"UBUNTU-CVE-2024-56549",
"CVE-2024-56674",
"UBUNTU-CVE-2024-56674",
"CVE-2024-56677",
"UBUNTU-CVE-2024-56677",
"CVE-2024-56678",
"UBUNTU-CVE-2024-56678",
"CVE-2024-56679",
"UBUNTU-CVE-2024-56679",
"CVE-2024-56680",
"UBUNTU-CVE-2024-56680",
"CVE-2024-56681",
"UBUNTU-CVE-2024-56681",
"CVE-2024-56683",
"UBUNTU-CVE-2024-56683",
"CVE-2024-56684",
"UBUNTU-CVE-2024-56684",
"CVE-2024-56685",
"UBUNTU-CVE-2024-56685",
"CVE-2024-56687",
"UBUNTU-CVE-2024-56687",
"CVE-2024-56688",
"UBUNTU-CVE-2024-56688",
"CVE-2024-56689",
"UBUNTU-CVE-2024-56689",
"CVE-2024-56690",
"UBUNTU-CVE-2024-56690",
"CVE-2024-56691",
"UBUNTU-CVE-2024-56691",
"CVE-2024-56692",
"UBUNTU-CVE-2024-56692",
"CVE-2024-56693",
"UBUNTU-CVE-2024-56693",
"CVE-2024-56694",
"UBUNTU-CVE-2024-56694",
"CVE-2024-56696",
"UBUNTU-CVE-2024-56696",
"CVE-2024-56697",
"UBUNTU-CVE-2024-56697",
"CVE-2024-56698",
"UBUNTU-CVE-2024-56698",
"CVE-2024-56699",
"UBUNTU-CVE-2024-56699",
"CVE-2024-56700",
"UBUNTU-CVE-2024-56700",
"CVE-2024-56701",
"UBUNTU-CVE-2024-56701",
"CVE-2024-56702",
"UBUNTU-CVE-2024-56702",
"CVE-2024-56703",
"UBUNTU-CVE-2024-56703",
"CVE-2024-56704",
"UBUNTU-CVE-2024-56704",
"CVE-2024-56705",
"UBUNTU-CVE-2024-56705",
"CVE-2024-56707",
"UBUNTU-CVE-2024-56707",
"CVE-2024-56708",
"UBUNTU-CVE-2024-56708",
"CVE-2024-56720",
"UBUNTU-CVE-2024-56720",
"CVE-2024-56721",
"UBUNTU-CVE-2024-56721",
"CVE-2024-56722",
"UBUNTU-CVE-2024-56722",
"CVE-2024-56723",
"UBUNTU-CVE-2024-56723",
"CVE-2024-56724",
"UBUNTU-CVE-2024-56724",
"CVE-2024-56725",
"UBUNTU-CVE-2024-56725",
"CVE-2024-56726",
"UBUNTU-CVE-2024-56726",
"CVE-2024-56727",
"UBUNTU-CVE-2024-56727",
"CVE-2024-56728",
"UBUNTU-CVE-2024-56728",
"CVE-2024-56729",
"UBUNTU-CVE-2024-56729",
"CVE-2024-56739",
"UBUNTU-CVE-2024-56739",
"CVE-2024-56742",
"UBUNTU-CVE-2024-56742",
"CVE-2024-56744",
"UBUNTU-CVE-2024-56744",
"CVE-2024-56745",
"UBUNTU-CVE-2024-56745",
"CVE-2024-56746",
"UBUNTU-CVE-2024-56746",
"CVE-2024-56747",
"UBUNTU-CVE-2024-56747",
"CVE-2024-56748",
"UBUNTU-CVE-2024-56748",
"CVE-2024-56749",
"UBUNTU-CVE-2024-56749",
"CVE-2024-56751",
"UBUNTU-CVE-2024-56751",
"CVE-2024-56752",
"UBUNTU-CVE-2024-56752",
"CVE-2024-56754",
"UBUNTU-CVE-2024-56754",
"CVE-2024-56755",
"UBUNTU-CVE-2024-56755",
"CVE-2024-56756",
"UBUNTU-CVE-2024-56756",
"CVE-2025-0927",
"UBUNTU-CVE-2025-0927"
],
"schema_version": "1.6.3",
"summary": "linux, linux-lowlatency vulnerabilities"
}
usn-7277-1
Vulnerability from osv_ubuntu
Several security issues were discovered in the Linux kernel. An attacker could possibly use these to compromise the system. This update corrects flaws in the following subsystems: - ARM32 architecture; - ARM64 architecture; - PowerPC architecture; - RISC-V architecture; - S390 architecture; - SuperH RISC architecture; - User-Mode Linux (UML); - x86 architecture; - Block layer subsystem; - Cryptographic API; - Compute Acceleration Framework; - ACPI drivers; - Drivers core; - ATA over ethernet (AOE) driver; - RAM backed block device driver; - Network block device driver; - Ublk userspace block driver; - Compressed RAM block device driver; - Bluetooth drivers; - TPM device driver; - Clock framework and drivers; - Data acquisition framework and drivers; - CPU frequency scaling framework; - Hardware crypto device drivers; - CXL (Compute Express Link) drivers; - DAX dirext access to differentiated memory framework; - Buffer Sharing and Synchronization framework; - EDAC drivers; - FireWire subsystem; - ARM SCMI message protocol; - ARM SCPI message protocol; - EFI core; - Qualcomm firmware drivers; - GPIO subsystem; - GPU drivers; - HID subsystem; - I2C subsystem; - I3C subsystem; - IIO ADC drivers; - IIO subsystem; - InfiniBand drivers; - Input Device core drivers; - IOMMU subsystem; - IRQ chip drivers; - Mailbox framework; - Multiple devices driver; - Media drivers; - Multifunction device drivers; - MMC subsystem; - MTD block device drivers; - Ethernet bonding driver; - Network drivers; - Mellanox network drivers; - STMicroelectronics network drivers; - NTB driver; - Virtio pmem driver; - NVME drivers; - Parport drivers; - PCI subsystem; - Alibaba DDR Sub-System Driveway PMU driver; - PHY drivers; - Pin controllers subsystem; - x86 platform drivers; - i.MX PM domains; - Powercap sysfs driver; - Voltage and Current Regulator drivers; - Remote Processor subsystem; - StarFive reset controller drivers; - Real Time Clock drivers; - SCSI subsystem; - SuperH / SH-Mobile drivers; - QCOM SoC drivers; - Xilinx SoC drivers; - SPI subsystem; - Direct Digital Synthesis drivers; - Media staging drivers; - TCM subsystem; - Thermal drivers; - Thunderbolt and USB4 drivers; - TTY drivers; - UFS subsystem; - USB Device Class drivers; - DesignWare USB3 driver; - USB Gadget drivers; - USB Host Controller drivers; - USB Dual Role (OTG-ready) Controller drivers; - USB Serial drivers; - USB Type-C support driver; - USB Type-C Port Controller Manager driver; - TI TPS6598x USB Power Delivery controller driver; - USB Type-C Connector System Software Interface driver; - vDPA drivers; - VFIO drivers; - Virtio Host (VHOST) subsystem; - Framebuffer layer; - Virtio drivers; - Xen hypervisor drivers; - AFS file system; - BTRFS file system; - File systems infrastructure; - Ceph distributed file system; - EROFS file system; - Ext4 file system; - F2FS file system; - GFS2 file system; - JFS file system; - Network file systems library; - Network file system (NFS) client; - Network file system (NFS) server daemon; - NILFS2 file system; - File system notification infrastructure; - NTFS3 file system; - Proc file system; - SMB network file system; - UBI file system; - BPF subsystem; - Network file system (NFS) superblock; - Virtio network driver; - Bluetooth subsystem; - Network traffic control; - Network sockets; - TCP network protocol; - Tracing infrastructure; - User-space API (UAPI); - Kernel init infrastructure; - io_uring subsystem; - IPC subsystem; - Perf events; - Kernel fork() syscall; - Kernel thread helper (kthread); - Padata parallel execution mechanism; - RCU subsystem; - Arbitrary resource management; - Scheduler infrastructure; - Signal handling mechanism; - Static call mechanism; - Task handling mechanism; - Timer substystem drivers; - Maple Tree data structure library; - Memory management; - 9P file system network protocol; - Ethernet bridge; - CAN network layer; - Networking core; - DCCP (Datagram Congestion Control Protocol); - Distributed Switch Architecture; - IPv4 networking; - IPv6 networking; - IUCV driver; - L2TP protocol; - MAC80211 subsystem; - IEEE 802.15.4 subsystem; - Multipath TCP; - NCSI (Network Controller Sideband Interface) driver; - Netfilter; - Netlink; - RxRPC session sockets; - SCTP protocol; - SMC sockets; - Sun RPC protocol; - TIPC protocol; - Unix domain sockets; - VMware vSockets driver; - Wireless networking; - eXpress Data Path; - XFRM subsystem; - AppArmor security module; - Integrity Measurement Architecture(IMA) framework; - Key management; - ALSA framework; - FireWire sound drivers; - AudioScience HPI driver; - HD-audio driver; - SoC Audio for Freescale CPUs drivers; - Intel ASoC drivers; - MediaTek ASoC drivers; - QCOM ASoC drivers; - SoC audio core drivers; - STMicroelectronics SoC drivers; - USB sound devices; - KVM core; (CVE-2024-50030, CVE-2024-47689, CVE-2024-50088, CVE-2024-50154, CVE-2024-49994, CVE-2024-50243, CVE-2024-50284, CVE-2024-50207, CVE-2024-53200, CVE-2024-53155, CVE-2024-50179, CVE-2024-50171, CVE-2024-53167, CVE-2024-49885, CVE-2024-49869, CVE-2024-49934, CVE-2024-53089, CVE-2024-50196, CVE-2024-53090, CVE-2024-47675, CVE-2024-47690, CVE-2024-56674, CVE-2024-50082, CVE-2024-47742, CVE-2024-53220, CVE-2024-50172, CVE-2024-50009, CVE-2024-49881, CVE-2024-50249, CVE-2024-47752, CVE-2024-56707, CVE-2024-53105, CVE-2024-53048, CVE-2024-50148, CVE-2024-50036, CVE-2024-53141, CVE-2024-50213, CVE-2024-49911, CVE-2024-50285, CVE-2024-56535, CVE-2024-49882, CVE-2024-50225, CVE-2024-50090, CVE-2024-53063, CVE-2024-56703, CVE-2024-47687, CVE-2024-53079, CVE-2024-47744, CVE-2024-50020, CVE-2024-53078, CVE-2024-53176, CVE-2024-53183, CVE-2024-50248, CVE-2024-50283, CVE-2024-49907, CVE-2024-50084, CVE-2024-56541, CVE-2024-49979, CVE-2024-53175, CVE-2024-49871, CVE-2024-47678, CVE-2024-47720, CVE-2024-53059, CVE-2024-56685, CVE-2024-56702, CVE-2024-50071, CVE-2024-56534, CVE-2024-56745, CVE-2024-53154, CVE-2024-47736, CVE-2024-49965, CVE-2024-47701, CVE-2024-50159, CVE-2024-50040, CVE-2024-50274, CVE-2024-49876, CVE-2024-49895, CVE-2024-50189, CVE-2024-56704, CVE-2024-47681, CVE-2024-53106, CVE-2024-56744, CVE-2024-53197, CVE-2024-50120, CVE-2024-50204, CVE-2024-50184, CVE-2024-53095, CVE-2024-50101, CVE-2024-53146, CVE-2024-50256, CVE-2024-53226, CVE-2024-47712, CVE-2024-50137, CVE-2024-53131, CVE-2024-49888, CVE-2024-50235, CVE-2024-50047, CVE-2024-50224, CVE-2024-50142, CVE-2024-50200, CVE-2024-53085, CVE-2024-49892, CVE-2024-50263, CVE-2024-53150, CVE-2024-53121, CVE-2024-49977, CVE-2024-50144, CVE-2024-50127, CVE-2024-53092, CVE-2024-50265, CVE-2024-56691, CVE-2024-53069, CVE-2024-49902, CVE-2024-47715, CVE-2024-56720, CVE-2024-53127, CVE-2024-53142, CVE-2024-49862, CVE-2024-49918, CVE-2024-56684, CVE-2024-50208, CVE-2024-53189, CVE-2024-50103, CVE-2024-56756, CVE-2024-50273, CVE-2024-56536, CVE-2024-53068, CVE-2024-49878, CVE-2024-47705, CVE-2024-53113, CVE-2024-50129, CVE-2024-49942, CVE-2024-50100, CVE-2024-49930, CVE-2024-50043, CVE-2024-53198, CVE-2024-49861, CVE-2024-50124, CVE-2024-50209, CVE-2024-53187, CVE-2024-49864, CVE-2024-56689, CVE-2024-50294, CVE-2024-47706, CVE-2024-50186, CVE-2024-53086, CVE-2024-49954, CVE-2024-56692, CVE-2024-47679, CVE-2024-53109, CVE-2024-50001, CVE-2024-49983, CVE-2024-56679, CVE-2024-50034, CVE-2024-50276, CVE-2024-56680, CVE-2024-49988, CVE-2024-53099, CVE-2024-50021, CVE-2024-50022, CVE-2024-50136, CVE-2024-53193, CVE-2024-50220, CVE-2024-49858, CVE-2024-50229, CVE-2024-50074, CVE-2024-50002, CVE-2024-53117, CVE-2024-50176, CVE-2024-50075, CVE-2024-50045, CVE-2024-49924, CVE-2024-47686, CVE-2024-50104, CVE-2024-47714, CVE-2024-50291, CVE-2024-49929, CVE-2024-53215, CVE-2024-50157, CVE-2024-50147, CVE-2024-49898, CVE-2024-50164, CVE-2024-47711, CVE-2024-53082, CVE-2024-50230, CVE-2024-50152, CVE-2024-53218, CVE-2024-53199, CVE-2024-50253, CVE-2024-47754, CVE-2024-49910, CVE-2024-53137, CVE-2024-50128, CVE-2024-50044, CVE-2024-47719, CVE-2024-53188, CVE-2024-53061, CVE-2024-49944, CVE-2024-50091, CVE-2024-49945, CVE-2024-50119, CVE-2024-50133, CVE-2024-50033, CVE-2024-53083, CVE-2024-50138, CVE-2024-49872, CVE-2024-50140, CVE-2024-56727, CVE-2024-50003, CVE-2024-50015, CVE-2024-50303, CVE-2024-50258, CVE-2024-49867, CVE-2024-50116, CVE-2024-47716, CVE-2024-50132, CVE-2024-50055, CVE-2024-49950, CVE-2024-50203, CVE-2024-47695, CVE-2024-50250, CVE-2024-50165, CVE-2024-50156, CVE-2024-56700, CVE-2024-49913, CVE-2024-50281, CVE-2024-53045, CVE-2024-49998, CVE-2024-53180, CVE-2024-50271, CVE-2024-50286, CVE-2024-49887, CVE-2024-53168, CVE-2024-47676, CVE-2024-47726, CVE-2024-47732, CVE-2024-47704, CVE-2024-49980, CVE-2024-49931, CVE-2024-53229, CVE-2024-50141, CVE-2024-50282, CVE-2024-50233, CVE-2024-56725, CVE-2024-50239, CVE-2024-50299, CVE-2024-50218, CVE-2024-53072, CVE-2024-49903, CVE-2024-50163, CVE-2024-53100, CVE-2024-50146, CVE-2024-49859, CVE-2024-50227, CVE-2024-50188, CVE-2024-56739, CVE-2024-53217, CVE-2024-53118, CVE-2024-49946, CVE-2024-53212, CVE-2024-49926, CVE-2024-53177, CVE-2024-56741, CVE-2024-53234, CVE-2024-49932, CVE-2024-50095, CVE-2024-50190, CVE-2024-49995, CVE-2024-49976, CVE-2024-49906, CVE-2024-49996, CVE-2024-53049, CVE-2024-47751, CVE-2024-56677, CVE-2024-56724, CVE-2024-47746, CVE-2024-50245, CVE-2024-53236, CVE-2024-53191, CVE-2024-50112, CVE-2024-49937, CVE-2024-50234, CVE-2024-50067, CVE-2024-53112, CVE-2024-50017, CVE-2024-50008, CVE-2024-50194, CVE-2024-50076, CVE-2024-47697, CVE-2024-56693, CVE-2024-50280, CVE-2024-50182, CVE-2024-53237, CVE-2024-50011, CVE-2024-49912, CVE-2024-50217, CVE-2024-56532, CVE-2024-53221, CVE-2024-50206, CVE-2024-47700, CVE-2024-56537, CVE-2024-49959, CVE-2024-56681, CVE-2024-49936, CVE-2024-49900, CVE-2024-53077, CVE-2024-56705, CVE-2024-53125, CVE-2024-49968, CVE-2024-49969, CVE-2024-56545, CVE-2024-50106, CVE-2024-53160, CVE-2024-50013, CVE-2024-49880, CVE-2024-53228, CVE-2024-50177, CVE-2024-47684, CVE-2024-47739, CVE-2024-50029, CVE-2024-53194, CVE-2024-50237, CVE-2024-50035, CVE-2024-49941, CVE-2024-49947, CVE-2024-50289, CVE-2024-49949, CVE-2024-50023, CVE-2024-50139, CVE-2024-49886, CVE-2024-50026, CVE-2024-56748, CVE-2024-53080, CVE-2024-56754, CVE-2024-49999, CVE-2024-49963, CVE-2024-49855, CVE-2024-50252, CVE-2024-49975, CVE-2024-50107, CVE-2024-56749, CVE-2024-49928, CVE-2024-49865, CVE-2024-50125, CVE-2024-49899, CVE-2024-47750, CVE-2024-53152, CVE-2024-50081, CVE-2024-49891, CVE-2024-49927, CVE-2024-49852, CVE-2024-50085, CVE-2024-50185, CVE-2024-50205, CVE-2024-49896, CVE-2024-50278, CVE-2024-49866, CVE-2024-53190, CVE-2024-50251, CVE-2024-50269, CVE-2024-49889, CVE-2024-50037, CVE-2024-53144, CVE-2024-53138, CVE-2024-50087, CVE-2024-56678, CVE-2024-53087, CVE-2024-50180, CVE-2024-49940, CVE-2024-50019, CVE-2024-53149, CVE-2024-50122, CVE-2024-50038, CVE-2024-53156, CVE-2024-49943, CVE-2024-50113, CVE-2024-47721, CVE-2024-53076, CVE-2024-50115, CVE-2024-50178, CVE-2024-50268, CVE-2024-50279, CVE-2024-53134, CVE-2024-50199, CVE-2024-49989, CVE-2024-47671, CVE-2024-49909, CVE-2024-53173, CVE-2024-53053, CVE-2024-53088, CVE-2024-50078, CVE-2024-50105, CVE-2024-50223, CVE-2024-50126, CVE-2024-47680, CVE-2024-47724, CVE-2024-53047, CVE-2024-50060, CVE-2024-53056, CVE-2024-49987, CVE-2024-49879, CVE-2024-53128, CVE-2024-53123, CVE-2024-49981, CVE-2024-50277, CVE-2024-50166, CVE-2024-53067, CVE-2024-49964, CVE-2024-56728, CVE-2024-49853, CVE-2024-53064, CVE-2024-56531, CVE-2024-53213, CVE-2024-50246, CVE-2024-50192, CVE-2024-53184, CVE-2024-56697, CVE-2024-47710, CVE-2024-53052, CVE-2024-47718, CVE-2024-49938, CVE-2024-49893, CVE-2024-53133, CVE-2024-50096, CVE-2024-53129, CVE-2024-49951, CVE-2024-53181, CVE-2024-50059, CVE-2024-50193, CVE-2024-53120, CVE-2024-50114, CVE-2024-49962, CVE-2024-49921, CVE-2024-50298, CVE-2024-50255, CVE-2024-53219, CVE-2024-49905, CVE-2024-50211, CVE-2024-49860, CVE-2024-47727, CVE-2024-50028, CVE-2024-47723, CVE-2024-53081, CVE-2024-56683, CVE-2024-49897, CVE-2024-50065, CVE-2024-56708, CVE-2024-50151, CVE-2023-52917, CVE-2024-56538, CVE-2024-47691, CVE-2024-53196, CVE-2024-50150, CVE-2024-50069, CVE-2024-50301, CVE-2024-50131, CVE-2024-53110, CVE-2024-56701, CVE-2024-53115, CVE-2024-53062, CVE-2024-50058, CVE-2024-53148, CVE-2024-53147, CVE-2024-50226, CVE-2024-56540, CVE-2024-53124, CVE-2024-50170, CVE-2024-50266, CVE-2024-50296, CVE-2024-49953, CVE-2024-47692, CVE-2024-49916, CVE-2024-53239, CVE-2024-50173, CVE-2024-49868, CVE-2024-47677, CVE-2024-49972, CVE-2024-50130, CVE-2024-56698, CVE-2024-50231, CVE-2024-50272, CVE-2024-53153, CVE-2024-50158, CVE-2024-53046, CVE-2024-49908, CVE-2024-47709, CVE-2024-53058, CVE-2024-50006, CVE-2024-49948, CVE-2024-47685, CVE-2024-47693, CVE-2024-50260, CVE-2024-50079, CVE-2024-50149, CVE-2024-53151, CVE-2024-47757, CVE-2024-49917, CVE-2024-50288, CVE-2024-50117, CVE-2024-50039, CVE-2024-56690, CVE-2024-50293, CVE-2024-50145, CVE-2024-53166, CVE-2024-47713, CVE-2024-53158, CVE-2024-50068, CVE-2024-53074, CVE-2024-49914, CVE-2024-49870, CVE-2024-50031, CVE-2024-47735, CVE-2024-50007, CVE-2024-49915, CVE-2024-47699, CVE-2024-50244, CVE-2024-50216, CVE-2024-53114, CVE-2024-53043, CVE-2024-47688, CVE-2024-47734, CVE-2024-53230, CVE-2024-53122, CVE-2024-50123, CVE-2024-53116, CVE-2024-56726, CVE-2024-56747, CVE-2024-56548, CVE-2024-50174, CVE-2024-53042, CVE-2024-53135, CVE-2024-50080, CVE-2024-49997, CVE-2024-49974, CVE-2024-53145, CVE-2024-53075, CVE-2024-47730, CVE-2024-50304, CVE-2024-50161, CVE-2024-49883, CVE-2024-53111, CVE-2024-53233, CVE-2024-47698, CVE-2024-50012, CVE-2024-50240, CVE-2024-53163, CVE-2024-53071, CVE-2024-50168, CVE-2024-47740, CVE-2024-50275, CVE-2024-49961, CVE-2024-50183, CVE-2024-53203, CVE-2024-47738, CVE-2024-49856, CVE-2024-50014, CVE-2024-50191, CVE-2024-46869, CVE-2024-56721, CVE-2024-50056, CVE-2024-53210, CVE-2024-49978, CVE-2024-53161, CVE-2024-50155, CVE-2024-50270, CVE-2024-50169, CVE-2024-49952, CVE-2024-50236, CVE-2024-49863, CVE-2024-49857, CVE-2024-53140, CVE-2024-53107, CVE-2024-50247, CVE-2024-53084, CVE-2024-50077, CVE-2024-50121, CVE-2024-53091, CVE-2024-49925, CVE-2024-47745, CVE-2024-50086, CVE-2024-53101, CVE-2024-56729, CVE-2024-56751, CVE-2024-50016, CVE-2024-49901, CVE-2024-47694, CVE-2024-53098, CVE-2024-53232, CVE-2024-50108, CVE-2024-50197, CVE-2024-50242, CVE-2024-50222, CVE-2024-53132, CVE-2024-50212, CVE-2024-49933, CVE-2024-53169, CVE-2024-49957, CVE-2024-56533, CVE-2024-47708, CVE-2024-50267, CVE-2024-56723, CVE-2024-50110, CVE-2024-50064, CVE-2024-56722, CVE-2024-53130, CVE-2024-53208, CVE-2024-50102, CVE-2024-50153, CVE-2024-49939, CVE-2024-53094, CVE-2024-50262, CVE-2024-49850, CVE-2024-53195, CVE-2024-53170, CVE-2024-50093, CVE-2024-53223, CVE-2024-53093, CVE-2024-56699, CVE-2024-50070, CVE-2024-49992, CVE-2024-50111, CVE-2024-47728, CVE-2024-53202, CVE-2024-47741, CVE-2024-49920, CVE-2024-56694, CVE-2024-53126, CVE-2024-49851, CVE-2024-50099, CVE-2024-50302, CVE-2024-50214, CVE-2024-49973, CVE-2024-50024, CVE-2024-50162, CVE-2024-53214, CVE-2024-50073, CVE-2024-50061, CVE-2024-56549, CVE-2024-56688, CVE-2024-49960, CVE-2024-56543, CVE-2024-53178, CVE-2024-50027, CVE-2024-50295, CVE-2024-53104, CVE-2024-53065, CVE-2024-47747, CVE-2024-49991, CVE-2024-50202, CVE-2024-49935, CVE-2024-50062, CVE-2024-50094, CVE-2024-56544, CVE-2024-50010, CVE-2024-49971, CVE-2024-50083, CVE-2024-56687, CVE-2024-47753, CVE-2024-50297, CVE-2024-47733, CVE-2024-50135, CVE-2024-50066, CVE-2024-50118, CVE-2024-56746, CVE-2024-47682, CVE-2024-53165, CVE-2024-50025, CVE-2024-49875, CVE-2024-47717, CVE-2024-49894, CVE-2024-50198, CVE-2024-50167, CVE-2024-49958, CVE-2024-49966, CVE-2024-50254, CVE-2024-49904, CVE-2024-50041, CVE-2024-50005, CVE-2024-53066, CVE-2024-50000, CVE-2024-50215, CVE-2024-47748, CVE-2024-56742, CVE-2024-50259, CVE-2024-50092, CVE-2024-47737, CVE-2024-53238, CVE-2024-50300, CVE-2024-53192, CVE-2024-47696, CVE-2024-50134, CVE-2024-50201, CVE-2024-50181, CVE-2024-49873, CVE-2024-50187, CVE-2024-53171, CVE-2024-50160, CVE-2024-49923, CVE-2024-50063, CVE-2024-53174, CVE-2024-50143, CVE-2024-49982, CVE-2024-56546, CVE-2024-50109, CVE-2024-53119, CVE-2024-47707, CVE-2024-56696, CVE-2024-53108, CVE-2024-47731, CVE-2024-50261, CVE-2024-50042, CVE-2024-49884, CVE-2024-53162, CVE-2024-56755, CVE-2024-49919, CVE-2024-53216, CVE-2024-50287, CVE-2024-53143, CVE-2024-50257, CVE-2024-49890, CVE-2024-53172, CVE-2024-53209, CVE-2024-49956, CVE-2024-50238, CVE-2024-49955, CVE-2024-50046, CVE-2024-50098, CVE-2024-50232, CVE-2024-50292, CVE-2024-56752, CVE-2024-50195, CVE-2024-47743, CVE-2024-53044, CVE-2024-50049, CVE-2024-49986, CVE-2024-53055, CVE-2024-56539, CVE-2024-50048, CVE-2024-49985, CVE-2024-53227, CVE-2024-49970, CVE-2024-47702, CVE-2024-49874, CVE-2024-47703, CVE-2024-53139, CVE-2024-50072, CVE-2024-53224, CVE-2024-49877, CVE-2024-49922, CVE-2024-50290, CVE-2024-47756, CVE-2024-50221, CVE-2024-50057, CVE-2022-49034, CVE-2024-53157, CVE-2024-47749, CVE-2024-53231)
| URL | Type | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{
"affected": [
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-aws-cloud-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-aws-headers-6.11.0-1009",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-aws-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-buildinfo-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-headers-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-aws-dbgsym",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-modules-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-modules-extra-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
},
{
"binary_name": "linux-tools-6.11.0-1009-aws",
"binary_version": "6.11.0-1009.10"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-aws",
"purl": "pkg:deb/ubuntu/linux-aws@6.11.0-1009.10?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1009.10"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.8",
"6.11.0-1002.2",
"6.11.0-1004.4",
"6.11.0-1005.5",
"6.11.0-1006.6",
"6.11.0-1007.7",
"6.11.0-1008.8"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-cloud-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-azure-headers-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-azure-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-buildinfo-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-headers-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-azure-dbgsym",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-extra-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-tools-6.11.0-1009-azure",
"binary_version": "6.11.0-1009.9"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-azure",
"purl": "pkg:deb/ubuntu/linux-azure@6.11.0-1009.9?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1009.9"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1007.7",
"6.11.0-1003.3",
"6.11.0-1004.4",
"6.11.0-1005.5",
"6.11.0-1007.7",
"6.11.0-1008.8"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-gcp-headers-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-gcp-tools-6.11.0-1009",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-headers-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1009-gcp-dbgsym",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-modules-extra-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
},
{
"binary_name": "linux-tools-6.11.0-1009-gcp",
"binary_version": "6.11.0-1009.9"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-gcp",
"purl": "pkg:deb/ubuntu/linux-gcp@6.11.0-1009.9?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1009.9"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1007.7",
"6.11.0-1001.1",
"6.11.0-1002.2",
"6.11.0-1003.3",
"6.11.0-1004.4",
"6.11.0-1005.5",
"6.11.0-1006.6",
"6.11.0-1007.7"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-buildinfo-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-headers-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-headers-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-oracle-64k-dbgsym",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1011-oracle-dbgsym",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-extra-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-modules-extra-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-oracle-headers-6.11.0-1011",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-oracle-tools-6.11.0-1011",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-tools-6.11.0-1011-oracle",
"binary_version": "6.11.0-1011.12"
},
{
"binary_name": "linux-tools-6.11.0-1011-oracle-64k",
"binary_version": "6.11.0-1011.12"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-oracle",
"purl": "pkg:deb/ubuntu/linux-oracle@6.11.0-1011.12?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1011.12"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1005.5",
"6.11.0-1004.4",
"6.11.0-1006.6",
"6.11.0-1007.7",
"6.11.0-1008.8",
"6.11.0-1009.9",
"6.11.0-1010.10"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-headers-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-image-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-image-6.11.0-1008-raspi-dbgsym",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-modules-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-raspi-headers-6.11.0-1008",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-raspi-tools-6.11.0-1008",
"binary_version": "6.11.0-1008.8"
},
{
"binary_name": "linux-tools-6.11.0-1008-raspi",
"binary_version": "6.11.0-1008.8"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-raspi",
"purl": "pkg:deb/ubuntu/linux-raspi@6.11.0-1008.8?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1008.8"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1004.4",
"6.11.0-1003.3",
"6.11.0-1004.4",
"6.11.0-1005.5",
"6.11.0-1006.6",
"6.11.0-1007.7"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-headers-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1005-realtime-dbgsym",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-modules-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-modules-extra-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-realtime-cloud-tools-6.11.0-1005",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-realtime-headers-6.11.0-1005",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-realtime-tools-6.11.0-1005",
"binary_version": "6.11.0-1005.5"
},
{
"binary_name": "linux-tools-6.11.0-1005-realtime",
"binary_version": "6.11.0-1005.5"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.10",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@6.11.0-1005.5?arch=source\u0026distro=oracular"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.11.0-1005.5"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1001.1",
"6.11.0-1002.2",
"6.11.0-1003.3",
"6.11.0-1004.4"
]
}
],
"aliases": [],
"details": "Several security issues were discovered in the Linux kernel.\nAn attacker could possibly use these to compromise the system.\nThis update corrects flaws in the following subsystems:\n - ARM32 architecture;\n - ARM64 architecture;\n - PowerPC architecture;\n - RISC-V architecture;\n - S390 architecture;\n - SuperH RISC architecture;\n - User-Mode Linux (UML);\n - x86 architecture;\n - Block layer subsystem;\n - Cryptographic API;\n - Compute Acceleration Framework;\n - ACPI drivers;\n - Drivers core;\n - ATA over ethernet (AOE) driver;\n - RAM backed block device driver;\n - Network block device driver;\n - Ublk userspace block driver;\n - Compressed RAM block device driver;\n - Bluetooth drivers;\n - TPM device driver;\n - Clock framework and drivers;\n - Data acquisition framework and drivers;\n - CPU frequency scaling framework;\n - Hardware crypto device drivers;\n - CXL (Compute Express Link) drivers;\n - DAX dirext access to differentiated memory framework;\n - Buffer Sharing and Synchronization framework;\n - EDAC drivers;\n - FireWire subsystem;\n - ARM SCMI message protocol;\n - ARM SCPI message protocol;\n - EFI core;\n - Qualcomm firmware drivers;\n - GPIO subsystem;\n - GPU drivers;\n - HID subsystem;\n - I2C subsystem;\n - I3C subsystem;\n - IIO ADC drivers;\n - IIO subsystem;\n - InfiniBand drivers;\n - Input Device core drivers;\n - IOMMU subsystem;\n - IRQ chip drivers;\n - Mailbox framework;\n - Multiple devices driver;\n - Media drivers;\n - Multifunction device drivers;\n - MMC subsystem;\n - MTD block device drivers;\n - Ethernet bonding driver;\n - Network drivers;\n - Mellanox network drivers;\n - STMicroelectronics network drivers;\n - NTB driver;\n - Virtio pmem driver;\n - NVME drivers;\n - Parport drivers;\n - PCI subsystem;\n - Alibaba DDR Sub-System Driveway PMU driver;\n - PHY drivers;\n - Pin controllers subsystem;\n - x86 platform drivers;\n - i.MX PM domains;\n - Powercap sysfs driver;\n - Voltage and Current Regulator drivers;\n - Remote Processor subsystem;\n - StarFive reset controller drivers;\n - Real Time Clock drivers;\n - SCSI subsystem;\n - SuperH / SH-Mobile drivers;\n - QCOM SoC drivers;\n - Xilinx SoC drivers;\n - SPI subsystem;\n - Direct Digital Synthesis drivers;\n - Media staging drivers;\n - TCM subsystem;\n - Thermal drivers;\n - Thunderbolt and USB4 drivers;\n - TTY drivers;\n - UFS subsystem;\n - USB Device Class drivers;\n - DesignWare USB3 driver;\n - USB Gadget drivers;\n - USB Host Controller drivers;\n - USB Dual Role (OTG-ready) Controller drivers;\n - USB Serial drivers;\n - USB Type-C support driver;\n - USB Type-C Port Controller Manager driver;\n - TI TPS6598x USB Power Delivery controller driver;\n - USB Type-C Connector System Software Interface driver;\n - vDPA drivers;\n - VFIO drivers;\n - Virtio Host (VHOST) subsystem;\n - Framebuffer layer;\n - Virtio drivers;\n - Xen hypervisor drivers;\n - AFS file system;\n - BTRFS file system;\n - File systems infrastructure;\n - Ceph distributed file system;\n - EROFS file system;\n - Ext4 file system;\n - F2FS file system;\n - GFS2 file system;\n - JFS file system;\n - Network file systems library;\n - Network file system (NFS) client;\n - Network file system (NFS) server daemon;\n - NILFS2 file system;\n - File system notification infrastructure;\n - NTFS3 file system;\n - Proc file system;\n - SMB network file system;\n - UBI file system;\n - BPF subsystem;\n - Network file system (NFS) superblock;\n - Virtio network driver;\n - Bluetooth subsystem;\n - Network traffic control;\n - Network sockets;\n - TCP network protocol;\n - Tracing infrastructure;\n - User-space API (UAPI);\n - Kernel init infrastructure;\n - io_uring subsystem;\n - IPC subsystem;\n - Perf events;\n - Kernel fork() syscall;\n - Kernel thread helper (kthread);\n - Padata parallel execution mechanism;\n - RCU subsystem;\n - Arbitrary resource management;\n - Scheduler infrastructure;\n - Signal handling mechanism;\n - Static call mechanism;\n - Task handling mechanism;\n - Timer substystem drivers;\n - Maple Tree data structure library;\n - Memory management;\n - 9P file system network protocol;\n - Ethernet bridge;\n - CAN network layer;\n - Networking core;\n - DCCP (Datagram Congestion Control Protocol);\n - Distributed Switch Architecture;\n - IPv4 networking;\n - IPv6 networking;\n - IUCV driver;\n - L2TP protocol;\n - MAC80211 subsystem;\n - IEEE 802.15.4 subsystem;\n - Multipath TCP;\n - NCSI (Network Controller Sideband Interface) driver;\n - Netfilter;\n - Netlink;\n - RxRPC session sockets;\n - SCTP protocol;\n - SMC sockets;\n - Sun RPC protocol;\n - TIPC protocol;\n - Unix domain sockets;\n - VMware vSockets driver;\n - Wireless networking;\n - eXpress Data Path;\n - XFRM subsystem;\n - AppArmor security module;\n - Integrity Measurement Architecture(IMA) framework;\n - Key management;\n - ALSA framework;\n - FireWire sound drivers;\n - AudioScience HPI driver;\n - HD-audio driver;\n - SoC Audio for Freescale CPUs drivers;\n - Intel ASoC drivers;\n - MediaTek ASoC drivers;\n - QCOM ASoC drivers;\n - SoC audio core drivers;\n - STMicroelectronics SoC drivers;\n - USB sound devices;\n - KVM core;\n(CVE-2024-50030, CVE-2024-47689, CVE-2024-50088, CVE-2024-50154,\nCVE-2024-49994, CVE-2024-50243, CVE-2024-50284, CVE-2024-50207,\nCVE-2024-53200, CVE-2024-53155, CVE-2024-50179, CVE-2024-50171,\nCVE-2024-53167, CVE-2024-49885, CVE-2024-49869, CVE-2024-49934,\nCVE-2024-53089, CVE-2024-50196, CVE-2024-53090, CVE-2024-47675,\nCVE-2024-47690, CVE-2024-56674, CVE-2024-50082, CVE-2024-47742,\nCVE-2024-53220, CVE-2024-50172, CVE-2024-50009, CVE-2024-49881,\nCVE-2024-50249, CVE-2024-47752, CVE-2024-56707, CVE-2024-53105,\nCVE-2024-53048, CVE-2024-50148, CVE-2024-50036, CVE-2024-53141,\nCVE-2024-50213, CVE-2024-49911, CVE-2024-50285, CVE-2024-56535,\nCVE-2024-49882, CVE-2024-50225, CVE-2024-50090, CVE-2024-53063,\nCVE-2024-56703, CVE-2024-47687, CVE-2024-53079, CVE-2024-47744,\nCVE-2024-50020, CVE-2024-53078, CVE-2024-53176, CVE-2024-53183,\nCVE-2024-50248, CVE-2024-50283, CVE-2024-49907, CVE-2024-50084,\nCVE-2024-56541, CVE-2024-49979, CVE-2024-53175, CVE-2024-49871,\nCVE-2024-47678, CVE-2024-47720, CVE-2024-53059, CVE-2024-56685,\nCVE-2024-56702, CVE-2024-50071, CVE-2024-56534, CVE-2024-56745,\nCVE-2024-53154, CVE-2024-47736, CVE-2024-49965, CVE-2024-47701,\nCVE-2024-50159, CVE-2024-50040, CVE-2024-50274, CVE-2024-49876,\nCVE-2024-49895, CVE-2024-50189, CVE-2024-56704, CVE-2024-47681,\nCVE-2024-53106, CVE-2024-56744, CVE-2024-53197, CVE-2024-50120,\nCVE-2024-50204, CVE-2024-50184, CVE-2024-53095, CVE-2024-50101,\nCVE-2024-53146, CVE-2024-50256, CVE-2024-53226, CVE-2024-47712,\nCVE-2024-50137, CVE-2024-53131, CVE-2024-49888, CVE-2024-50235,\nCVE-2024-50047, CVE-2024-50224, CVE-2024-50142, CVE-2024-50200,\nCVE-2024-53085, CVE-2024-49892, CVE-2024-50263, CVE-2024-53150,\nCVE-2024-53121, CVE-2024-49977, CVE-2024-50144, CVE-2024-50127,\nCVE-2024-53092, CVE-2024-50265, CVE-2024-56691, CVE-2024-53069,\nCVE-2024-49902, CVE-2024-47715, CVE-2024-56720, CVE-2024-53127,\nCVE-2024-53142, CVE-2024-49862, CVE-2024-49918, CVE-2024-56684,\nCVE-2024-50208, CVE-2024-53189, CVE-2024-50103, CVE-2024-56756,\nCVE-2024-50273, CVE-2024-56536, CVE-2024-53068, CVE-2024-49878,\nCVE-2024-47705, CVE-2024-53113, CVE-2024-50129, CVE-2024-49942,\nCVE-2024-50100, CVE-2024-49930, CVE-2024-50043, CVE-2024-53198,\nCVE-2024-49861, CVE-2024-50124, CVE-2024-50209, CVE-2024-53187,\nCVE-2024-49864, CVE-2024-56689, CVE-2024-50294, CVE-2024-47706,\nCVE-2024-50186, CVE-2024-53086, CVE-2024-49954, CVE-2024-56692,\nCVE-2024-47679, CVE-2024-53109, CVE-2024-50001, CVE-2024-49983,\nCVE-2024-56679, CVE-2024-50034, CVE-2024-50276, CVE-2024-56680,\nCVE-2024-49988, CVE-2024-53099, CVE-2024-50021, CVE-2024-50022,\nCVE-2024-50136, CVE-2024-53193, CVE-2024-50220, CVE-2024-49858,\nCVE-2024-50229, CVE-2024-50074, CVE-2024-50002, CVE-2024-53117,\nCVE-2024-50176, CVE-2024-50075, CVE-2024-50045, CVE-2024-49924,\nCVE-2024-47686, CVE-2024-50104, CVE-2024-47714, CVE-2024-50291,\nCVE-2024-49929, CVE-2024-53215, CVE-2024-50157, CVE-2024-50147,\nCVE-2024-49898, CVE-2024-50164, CVE-2024-47711, CVE-2024-53082,\nCVE-2024-50230, CVE-2024-50152, CVE-2024-53218, CVE-2024-53199,\nCVE-2024-50253, CVE-2024-47754, CVE-2024-49910, CVE-2024-53137,\nCVE-2024-50128, CVE-2024-50044, CVE-2024-47719, CVE-2024-53188,\nCVE-2024-53061, CVE-2024-49944, CVE-2024-50091, CVE-2024-49945,\nCVE-2024-50119, CVE-2024-50133, CVE-2024-50033, CVE-2024-53083,\nCVE-2024-50138, CVE-2024-49872, CVE-2024-50140, CVE-2024-56727,\nCVE-2024-50003, CVE-2024-50015, CVE-2024-50303, CVE-2024-50258,\nCVE-2024-49867, CVE-2024-50116, CVE-2024-47716, CVE-2024-50132,\nCVE-2024-50055, CVE-2024-49950, CVE-2024-50203, CVE-2024-47695,\nCVE-2024-50250, CVE-2024-50165, CVE-2024-50156, CVE-2024-56700,\nCVE-2024-49913, CVE-2024-50281, CVE-2024-53045, CVE-2024-49998,\nCVE-2024-53180, CVE-2024-50271, CVE-2024-50286, CVE-2024-49887,\nCVE-2024-53168, CVE-2024-47676, CVE-2024-47726, CVE-2024-47732,\nCVE-2024-47704, CVE-2024-49980, CVE-2024-49931, CVE-2024-53229,\nCVE-2024-50141, CVE-2024-50282, CVE-2024-50233, CVE-2024-56725,\nCVE-2024-50239, CVE-2024-50299, CVE-2024-50218, CVE-2024-53072,\nCVE-2024-49903, CVE-2024-50163, CVE-2024-53100, CVE-2024-50146,\nCVE-2024-49859, CVE-2024-50227, CVE-2024-50188, CVE-2024-56739,\nCVE-2024-53217, CVE-2024-53118, CVE-2024-49946, CVE-2024-53212,\nCVE-2024-49926, CVE-2024-53177, CVE-2024-56741, CVE-2024-53234,\nCVE-2024-49932, CVE-2024-50095, CVE-2024-50190, CVE-2024-49995,\nCVE-2024-49976, CVE-2024-49906, CVE-2024-49996, CVE-2024-53049,\nCVE-2024-47751, CVE-2024-56677, CVE-2024-56724, CVE-2024-47746,\nCVE-2024-50245, CVE-2024-53236, CVE-2024-53191, CVE-2024-50112,\nCVE-2024-49937, CVE-2024-50234, CVE-2024-50067, CVE-2024-53112,\nCVE-2024-50017, CVE-2024-50008, CVE-2024-50194, CVE-2024-50076,\nCVE-2024-47697, CVE-2024-56693, CVE-2024-50280, CVE-2024-50182,\nCVE-2024-53237, CVE-2024-50011, CVE-2024-49912, CVE-2024-50217,\nCVE-2024-56532, CVE-2024-53221, CVE-2024-50206, CVE-2024-47700,\nCVE-2024-56537, CVE-2024-49959, CVE-2024-56681, CVE-2024-49936,\nCVE-2024-49900, CVE-2024-53077, CVE-2024-56705, CVE-2024-53125,\nCVE-2024-49968, CVE-2024-49969, CVE-2024-56545, CVE-2024-50106,\nCVE-2024-53160, CVE-2024-50013, CVE-2024-49880, CVE-2024-53228,\nCVE-2024-50177, CVE-2024-47684, CVE-2024-47739, CVE-2024-50029,\nCVE-2024-53194, CVE-2024-50237, CVE-2024-50035, CVE-2024-49941,\nCVE-2024-49947, CVE-2024-50289, CVE-2024-49949, CVE-2024-50023,\nCVE-2024-50139, CVE-2024-49886, CVE-2024-50026, CVE-2024-56748,\nCVE-2024-53080, CVE-2024-56754, CVE-2024-49999, CVE-2024-49963,\nCVE-2024-49855, CVE-2024-50252, CVE-2024-49975, CVE-2024-50107,\nCVE-2024-56749, CVE-2024-49928, CVE-2024-49865, CVE-2024-50125,\nCVE-2024-49899, CVE-2024-47750, CVE-2024-53152, CVE-2024-50081,\nCVE-2024-49891, CVE-2024-49927, CVE-2024-49852, CVE-2024-50085,\nCVE-2024-50185, CVE-2024-50205, CVE-2024-49896, CVE-2024-50278,\nCVE-2024-49866, CVE-2024-53190, CVE-2024-50251, CVE-2024-50269,\nCVE-2024-49889, CVE-2024-50037, CVE-2024-53144, CVE-2024-53138,\nCVE-2024-50087, CVE-2024-56678, CVE-2024-53087, CVE-2024-50180,\nCVE-2024-49940, CVE-2024-50019, CVE-2024-53149, CVE-2024-50122,\nCVE-2024-50038, CVE-2024-53156, CVE-2024-49943, CVE-2024-50113,\nCVE-2024-47721, CVE-2024-53076, CVE-2024-50115, CVE-2024-50178,\nCVE-2024-50268, CVE-2024-50279, CVE-2024-53134, CVE-2024-50199,\nCVE-2024-49989, CVE-2024-47671, CVE-2024-49909, CVE-2024-53173,\nCVE-2024-53053, CVE-2024-53088, CVE-2024-50078, CVE-2024-50105,\nCVE-2024-50223, CVE-2024-50126, CVE-2024-47680, CVE-2024-47724,\nCVE-2024-53047, CVE-2024-50060, CVE-2024-53056, CVE-2024-49987,\nCVE-2024-49879, CVE-2024-53128, CVE-2024-53123, CVE-2024-49981,\nCVE-2024-50277, CVE-2024-50166, CVE-2024-53067, CVE-2024-49964,\nCVE-2024-56728, CVE-2024-49853, CVE-2024-53064, CVE-2024-56531,\nCVE-2024-53213, CVE-2024-50246, CVE-2024-50192, CVE-2024-53184,\nCVE-2024-56697, CVE-2024-47710, CVE-2024-53052, CVE-2024-47718,\nCVE-2024-49938, CVE-2024-49893, CVE-2024-53133, CVE-2024-50096,\nCVE-2024-53129, CVE-2024-49951, CVE-2024-53181, CVE-2024-50059,\nCVE-2024-50193, CVE-2024-53120, CVE-2024-50114, CVE-2024-49962,\nCVE-2024-49921, CVE-2024-50298, CVE-2024-50255, CVE-2024-53219,\nCVE-2024-49905, CVE-2024-50211, CVE-2024-49860, CVE-2024-47727,\nCVE-2024-50028, CVE-2024-47723, CVE-2024-53081, CVE-2024-56683,\nCVE-2024-49897, CVE-2024-50065, CVE-2024-56708, CVE-2024-50151,\nCVE-2023-52917, CVE-2024-56538, CVE-2024-47691, CVE-2024-53196,\nCVE-2024-50150, CVE-2024-50069, CVE-2024-50301, CVE-2024-50131,\nCVE-2024-53110, CVE-2024-56701, CVE-2024-53115, CVE-2024-53062,\nCVE-2024-50058, CVE-2024-53148, CVE-2024-53147, CVE-2024-50226,\nCVE-2024-56540, CVE-2024-53124, CVE-2024-50170, CVE-2024-50266,\nCVE-2024-50296, CVE-2024-49953, CVE-2024-47692, CVE-2024-49916,\nCVE-2024-53239, CVE-2024-50173, CVE-2024-49868, CVE-2024-47677,\nCVE-2024-49972, CVE-2024-50130, CVE-2024-56698, CVE-2024-50231,\nCVE-2024-50272, CVE-2024-53153, CVE-2024-50158, CVE-2024-53046,\nCVE-2024-49908, CVE-2024-47709, CVE-2024-53058, CVE-2024-50006,\nCVE-2024-49948, CVE-2024-47685, CVE-2024-47693, CVE-2024-50260,\nCVE-2024-50079, CVE-2024-50149, CVE-2024-53151, CVE-2024-47757,\nCVE-2024-49917, CVE-2024-50288, CVE-2024-50117, CVE-2024-50039,\nCVE-2024-56690, CVE-2024-50293, CVE-2024-50145, CVE-2024-53166,\nCVE-2024-47713, CVE-2024-53158, CVE-2024-50068, CVE-2024-53074,\nCVE-2024-49914, CVE-2024-49870, CVE-2024-50031, CVE-2024-47735,\nCVE-2024-50007, CVE-2024-49915, CVE-2024-47699, CVE-2024-50244,\nCVE-2024-50216, CVE-2024-53114, CVE-2024-53043, CVE-2024-47688,\nCVE-2024-47734, CVE-2024-53230, CVE-2024-53122, CVE-2024-50123,\nCVE-2024-53116, CVE-2024-56726, CVE-2024-56747, CVE-2024-56548,\nCVE-2024-50174, CVE-2024-53042, CVE-2024-53135, CVE-2024-50080,\nCVE-2024-49997, CVE-2024-49974, CVE-2024-53145, CVE-2024-53075,\nCVE-2024-47730, CVE-2024-50304, CVE-2024-50161, CVE-2024-49883,\nCVE-2024-53111, CVE-2024-53233, CVE-2024-47698, CVE-2024-50012,\nCVE-2024-50240, CVE-2024-53163, CVE-2024-53071, CVE-2024-50168,\nCVE-2024-47740, CVE-2024-50275, CVE-2024-49961, CVE-2024-50183,\nCVE-2024-53203, CVE-2024-47738, CVE-2024-49856, CVE-2024-50014,\nCVE-2024-50191, CVE-2024-46869, CVE-2024-56721, CVE-2024-50056,\nCVE-2024-53210, CVE-2024-49978, CVE-2024-53161, CVE-2024-50155,\nCVE-2024-50270, CVE-2024-50169, CVE-2024-49952, CVE-2024-50236,\nCVE-2024-49863, CVE-2024-49857, CVE-2024-53140, CVE-2024-53107,\nCVE-2024-50247, CVE-2024-53084, CVE-2024-50077, CVE-2024-50121,\nCVE-2024-53091, CVE-2024-49925, CVE-2024-47745, CVE-2024-50086,\nCVE-2024-53101, CVE-2024-56729, CVE-2024-56751, CVE-2024-50016,\nCVE-2024-49901, CVE-2024-47694, CVE-2024-53098, CVE-2024-53232,\nCVE-2024-50108, CVE-2024-50197, CVE-2024-50242, CVE-2024-50222,\nCVE-2024-53132, CVE-2024-50212, CVE-2024-49933, CVE-2024-53169,\nCVE-2024-49957, CVE-2024-56533, CVE-2024-47708, CVE-2024-50267,\nCVE-2024-56723, CVE-2024-50110, CVE-2024-50064, CVE-2024-56722,\nCVE-2024-53130, CVE-2024-53208, CVE-2024-50102, CVE-2024-50153,\nCVE-2024-49939, CVE-2024-53094, CVE-2024-50262, CVE-2024-49850,\nCVE-2024-53195, CVE-2024-53170, CVE-2024-50093, CVE-2024-53223,\nCVE-2024-53093, CVE-2024-56699, CVE-2024-50070, CVE-2024-49992,\nCVE-2024-50111, CVE-2024-47728, CVE-2024-53202, CVE-2024-47741,\nCVE-2024-49920, CVE-2024-56694, CVE-2024-53126, CVE-2024-49851,\nCVE-2024-50099, CVE-2024-50302, CVE-2024-50214, CVE-2024-49973,\nCVE-2024-50024, CVE-2024-50162, CVE-2024-53214, CVE-2024-50073,\nCVE-2024-50061, CVE-2024-56549, CVE-2024-56688, CVE-2024-49960,\nCVE-2024-56543, CVE-2024-53178, CVE-2024-50027, CVE-2024-50295,\nCVE-2024-53104, CVE-2024-53065, CVE-2024-47747, CVE-2024-49991,\nCVE-2024-50202, CVE-2024-49935, CVE-2024-50062, CVE-2024-50094,\nCVE-2024-56544, CVE-2024-50010, CVE-2024-49971, CVE-2024-50083,\nCVE-2024-56687, CVE-2024-47753, CVE-2024-50297, CVE-2024-47733,\nCVE-2024-50135, CVE-2024-50066, CVE-2024-50118, CVE-2024-56746,\nCVE-2024-47682, CVE-2024-53165, CVE-2024-50025, CVE-2024-49875,\nCVE-2024-47717, CVE-2024-49894, CVE-2024-50198, CVE-2024-50167,\nCVE-2024-49958, CVE-2024-49966, CVE-2024-50254, CVE-2024-49904,\nCVE-2024-50041, CVE-2024-50005, CVE-2024-53066, CVE-2024-50000,\nCVE-2024-50215, CVE-2024-47748, CVE-2024-56742, CVE-2024-50259,\nCVE-2024-50092, CVE-2024-47737, CVE-2024-53238, CVE-2024-50300,\nCVE-2024-53192, CVE-2024-47696, CVE-2024-50134, CVE-2024-50201,\nCVE-2024-50181, CVE-2024-49873, CVE-2024-50187, CVE-2024-53171,\nCVE-2024-50160, CVE-2024-49923, CVE-2024-50063, CVE-2024-53174,\nCVE-2024-50143, CVE-2024-49982, CVE-2024-56546, CVE-2024-50109,\nCVE-2024-53119, CVE-2024-47707, CVE-2024-56696, CVE-2024-53108,\nCVE-2024-47731, CVE-2024-50261, CVE-2024-50042, CVE-2024-49884,\nCVE-2024-53162, CVE-2024-56755, CVE-2024-49919, CVE-2024-53216,\nCVE-2024-50287, CVE-2024-53143, CVE-2024-50257, CVE-2024-49890,\nCVE-2024-53172, CVE-2024-53209, CVE-2024-49956, CVE-2024-50238,\nCVE-2024-49955, CVE-2024-50046, CVE-2024-50098, CVE-2024-50232,\nCVE-2024-50292, CVE-2024-56752, CVE-2024-50195, CVE-2024-47743,\nCVE-2024-53044, CVE-2024-50049, CVE-2024-49986, CVE-2024-53055,\nCVE-2024-56539, CVE-2024-50048, CVE-2024-49985, CVE-2024-53227,\nCVE-2024-49970, CVE-2024-47702, CVE-2024-49874, CVE-2024-47703,\nCVE-2024-53139, CVE-2024-50072, CVE-2024-53224, CVE-2024-49877,\nCVE-2024-49922, CVE-2024-50290, CVE-2024-47756, CVE-2024-50221,\nCVE-2024-50057, CVE-2022-49034, CVE-2024-53157, CVE-2024-47749,\nCVE-2024-53231)\n",
"id": "USN-7277-1",
"modified": "2025-02-19T16:34:05.394270Z",
"published": "2025-02-19T16:34:05.394270Z",
"references": [
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-7277-1"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2022-49034"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-46869"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47671"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47675"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47676"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47677"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47678"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47679"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47680"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47681"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47682"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47684"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47685"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47686"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47687"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47688"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47689"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47690"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47691"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47692"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47693"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47694"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47695"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47696"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47697"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47698"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47699"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47700"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47701"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47702"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47703"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47704"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47705"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47706"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47707"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47708"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47709"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47710"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47711"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47712"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47713"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47714"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47715"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47716"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47717"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47718"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47719"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47720"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47721"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47723"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47724"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47726"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47727"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47728"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47730"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47731"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47732"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47733"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47734"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47735"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47736"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47737"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47738"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47739"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47740"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47741"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47742"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47743"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47744"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47745"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47746"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47747"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47748"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47749"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47750"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47751"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47752"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47753"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47754"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47756"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-47757"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49850"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49851"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49852"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49853"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49855"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49856"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49857"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49858"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49859"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49860"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49861"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49862"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49863"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49864"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49865"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49866"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49867"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49868"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49869"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49870"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49871"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49872"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49873"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49874"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49875"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49876"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49877"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49878"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49879"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49880"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49881"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49882"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49883"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49884"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49885"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49886"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49887"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49888"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49889"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49890"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49891"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49892"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49893"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49894"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49895"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49896"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49897"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49898"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49899"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49900"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49901"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49902"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49903"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49904"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49905"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49906"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49907"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49908"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49909"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49910"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49911"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49912"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49913"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49914"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49915"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49916"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49917"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49918"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49919"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49920"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49921"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49922"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49923"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49924"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49925"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49926"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49927"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49928"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49929"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49930"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49931"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49932"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49933"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49934"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49935"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49936"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49937"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49938"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49939"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49940"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49941"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49942"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49943"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49944"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49945"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49946"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49947"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49948"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49949"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49950"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49951"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49952"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49953"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49954"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49955"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49956"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49957"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49958"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49959"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49960"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49961"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49962"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49963"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49964"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49965"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49966"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49968"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49969"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49970"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49971"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49972"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49973"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49974"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49975"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49976"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49977"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49978"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49979"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49980"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49981"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49982"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49983"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49985"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49986"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49987"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49988"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49989"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49991"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49992"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49994"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49995"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49996"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49997"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49998"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-49999"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50000"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50001"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50002"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50003"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50005"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50006"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50007"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50008"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50009"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50010"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50011"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50012"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50013"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50014"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50015"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50017"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50019"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50020"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50021"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50022"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50023"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50024"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50025"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50026"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50027"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50028"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50029"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50030"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50031"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50033"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50034"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50035"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50036"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50037"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50038"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50039"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50040"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50041"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50042"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50043"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50044"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50045"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50046"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50047"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50048"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50049"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50055"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50056"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50057"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50058"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50059"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50060"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50061"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50062"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50063"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50064"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50065"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50066"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50067"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50068"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50069"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50070"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50071"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50072"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50073"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50074"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50075"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50076"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50077"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50078"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50079"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50080"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50081"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50082"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50083"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50084"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50085"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50086"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50087"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50088"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50090"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50091"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50092"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50093"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50094"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50095"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50096"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50098"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50099"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50100"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50101"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50102"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50103"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50104"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50105"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50106"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50107"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50108"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50109"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50110"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50111"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50112"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50113"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50114"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50115"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50116"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50117"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50118"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50119"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50120"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50121"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50122"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50123"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50124"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50125"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50126"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50127"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50128"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50129"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50130"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50131"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50132"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50133"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50134"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50135"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50136"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50137"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50138"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50139"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50140"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50141"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50142"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50143"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50144"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50145"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50146"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50147"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50148"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50149"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50150"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50151"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50152"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50153"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50154"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50155"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50156"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50157"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50158"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50159"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50160"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50161"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50162"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50163"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50164"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50165"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50166"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50167"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50168"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50169"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50170"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50171"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50172"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50173"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50174"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50176"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50177"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50178"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50179"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50180"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50182"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50183"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50184"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50185"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50186"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50187"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50188"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50189"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50190"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50191"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50192"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50193"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50194"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50195"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50196"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50197"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50198"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50199"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50200"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50201"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50202"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50203"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50204"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50205"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50206"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50207"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50208"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50209"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50211"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50212"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50213"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50214"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50215"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50216"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50217"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50218"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50220"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50221"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50222"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50223"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50224"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50225"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50226"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50227"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50229"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50230"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50231"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50232"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50233"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50234"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50235"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50236"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50237"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50238"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50239"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50240"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50242"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50243"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50244"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50245"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50246"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50247"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50248"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50249"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50250"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50251"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50252"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50253"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50254"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50255"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50256"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50257"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50258"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50259"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50260"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50261"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50262"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50263"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50265"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50266"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50267"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50268"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50269"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50270"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50271"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50272"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50273"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50274"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50275"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50276"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50277"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50278"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50279"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50280"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50281"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50282"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50283"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50284"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50285"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50286"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50287"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50288"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50289"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50290"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50291"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50292"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50293"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50294"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50295"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50296"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50297"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50298"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50299"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50300"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50301"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50302"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50303"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-50304"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53042"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53043"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53044"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53045"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53046"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53047"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53048"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53049"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53052"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53053"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53055"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53056"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53058"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53059"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53061"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53062"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53063"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53064"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53065"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53066"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53067"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53068"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53069"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53071"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53072"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53074"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53075"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53076"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53077"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53078"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53079"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53080"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53081"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53082"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53083"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53084"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53085"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53086"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53087"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53088"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53089"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53090"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53091"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53092"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53093"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53094"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53095"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53098"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53099"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53100"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53101"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53104"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53105"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53106"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53107"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53108"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53109"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53110"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53111"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53112"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53113"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53114"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53115"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53116"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53117"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53118"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53119"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53120"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53121"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53122"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53123"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53124"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53125"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53126"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53127"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53128"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53129"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53130"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53131"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53132"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53133"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53134"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53135"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53137"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53138"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53139"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53140"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53141"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53142"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53143"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53144"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53145"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53146"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53147"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53148"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53149"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53150"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53151"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53152"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53153"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53154"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53155"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53156"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53157"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53158"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53160"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53161"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53162"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53163"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53165"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53166"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53167"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53168"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53169"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53170"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53171"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53172"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53173"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53174"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53175"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53176"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53177"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53178"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53180"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53181"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53183"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53184"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53187"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53188"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53189"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53190"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53191"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53192"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53193"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53194"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53195"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53196"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53197"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53198"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53199"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53200"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53202"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53203"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53208"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53209"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53210"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53212"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53213"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53214"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53215"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53216"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53217"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53218"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53219"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53220"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53221"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53223"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53224"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53226"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53227"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53228"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53229"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53230"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53231"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53232"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53233"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53234"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53236"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53237"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53238"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-53239"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56531"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56532"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56533"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56534"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56535"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56536"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56537"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56538"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56539"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56540"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56541"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56543"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56544"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56545"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56546"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56548"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56549"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56674"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56677"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56678"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56679"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56680"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56681"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56683"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56684"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56685"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56687"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56688"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56689"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56690"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56691"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56692"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56693"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56694"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56696"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56697"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56698"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56699"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56700"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56701"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56702"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56703"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56704"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56705"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56707"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56708"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56720"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56721"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56722"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56723"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56724"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56725"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56726"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56727"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56728"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56729"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56739"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56742"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56744"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56745"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56746"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56747"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56748"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56749"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56751"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56752"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56754"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56755"
},
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2024-56756"
}
],
"related": [
"CVE-2022-49034",
"UBUNTU-CVE-2022-49034",
"CVE-2024-46869",
"UBUNTU-CVE-2024-46869",
"CVE-2024-47671",
"UBUNTU-CVE-2024-47671",
"CVE-2024-47675",
"UBUNTU-CVE-2024-47675",
"CVE-2024-47676",
"UBUNTU-CVE-2024-47676",
"CVE-2024-47677",
"UBUNTU-CVE-2024-47677",
"CVE-2024-47678",
"UBUNTU-CVE-2024-47678",
"CVE-2024-47679",
"UBUNTU-CVE-2024-47679",
"CVE-2024-47680",
"UBUNTU-CVE-2024-47680",
"CVE-2024-47681",
"UBUNTU-CVE-2024-47681",
"CVE-2024-47682",
"UBUNTU-CVE-2024-47682",
"CVE-2024-47684",
"UBUNTU-CVE-2024-47684",
"CVE-2024-47685",
"UBUNTU-CVE-2024-47685",
"CVE-2024-47686",
"UBUNTU-CVE-2024-47686",
"CVE-2024-47687",
"UBUNTU-CVE-2024-47687",
"CVE-2024-47688",
"UBUNTU-CVE-2024-47688",
"CVE-2024-47689",
"UBUNTU-CVE-2024-47689",
"CVE-2024-47690",
"UBUNTU-CVE-2024-47690",
"CVE-2024-47691",
"UBUNTU-CVE-2024-47691",
"CVE-2024-47692",
"UBUNTU-CVE-2024-47692",
"CVE-2024-47693",
"UBUNTU-CVE-2024-47693",
"CVE-2024-47694",
"UBUNTU-CVE-2024-47694",
"CVE-2024-47695",
"UBUNTU-CVE-2024-47695",
"CVE-2024-47696",
"UBUNTU-CVE-2024-47696",
"CVE-2024-47697",
"UBUNTU-CVE-2024-47697",
"CVE-2024-47698",
"UBUNTU-CVE-2024-47698",
"CVE-2024-47699",
"UBUNTU-CVE-2024-47699",
"CVE-2024-47700",
"UBUNTU-CVE-2024-47700",
"CVE-2024-47701",
"UBUNTU-CVE-2024-47701",
"CVE-2024-47702",
"UBUNTU-CVE-2024-47702",
"CVE-2024-47703",
"UBUNTU-CVE-2024-47703",
"CVE-2024-47704",
"UBUNTU-CVE-2024-47704",
"CVE-2024-47705",
"UBUNTU-CVE-2024-47705",
"CVE-2024-47706",
"UBUNTU-CVE-2024-47706",
"CVE-2024-47707",
"UBUNTU-CVE-2024-47707",
"CVE-2024-47708",
"UBUNTU-CVE-2024-47708",
"CVE-2024-47709",
"UBUNTU-CVE-2024-47709",
"CVE-2024-47710",
"UBUNTU-CVE-2024-47710",
"CVE-2024-47711",
"UBUNTU-CVE-2024-47711",
"CVE-2024-47712",
"UBUNTU-CVE-2024-47712",
"CVE-2024-47713",
"UBUNTU-CVE-2024-47713",
"CVE-2024-47714",
"UBUNTU-CVE-2024-47714",
"CVE-2024-47715",
"UBUNTU-CVE-2024-47715",
"CVE-2024-47716",
"UBUNTU-CVE-2024-47716",
"CVE-2024-47717",
"UBUNTU-CVE-2024-47717",
"CVE-2024-47718",
"UBUNTU-CVE-2024-47718",
"CVE-2024-47719",
"UBUNTU-CVE-2024-47719",
"CVE-2024-47720",
"UBUNTU-CVE-2024-47720",
"CVE-2024-47721",
"UBUNTU-CVE-2024-47721",
"CVE-2024-47723",
"UBUNTU-CVE-2024-47723",
"CVE-2024-47724",
"UBUNTU-CVE-2024-47724",
"CVE-2024-47726",
"UBUNTU-CVE-2024-47726",
"CVE-2024-47727",
"UBUNTU-CVE-2024-47727",
"CVE-2024-47728",
"UBUNTU-CVE-2024-47728",
"CVE-2024-47730",
"UBUNTU-CVE-2024-47730",
"CVE-2024-47731",
"UBUNTU-CVE-2024-47731",
"CVE-2024-47732",
"UBUNTU-CVE-2024-47732",
"CVE-2024-47733",
"UBUNTU-CVE-2024-47733",
"CVE-2024-47734",
"UBUNTU-CVE-2024-47734",
"CVE-2024-47735",
"UBUNTU-CVE-2024-47735",
"CVE-2024-47736",
"UBUNTU-CVE-2024-47736",
"CVE-2024-47737",
"UBUNTU-CVE-2024-47737",
"CVE-2024-47738",
"UBUNTU-CVE-2024-47738",
"CVE-2024-47739",
"UBUNTU-CVE-2024-47739",
"CVE-2024-47740",
"UBUNTU-CVE-2024-47740",
"CVE-2024-47741",
"UBUNTU-CVE-2024-47741",
"CVE-2024-47742",
"UBUNTU-CVE-2024-47742",
"CVE-2024-47743",
"UBUNTU-CVE-2024-47743",
"CVE-2024-47744",
"UBUNTU-CVE-2024-47744",
"CVE-2024-47745",
"UBUNTU-CVE-2024-47745",
"CVE-2024-47746",
"UBUNTU-CVE-2024-47746",
"CVE-2024-47747",
"UBUNTU-CVE-2024-47747",
"CVE-2024-47748",
"UBUNTU-CVE-2024-47748",
"CVE-2024-47749",
"UBUNTU-CVE-2024-47749",
"CVE-2024-47750",
"UBUNTU-CVE-2024-47750",
"CVE-2024-47751",
"UBUNTU-CVE-2024-47751",
"CVE-2024-47752",
"UBUNTU-CVE-2024-47752",
"CVE-2024-47753",
"UBUNTU-CVE-2024-47753",
"CVE-2024-47754",
"UBUNTU-CVE-2024-47754",
"CVE-2024-47756",
"UBUNTU-CVE-2024-47756",
"CVE-2024-47757",
"UBUNTU-CVE-2024-47757",
"CVE-2024-49850",
"UBUNTU-CVE-2024-49850",
"CVE-2024-49851",
"UBUNTU-CVE-2024-49851",
"CVE-2024-49852",
"UBUNTU-CVE-2024-49852",
"CVE-2024-49853",
"UBUNTU-CVE-2024-49853",
"CVE-2024-49855",
"UBUNTU-CVE-2024-49855",
"CVE-2024-49856",
"UBUNTU-CVE-2024-49856",
"CVE-2024-49857",
"UBUNTU-CVE-2024-49857",
"CVE-2024-49858",
"UBUNTU-CVE-2024-49858",
"CVE-2024-49859",
"UBUNTU-CVE-2024-49859",
"CVE-2024-49860",
"UBUNTU-CVE-2024-49860",
"CVE-2024-49861",
"UBUNTU-CVE-2024-49861",
"CVE-2024-49862",
"UBUNTU-CVE-2024-49862",
"CVE-2024-49863",
"UBUNTU-CVE-2024-49863",
"CVE-2024-49864",
"UBUNTU-CVE-2024-49864",
"CVE-2024-49865",
"UBUNTU-CVE-2024-49865",
"CVE-2024-49866",
"UBUNTU-CVE-2024-49866",
"CVE-2024-49867",
"UBUNTU-CVE-2024-49867",
"CVE-2024-49868",
"UBUNTU-CVE-2024-49868",
"CVE-2024-49869",
"UBUNTU-CVE-2024-49869",
"CVE-2024-49870",
"UBUNTU-CVE-2024-49870",
"CVE-2024-49871",
"UBUNTU-CVE-2024-49871",
"CVE-2024-49872",
"UBUNTU-CVE-2024-49872",
"CVE-2024-49873",
"UBUNTU-CVE-2024-49873",
"CVE-2024-49874",
"UBUNTU-CVE-2024-49874",
"CVE-2024-49875",
"UBUNTU-CVE-2024-49875",
"CVE-2024-49876",
"UBUNTU-CVE-2024-49876",
"CVE-2024-49877",
"UBUNTU-CVE-2024-49877",
"CVE-2024-49878",
"UBUNTU-CVE-2024-49878",
"CVE-2024-49879",
"UBUNTU-CVE-2024-49879",
"CVE-2024-49880",
"UBUNTU-CVE-2024-49880",
"CVE-2024-49881",
"UBUNTU-CVE-2024-49881",
"CVE-2024-49882",
"UBUNTU-CVE-2024-49882",
"CVE-2024-49883",
"UBUNTU-CVE-2024-49883",
"CVE-2024-49884",
"UBUNTU-CVE-2024-49884",
"CVE-2024-49885",
"UBUNTU-CVE-2024-49885",
"CVE-2024-49886",
"UBUNTU-CVE-2024-49886",
"CVE-2024-49887",
"UBUNTU-CVE-2024-49887",
"CVE-2024-49888",
"UBUNTU-CVE-2024-49888",
"CVE-2024-49889",
"UBUNTU-CVE-2024-49889",
"CVE-2024-49890",
"UBUNTU-CVE-2024-49890",
"CVE-2024-49891",
"UBUNTU-CVE-2024-49891",
"CVE-2024-49892",
"UBUNTU-CVE-2024-49892",
"CVE-2024-49893",
"UBUNTU-CVE-2024-49893",
"CVE-2024-49894",
"UBUNTU-CVE-2024-49894",
"CVE-2024-49895",
"UBUNTU-CVE-2024-49895",
"CVE-2024-49896",
"UBUNTU-CVE-2024-49896",
"CVE-2024-49897",
"UBUNTU-CVE-2024-49897",
"CVE-2024-49898",
"UBUNTU-CVE-2024-49898",
"CVE-2024-49899",
"UBUNTU-CVE-2024-49899",
"CVE-2024-49900",
"UBUNTU-CVE-2024-49900",
"CVE-2024-49901",
"UBUNTU-CVE-2024-49901",
"CVE-2024-49902",
"UBUNTU-CVE-2024-49902",
"CVE-2024-49903",
"UBUNTU-CVE-2024-49903",
"CVE-2024-49904",
"UBUNTU-CVE-2024-49904",
"CVE-2024-49905",
"UBUNTU-CVE-2024-49905",
"CVE-2024-49906",
"UBUNTU-CVE-2024-49906",
"CVE-2024-49907",
"UBUNTU-CVE-2024-49907",
"CVE-2024-49908",
"UBUNTU-CVE-2024-49908",
"CVE-2024-49909",
"UBUNTU-CVE-2024-49909",
"CVE-2024-49910",
"UBUNTU-CVE-2024-49910",
"CVE-2024-49911",
"UBUNTU-CVE-2024-49911",
"CVE-2024-49912",
"UBUNTU-CVE-2024-49912",
"CVE-2024-49913",
"UBUNTU-CVE-2024-49913",
"CVE-2024-49914",
"UBUNTU-CVE-2024-49914",
"CVE-2024-49915",
"UBUNTU-CVE-2024-49915",
"CVE-2024-49916",
"UBUNTU-CVE-2024-49916",
"CVE-2024-49917",
"UBUNTU-CVE-2024-49917",
"CVE-2024-49918",
"UBUNTU-CVE-2024-49918",
"CVE-2024-49919",
"UBUNTU-CVE-2024-49919",
"CVE-2024-49920",
"UBUNTU-CVE-2024-49920",
"CVE-2024-49921",
"UBUNTU-CVE-2024-49921",
"CVE-2024-49922",
"UBUNTU-CVE-2024-49922",
"CVE-2024-49923",
"UBUNTU-CVE-2024-49923",
"CVE-2024-49924",
"UBUNTU-CVE-2024-49924",
"CVE-2024-49925",
"UBUNTU-CVE-2024-49925",
"CVE-2024-49926",
"UBUNTU-CVE-2024-49926",
"CVE-2024-49927",
"UBUNTU-CVE-2024-49927",
"CVE-2024-49928",
"UBUNTU-CVE-2024-49928",
"CVE-2024-49929",
"UBUNTU-CVE-2024-49929",
"CVE-2024-49930",
"UBUNTU-CVE-2024-49930",
"CVE-2024-49931",
"UBUNTU-CVE-2024-49931",
"CVE-2024-49932",
"UBUNTU-CVE-2024-49932",
"CVE-2024-49933",
"UBUNTU-CVE-2024-49933",
"CVE-2024-49934",
"UBUNTU-CVE-2024-49934",
"CVE-2024-49935",
"UBUNTU-CVE-2024-49935",
"CVE-2024-49936",
"UBUNTU-CVE-2024-49936",
"CVE-2024-49937",
"UBUNTU-CVE-2024-49937",
"CVE-2024-49938",
"UBUNTU-CVE-2024-49938",
"CVE-2024-49939",
"UBUNTU-CVE-2024-49939",
"CVE-2024-49940",
"UBUNTU-CVE-2024-49940",
"CVE-2024-49941",
"UBUNTU-CVE-2024-49941",
"CVE-2024-49942",
"UBUNTU-CVE-2024-49942",
"CVE-2024-49943",
"UBUNTU-CVE-2024-49943",
"CVE-2024-49944",
"UBUNTU-CVE-2024-49944",
"CVE-2024-49945",
"UBUNTU-CVE-2024-49945",
"CVE-2024-49946",
"UBUNTU-CVE-2024-49946",
"CVE-2024-49947",
"UBUNTU-CVE-2024-49947",
"CVE-2024-49948",
"UBUNTU-CVE-2024-49948",
"CVE-2024-49949",
"UBUNTU-CVE-2024-49949",
"CVE-2024-49950",
"UBUNTU-CVE-2024-49950",
"CVE-2024-49951",
"UBUNTU-CVE-2024-49951",
"CVE-2024-49952",
"UBUNTU-CVE-2024-49952",
"CVE-2024-49953",
"UBUNTU-CVE-2024-49953",
"CVE-2024-49954",
"UBUNTU-CVE-2024-49954",
"CVE-2024-49955",
"UBUNTU-CVE-2024-49955",
"CVE-2024-49956",
"UBUNTU-CVE-2024-49956",
"CVE-2024-49957",
"UBUNTU-CVE-2024-49957",
"CVE-2024-49958",
"UBUNTU-CVE-2024-49958",
"CVE-2024-49959",
"UBUNTU-CVE-2024-49959",
"CVE-2024-49960",
"UBUNTU-CVE-2024-49960",
"CVE-2024-49961",
"UBUNTU-CVE-2024-49961",
"CVE-2024-49962",
"UBUNTU-CVE-2024-49962",
"CVE-2024-49963",
"UBUNTU-CVE-2024-49963",
"CVE-2024-49964",
"UBUNTU-CVE-2024-49964",
"CVE-2024-49965",
"UBUNTU-CVE-2024-49965",
"CVE-2024-49966",
"UBUNTU-CVE-2024-49966",
"CVE-2024-49968",
"UBUNTU-CVE-2024-49968",
"CVE-2024-49969",
"UBUNTU-CVE-2024-49969",
"CVE-2024-49970",
"UBUNTU-CVE-2024-49970",
"CVE-2024-49971",
"UBUNTU-CVE-2024-49971",
"CVE-2024-49972",
"UBUNTU-CVE-2024-49972",
"CVE-2024-49973",
"UBUNTU-CVE-2024-49973",
"CVE-2024-49974",
"UBUNTU-CVE-2024-49974",
"CVE-2024-49975",
"UBUNTU-CVE-2024-49975",
"CVE-2024-49976",
"UBUNTU-CVE-2024-49976",
"CVE-2024-49977",
"UBUNTU-CVE-2024-49977",
"CVE-2024-49978",
"UBUNTU-CVE-2024-49978",
"CVE-2024-49979",
"UBUNTU-CVE-2024-49979",
"CVE-2024-49980",
"UBUNTU-CVE-2024-49980",
"CVE-2024-49981",
"UBUNTU-CVE-2024-49981",
"CVE-2024-49982",
"UBUNTU-CVE-2024-49982",
"CVE-2024-49983",
"UBUNTU-CVE-2024-49983",
"CVE-2024-49985",
"UBUNTU-CVE-2024-49985",
"CVE-2024-49986",
"UBUNTU-CVE-2024-49986",
"CVE-2024-49987",
"UBUNTU-CVE-2024-49987",
"CVE-2024-49988",
"UBUNTU-CVE-2024-49988",
"CVE-2024-49989",
"UBUNTU-CVE-2024-49989",
"CVE-2024-49991",
"UBUNTU-CVE-2024-49991",
"CVE-2024-49992",
"UBUNTU-CVE-2024-49992",
"CVE-2024-49994",
"UBUNTU-CVE-2024-49994",
"CVE-2024-49995",
"UBUNTU-CVE-2024-49995",
"CVE-2024-49996",
"UBUNTU-CVE-2024-49996",
"CVE-2024-49997",
"UBUNTU-CVE-2024-49997",
"CVE-2024-49998",
"UBUNTU-CVE-2024-49998",
"CVE-2024-49999",
"UBUNTU-CVE-2024-49999",
"CVE-2024-50000",
"UBUNTU-CVE-2024-50000",
"CVE-2024-50001",
"UBUNTU-CVE-2024-50001",
"CVE-2024-50002",
"UBUNTU-CVE-2024-50002",
"CVE-2024-50003",
"UBUNTU-CVE-2024-50003",
"CVE-2024-50005",
"UBUNTU-CVE-2024-50005",
"CVE-2024-50006",
"UBUNTU-CVE-2024-50006",
"CVE-2024-50007",
"UBUNTU-CVE-2024-50007",
"CVE-2024-50008",
"UBUNTU-CVE-2024-50008",
"CVE-2024-50009",
"UBUNTU-CVE-2024-50009",
"CVE-2024-50010",
"UBUNTU-CVE-2024-50010",
"CVE-2024-50011",
"UBUNTU-CVE-2024-50011",
"CVE-2024-50012",
"UBUNTU-CVE-2024-50012",
"CVE-2024-50013",
"UBUNTU-CVE-2024-50013",
"CVE-2024-50014",
"UBUNTU-CVE-2024-50014",
"CVE-2024-50015",
"UBUNTU-CVE-2024-50015",
"CVE-2024-50017",
"UBUNTU-CVE-2024-50017",
"CVE-2024-50019",
"UBUNTU-CVE-2024-50019",
"CVE-2024-50020",
"UBUNTU-CVE-2024-50020",
"CVE-2024-50021",
"UBUNTU-CVE-2024-50021",
"CVE-2024-50022",
"UBUNTU-CVE-2024-50022",
"CVE-2024-50023",
"UBUNTU-CVE-2024-50023",
"CVE-2024-50024",
"UBUNTU-CVE-2024-50024",
"CVE-2024-50025",
"UBUNTU-CVE-2024-50025",
"CVE-2024-50026",
"UBUNTU-CVE-2024-50026",
"CVE-2024-50027",
"UBUNTU-CVE-2024-50027",
"CVE-2024-50028",
"UBUNTU-CVE-2024-50028",
"CVE-2024-50029",
"UBUNTU-CVE-2024-50029",
"CVE-2024-50030",
"UBUNTU-CVE-2024-50030",
"CVE-2024-50031",
"UBUNTU-CVE-2024-50031",
"CVE-2024-50033",
"UBUNTU-CVE-2024-50033",
"CVE-2024-50034",
"UBUNTU-CVE-2024-50034",
"CVE-2024-50035",
"UBUNTU-CVE-2024-50035",
"CVE-2024-50036",
"UBUNTU-CVE-2024-50036",
"CVE-2024-50037",
"UBUNTU-CVE-2024-50037",
"CVE-2024-50038",
"UBUNTU-CVE-2024-50038",
"CVE-2024-50039",
"UBUNTU-CVE-2024-50039",
"CVE-2024-50040",
"UBUNTU-CVE-2024-50040",
"CVE-2024-50041",
"UBUNTU-CVE-2024-50041",
"CVE-2024-50042",
"UBUNTU-CVE-2024-50042",
"CVE-2024-50043",
"UBUNTU-CVE-2024-50043",
"CVE-2024-50044",
"UBUNTU-CVE-2024-50044",
"CVE-2024-50045",
"UBUNTU-CVE-2024-50045",
"CVE-2024-50046",
"UBUNTU-CVE-2024-50046",
"CVE-2024-50047",
"UBUNTU-CVE-2024-50047",
"CVE-2024-50048",
"UBUNTU-CVE-2024-50048",
"CVE-2024-50049",
"UBUNTU-CVE-2024-50049",
"CVE-2024-50055",
"UBUNTU-CVE-2024-50055",
"CVE-2024-50056",
"UBUNTU-CVE-2024-50056",
"CVE-2024-50057",
"UBUNTU-CVE-2024-50057",
"CVE-2024-50058",
"UBUNTU-CVE-2024-50058",
"CVE-2024-50059",
"UBUNTU-CVE-2024-50059",
"CVE-2024-50060",
"UBUNTU-CVE-2024-50060",
"CVE-2024-50061",
"UBUNTU-CVE-2024-50061",
"CVE-2024-50062",
"UBUNTU-CVE-2024-50062",
"CVE-2024-50063",
"UBUNTU-CVE-2024-50063",
"CVE-2024-50064",
"UBUNTU-CVE-2024-50064",
"CVE-2024-50065",
"UBUNTU-CVE-2024-50065",
"CVE-2024-50066",
"UBUNTU-CVE-2024-50066",
"CVE-2024-50067",
"UBUNTU-CVE-2024-50067",
"CVE-2024-50068",
"UBUNTU-CVE-2024-50068",
"CVE-2024-50069",
"UBUNTU-CVE-2024-50069",
"CVE-2024-50070",
"UBUNTU-CVE-2024-50070",
"CVE-2024-50071",
"UBUNTU-CVE-2024-50071",
"CVE-2024-50072",
"UBUNTU-CVE-2024-50072",
"CVE-2024-50073",
"UBUNTU-CVE-2024-50073",
"CVE-2024-50074",
"UBUNTU-CVE-2024-50074",
"CVE-2024-50075",
"UBUNTU-CVE-2024-50075",
"CVE-2024-50076",
"UBUNTU-CVE-2024-50076",
"CVE-2024-50077",
"UBUNTU-CVE-2024-50077",
"CVE-2024-50078",
"UBUNTU-CVE-2024-50078",
"CVE-2024-50079",
"UBUNTU-CVE-2024-50079",
"CVE-2024-50080",
"UBUNTU-CVE-2024-50080",
"CVE-2024-50081",
"UBUNTU-CVE-2024-50081",
"CVE-2024-50082",
"UBUNTU-CVE-2024-50082",
"CVE-2024-50083",
"UBUNTU-CVE-2024-50083",
"CVE-2024-50084",
"UBUNTU-CVE-2024-50084",
"CVE-2024-50085",
"UBUNTU-CVE-2024-50085",
"CVE-2024-50086",
"UBUNTU-CVE-2024-50086",
"CVE-2024-50087",
"UBUNTU-CVE-2024-50087",
"CVE-2024-50088",
"UBUNTU-CVE-2024-50088",
"CVE-2024-50090",
"UBUNTU-CVE-2024-50090",
"CVE-2024-50091",
"UBUNTU-CVE-2024-50091",
"CVE-2024-50092",
"UBUNTU-CVE-2024-50092",
"CVE-2024-50093",
"UBUNTU-CVE-2024-50093",
"CVE-2024-50094",
"UBUNTU-CVE-2024-50094",
"CVE-2024-50095",
"UBUNTU-CVE-2024-50095",
"CVE-2024-50096",
"UBUNTU-CVE-2024-50096",
"CVE-2024-50098",
"UBUNTU-CVE-2024-50098",
"CVE-2024-50099",
"UBUNTU-CVE-2024-50099",
"CVE-2024-50100",
"UBUNTU-CVE-2024-50100",
"CVE-2024-50101",
"UBUNTU-CVE-2024-50101",
"CVE-2024-50102",
"UBUNTU-CVE-2024-50102",
"CVE-2024-50103",
"UBUNTU-CVE-2024-50103",
"CVE-2024-50104",
"UBUNTU-CVE-2024-50104",
"CVE-2024-50105",
"UBUNTU-CVE-2024-50105",
"CVE-2024-50106",
"UBUNTU-CVE-2024-50106",
"CVE-2024-50107",
"UBUNTU-CVE-2024-50107",
"CVE-2024-50108",
"UBUNTU-CVE-2024-50108",
"CVE-2024-50109",
"UBUNTU-CVE-2024-50109",
"CVE-2024-50110",
"UBUNTU-CVE-2024-50110",
"CVE-2024-50111",
"UBUNTU-CVE-2024-50111",
"CVE-2024-50112",
"UBUNTU-CVE-2024-50112",
"CVE-2024-50113",
"UBUNTU-CVE-2024-50113",
"CVE-2024-50114",
"UBUNTU-CVE-2024-50114",
"CVE-2024-50115",
"UBUNTU-CVE-2024-50115",
"CVE-2024-50116",
"UBUNTU-CVE-2024-50116",
"CVE-2024-50117",
"UBUNTU-CVE-2024-50117",
"CVE-2024-50118",
"UBUNTU-CVE-2024-50118",
"CVE-2024-50119",
"UBUNTU-CVE-2024-50119",
"CVE-2024-50120",
"UBUNTU-CVE-2024-50120",
"CVE-2024-50121",
"UBUNTU-CVE-2024-50121",
"CVE-2024-50122",
"UBUNTU-CVE-2024-50122",
"CVE-2024-50123",
"UBUNTU-CVE-2024-50123",
"CVE-2024-50124",
"UBUNTU-CVE-2024-50124",
"CVE-2024-50125",
"UBUNTU-CVE-2024-50125",
"CVE-2024-50126",
"UBUNTU-CVE-2024-50126",
"CVE-2024-50127",
"UBUNTU-CVE-2024-50127",
"CVE-2024-50128",
"UBUNTU-CVE-2024-50128",
"CVE-2024-50129",
"UBUNTU-CVE-2024-50129",
"CVE-2024-50130",
"UBUNTU-CVE-2024-50130",
"CVE-2024-50131",
"UBUNTU-CVE-2024-50131",
"CVE-2024-50132",
"UBUNTU-CVE-2024-50132",
"CVE-2024-50133",
"UBUNTU-CVE-2024-50133",
"CVE-2024-50134",
"UBUNTU-CVE-2024-50134",
"CVE-2024-50135",
"UBUNTU-CVE-2024-50135",
"CVE-2024-50136",
"UBUNTU-CVE-2024-50136",
"CVE-2024-50137",
"UBUNTU-CVE-2024-50137",
"CVE-2024-50138",
"UBUNTU-CVE-2024-50138",
"CVE-2024-50139",
"UBUNTU-CVE-2024-50139",
"CVE-2024-50140",
"UBUNTU-CVE-2024-50140",
"CVE-2024-50141",
"UBUNTU-CVE-2024-50141",
"CVE-2024-50142",
"UBUNTU-CVE-2024-50142",
"CVE-2024-50143",
"UBUNTU-CVE-2024-50143",
"CVE-2024-50144",
"UBUNTU-CVE-2024-50144",
"CVE-2024-50145",
"UBUNTU-CVE-2024-50145",
"CVE-2024-50146",
"UBUNTU-CVE-2024-50146",
"CVE-2024-50147",
"UBUNTU-CVE-2024-50147",
"CVE-2024-50148",
"UBUNTU-CVE-2024-50148",
"CVE-2024-50149",
"UBUNTU-CVE-2024-50149",
"CVE-2024-50150",
"UBUNTU-CVE-2024-50150",
"CVE-2024-50151",
"UBUNTU-CVE-2024-50151",
"CVE-2024-50152",
"UBUNTU-CVE-2024-50152",
"CVE-2024-50153",
"UBUNTU-CVE-2024-50153",
"CVE-2024-50154",
"UBUNTU-CVE-2024-50154",
"CVE-2024-50155",
"UBUNTU-CVE-2024-50155",
"CVE-2024-50156",
"UBUNTU-CVE-2024-50156",
"CVE-2024-50157",
"UBUNTU-CVE-2024-50157",
"CVE-2024-50158",
"UBUNTU-CVE-2024-50158",
"CVE-2024-50159",
"UBUNTU-CVE-2024-50159",
"CVE-2024-50160",
"UBUNTU-CVE-2024-50160",
"CVE-2024-50161",
"UBUNTU-CVE-2024-50161",
"CVE-2024-50162",
"UBUNTU-CVE-2024-50162",
"CVE-2024-50163",
"UBUNTU-CVE-2024-50163",
"CVE-2024-50164",
"UBUNTU-CVE-2024-50164",
"CVE-2024-50165",
"UBUNTU-CVE-2024-50165",
"CVE-2024-50166",
"UBUNTU-CVE-2024-50166",
"CVE-2024-50167",
"UBUNTU-CVE-2024-50167",
"CVE-2024-50168",
"UBUNTU-CVE-2024-50168",
"CVE-2024-50169",
"UBUNTU-CVE-2024-50169",
"CVE-2024-50170",
"UBUNTU-CVE-2024-50170",
"CVE-2024-50171",
"UBUNTU-CVE-2024-50171",
"CVE-2024-50172",
"UBUNTU-CVE-2024-50172",
"CVE-2024-50173",
"UBUNTU-CVE-2024-50173",
"CVE-2024-50174",
"UBUNTU-CVE-2024-50174",
"CVE-2024-50176",
"UBUNTU-CVE-2024-50176",
"CVE-2024-50177",
"UBUNTU-CVE-2024-50177",
"CVE-2024-50178",
"UBUNTU-CVE-2024-50178",
"CVE-2024-50179",
"UBUNTU-CVE-2024-50179",
"CVE-2024-50180",
"UBUNTU-CVE-2024-50180",
"CVE-2024-50182",
"UBUNTU-CVE-2024-50182",
"CVE-2024-50183",
"UBUNTU-CVE-2024-50183",
"CVE-2024-50184",
"UBUNTU-CVE-2024-50184",
"CVE-2024-50185",
"UBUNTU-CVE-2024-50185",
"CVE-2024-50186",
"UBUNTU-CVE-2024-50186",
"CVE-2024-50187",
"UBUNTU-CVE-2024-50187",
"CVE-2024-50188",
"UBUNTU-CVE-2024-50188",
"CVE-2024-50189",
"UBUNTU-CVE-2024-50189",
"CVE-2024-50190",
"UBUNTU-CVE-2024-50190",
"CVE-2024-50191",
"UBUNTU-CVE-2024-50191",
"CVE-2024-50192",
"UBUNTU-CVE-2024-50192",
"CVE-2024-50193",
"UBUNTU-CVE-2024-50193",
"CVE-2024-50194",
"UBUNTU-CVE-2024-50194",
"CVE-2024-50195",
"UBUNTU-CVE-2024-50195",
"CVE-2024-50196",
"UBUNTU-CVE-2024-50196",
"CVE-2024-50197",
"UBUNTU-CVE-2024-50197",
"CVE-2024-50198",
"UBUNTU-CVE-2024-50198",
"CVE-2024-50199",
"UBUNTU-CVE-2024-50199",
"CVE-2024-50200",
"UBUNTU-CVE-2024-50200",
"CVE-2024-50201",
"UBUNTU-CVE-2024-50201",
"CVE-2024-50202",
"UBUNTU-CVE-2024-50202",
"CVE-2024-50203",
"UBUNTU-CVE-2024-50203",
"CVE-2024-50204",
"UBUNTU-CVE-2024-50204",
"CVE-2024-50205",
"UBUNTU-CVE-2024-50205",
"CVE-2024-50206",
"UBUNTU-CVE-2024-50206",
"CVE-2024-50207",
"UBUNTU-CVE-2024-50207",
"CVE-2024-50208",
"UBUNTU-CVE-2024-50208",
"CVE-2024-50209",
"UBUNTU-CVE-2024-50209",
"CVE-2024-50211",
"UBUNTU-CVE-2024-50211",
"CVE-2024-50212",
"UBUNTU-CVE-2024-50212",
"CVE-2024-50213",
"UBUNTU-CVE-2024-50213",
"CVE-2024-50214",
"UBUNTU-CVE-2024-50214",
"CVE-2024-50215",
"UBUNTU-CVE-2024-50215",
"CVE-2024-50216",
"UBUNTU-CVE-2024-50216",
"CVE-2024-50217",
"UBUNTU-CVE-2024-50217",
"CVE-2024-50218",
"UBUNTU-CVE-2024-50218",
"CVE-2024-50220",
"UBUNTU-CVE-2024-50220",
"CVE-2024-50221",
"UBUNTU-CVE-2024-50221",
"CVE-2024-50222",
"UBUNTU-CVE-2024-50222",
"CVE-2024-50223",
"UBUNTU-CVE-2024-50223",
"CVE-2024-50224",
"UBUNTU-CVE-2024-50224",
"CVE-2024-50225",
"UBUNTU-CVE-2024-50225",
"CVE-2024-50226",
"UBUNTU-CVE-2024-50226",
"CVE-2024-50227",
"UBUNTU-CVE-2024-50227",
"CVE-2024-50229",
"UBUNTU-CVE-2024-50229",
"CVE-2024-50230",
"UBUNTU-CVE-2024-50230",
"CVE-2024-50231",
"UBUNTU-CVE-2024-50231",
"CVE-2024-50232",
"UBUNTU-CVE-2024-50232",
"CVE-2024-50233",
"UBUNTU-CVE-2024-50233",
"CVE-2024-50234",
"UBUNTU-CVE-2024-50234",
"CVE-2024-50235",
"UBUNTU-CVE-2024-50235",
"CVE-2024-50236",
"UBUNTU-CVE-2024-50236",
"CVE-2024-50237",
"UBUNTU-CVE-2024-50237",
"CVE-2024-50238",
"UBUNTU-CVE-2024-50238",
"CVE-2024-50239",
"UBUNTU-CVE-2024-50239",
"CVE-2024-50240",
"UBUNTU-CVE-2024-50240",
"CVE-2024-50242",
"UBUNTU-CVE-2024-50242",
"CVE-2024-50243",
"UBUNTU-CVE-2024-50243",
"CVE-2024-50244",
"UBUNTU-CVE-2024-50244",
"CVE-2024-50245",
"UBUNTU-CVE-2024-50245",
"CVE-2024-50246",
"UBUNTU-CVE-2024-50246",
"CVE-2024-50247",
"UBUNTU-CVE-2024-50247",
"CVE-2024-50248",
"UBUNTU-CVE-2024-50248",
"CVE-2024-50249",
"UBUNTU-CVE-2024-50249",
"CVE-2024-50250",
"UBUNTU-CVE-2024-50250",
"CVE-2024-50251",
"UBUNTU-CVE-2024-50251",
"CVE-2024-50252",
"UBUNTU-CVE-2024-50252",
"CVE-2024-50253",
"UBUNTU-CVE-2024-50253",
"CVE-2024-50254",
"UBUNTU-CVE-2024-50254",
"CVE-2024-50255",
"UBUNTU-CVE-2024-50255",
"CVE-2024-50256",
"UBUNTU-CVE-2024-50256",
"CVE-2024-50257",
"UBUNTU-CVE-2024-50257",
"CVE-2024-50258",
"UBUNTU-CVE-2024-50258",
"CVE-2024-50259",
"UBUNTU-CVE-2024-50259",
"CVE-2024-50260",
"UBUNTU-CVE-2024-50260",
"CVE-2024-50261",
"UBUNTU-CVE-2024-50261",
"CVE-2024-50262",
"UBUNTU-CVE-2024-50262",
"CVE-2024-50263",
"UBUNTU-CVE-2024-50263",
"CVE-2024-50265",
"UBUNTU-CVE-2024-50265",
"CVE-2024-50266",
"UBUNTU-CVE-2024-50266",
"CVE-2024-50267",
"UBUNTU-CVE-2024-50267",
"CVE-2024-50268",
"UBUNTU-CVE-2024-50268",
"CVE-2024-50269",
"UBUNTU-CVE-2024-50269",
"CVE-2024-50270",
"UBUNTU-CVE-2024-50270",
"CVE-2024-50271",
"UBUNTU-CVE-2024-50271",
"CVE-2024-50272",
"UBUNTU-CVE-2024-50272",
"CVE-2024-50273",
"UBUNTU-CVE-2024-50273",
"CVE-2024-50274",
"UBUNTU-CVE-2024-50274",
"CVE-2024-50275",
"UBUNTU-CVE-2024-50275",
"CVE-2024-50276",
"UBUNTU-CVE-2024-50276",
"CVE-2024-50277",
"UBUNTU-CVE-2024-50277",
"CVE-2024-50278",
"UBUNTU-CVE-2024-50278",
"CVE-2024-50279",
"UBUNTU-CVE-2024-50279",
"CVE-2024-50280",
"UBUNTU-CVE-2024-50280",
"CVE-2024-50281",
"UBUNTU-CVE-2024-50281",
"CVE-2024-50282",
"UBUNTU-CVE-2024-50282",
"CVE-2024-50283",
"UBUNTU-CVE-2024-50283",
"CVE-2024-50284",
"UBUNTU-CVE-2024-50284",
"CVE-2024-50285",
"UBUNTU-CVE-2024-50285",
"CVE-2024-50286",
"UBUNTU-CVE-2024-50286",
"CVE-2024-50287",
"UBUNTU-CVE-2024-50287",
"CVE-2024-50288",
"UBUNTU-CVE-2024-50288",
"CVE-2024-50289",
"UBUNTU-CVE-2024-50289",
"CVE-2024-50290",
"UBUNTU-CVE-2024-50290",
"CVE-2024-50291",
"UBUNTU-CVE-2024-50291",
"CVE-2024-50292",
"UBUNTU-CVE-2024-50292",
"CVE-2024-50293",
"UBUNTU-CVE-2024-50293",
"CVE-2024-50294",
"UBUNTU-CVE-2024-50294",
"CVE-2024-50295",
"UBUNTU-CVE-2024-50295",
"CVE-2024-50296",
"UBUNTU-CVE-2024-50296",
"CVE-2024-50297",
"UBUNTU-CVE-2024-50297",
"CVE-2024-50298",
"UBUNTU-CVE-2024-50298",
"CVE-2024-50299",
"UBUNTU-CVE-2024-50299",
"CVE-2024-50300",
"UBUNTU-CVE-2024-50300",
"CVE-2024-50301",
"UBUNTU-CVE-2024-50301",
"CVE-2024-50302",
"UBUNTU-CVE-2024-50302",
"CVE-2024-50303",
"UBUNTU-CVE-2024-50303",
"CVE-2024-50304",
"UBUNTU-CVE-2024-50304",
"CVE-2024-53042",
"UBUNTU-CVE-2024-53042",
"CVE-2024-53043",
"UBUNTU-CVE-2024-53043",
"CVE-2024-53044",
"UBUNTU-CVE-2024-53044",
"CVE-2024-53045",
"UBUNTU-CVE-2024-53045",
"CVE-2024-53046",
"UBUNTU-CVE-2024-53046",
"CVE-2024-53047",
"UBUNTU-CVE-2024-53047",
"CVE-2024-53048",
"UBUNTU-CVE-2024-53048",
"CVE-2024-53049",
"UBUNTU-CVE-2024-53049",
"CVE-2024-53052",
"UBUNTU-CVE-2024-53052",
"CVE-2024-53053",
"UBUNTU-CVE-2024-53053",
"CVE-2024-53055",
"UBUNTU-CVE-2024-53055",
"CVE-2024-53056",
"UBUNTU-CVE-2024-53056",
"CVE-2024-53058",
"UBUNTU-CVE-2024-53058",
"CVE-2024-53059",
"UBUNTU-CVE-2024-53059",
"CVE-2024-53061",
"UBUNTU-CVE-2024-53061",
"CVE-2024-53062",
"UBUNTU-CVE-2024-53062",
"CVE-2024-53063",
"UBUNTU-CVE-2024-53063",
"CVE-2024-53064",
"UBUNTU-CVE-2024-53064",
"CVE-2024-53065",
"UBUNTU-CVE-2024-53065",
"CVE-2024-53066",
"UBUNTU-CVE-2024-53066",
"CVE-2024-53067",
"UBUNTU-CVE-2024-53067",
"CVE-2024-53068",
"UBUNTU-CVE-2024-53068",
"CVE-2024-53069",
"UBUNTU-CVE-2024-53069",
"CVE-2024-53071",
"UBUNTU-CVE-2024-53071",
"CVE-2024-53072",
"UBUNTU-CVE-2024-53072",
"CVE-2024-53074",
"UBUNTU-CVE-2024-53074",
"CVE-2024-53075",
"UBUNTU-CVE-2024-53075",
"CVE-2024-53076",
"UBUNTU-CVE-2024-53076",
"CVE-2024-53077",
"UBUNTU-CVE-2024-53077",
"CVE-2024-53078",
"UBUNTU-CVE-2024-53078",
"CVE-2024-53079",
"UBUNTU-CVE-2024-53079",
"CVE-2024-53080",
"UBUNTU-CVE-2024-53080",
"CVE-2024-53081",
"UBUNTU-CVE-2024-53081",
"CVE-2024-53082",
"UBUNTU-CVE-2024-53082",
"CVE-2024-53083",
"UBUNTU-CVE-2024-53083",
"CVE-2024-53084",
"UBUNTU-CVE-2024-53084",
"CVE-2024-53085",
"UBUNTU-CVE-2024-53085",
"CVE-2024-53086",
"UBUNTU-CVE-2024-53086",
"CVE-2024-53087",
"UBUNTU-CVE-2024-53087",
"CVE-2024-53088",
"UBUNTU-CVE-2024-53088",
"CVE-2024-53089",
"UBUNTU-CVE-2024-53089",
"CVE-2024-53090",
"UBUNTU-CVE-2024-53090",
"CVE-2024-53091",
"UBUNTU-CVE-2024-53091",
"CVE-2024-53092",
"UBUNTU-CVE-2024-53092",
"CVE-2024-53093",
"UBUNTU-CVE-2024-53093",
"CVE-2024-53094",
"UBUNTU-CVE-2024-53094",
"CVE-2024-53095",
"UBUNTU-CVE-2024-53095",
"CVE-2024-53098",
"UBUNTU-CVE-2024-53098",
"CVE-2024-53099",
"UBUNTU-CVE-2024-53099",
"CVE-2024-53100",
"UBUNTU-CVE-2024-53100",
"CVE-2024-53101",
"UBUNTU-CVE-2024-53101",
"CVE-2024-53104",
"UBUNTU-CVE-2024-53104",
"CVE-2024-53105",
"UBUNTU-CVE-2024-53105",
"CVE-2024-53106",
"UBUNTU-CVE-2024-53106",
"CVE-2024-53107",
"UBUNTU-CVE-2024-53107",
"CVE-2024-53108",
"UBUNTU-CVE-2024-53108",
"CVE-2024-53109",
"UBUNTU-CVE-2024-53109",
"CVE-2024-53110",
"UBUNTU-CVE-2024-53110",
"CVE-2024-53111",
"UBUNTU-CVE-2024-53111",
"CVE-2024-53112",
"UBUNTU-CVE-2024-53112",
"CVE-2024-53113",
"UBUNTU-CVE-2024-53113",
"CVE-2024-53114",
"UBUNTU-CVE-2024-53114",
"CVE-2024-53115",
"UBUNTU-CVE-2024-53115",
"CVE-2024-53116",
"UBUNTU-CVE-2024-53116",
"CVE-2024-53117",
"UBUNTU-CVE-2024-53117",
"CVE-2024-53118",
"UBUNTU-CVE-2024-53118",
"CVE-2024-53119",
"UBUNTU-CVE-2024-53119",
"CVE-2024-53120",
"UBUNTU-CVE-2024-53120",
"CVE-2024-53121",
"UBUNTU-CVE-2024-53121",
"CVE-2024-53122",
"UBUNTU-CVE-2024-53122",
"CVE-2024-53123",
"UBUNTU-CVE-2024-53123",
"CVE-2024-53124",
"UBUNTU-CVE-2024-53124",
"CVE-2024-53125",
"UBUNTU-CVE-2024-53125",
"CVE-2024-53126",
"UBUNTU-CVE-2024-53126",
"CVE-2024-53127",
"UBUNTU-CVE-2024-53127",
"CVE-2024-53128",
"UBUNTU-CVE-2024-53128",
"CVE-2024-53129",
"UBUNTU-CVE-2024-53129",
"CVE-2024-53130",
"UBUNTU-CVE-2024-53130",
"CVE-2024-53131",
"UBUNTU-CVE-2024-53131",
"CVE-2024-53132",
"UBUNTU-CVE-2024-53132",
"CVE-2024-53133",
"UBUNTU-CVE-2024-53133",
"CVE-2024-53134",
"UBUNTU-CVE-2024-53134",
"CVE-2024-53135",
"UBUNTU-CVE-2024-53135",
"CVE-2024-53137",
"UBUNTU-CVE-2024-53137",
"CVE-2024-53138",
"UBUNTU-CVE-2024-53138",
"CVE-2024-53139",
"UBUNTU-CVE-2024-53139",
"CVE-2024-53140",
"UBUNTU-CVE-2024-53140",
"CVE-2024-53141",
"UBUNTU-CVE-2024-53141",
"CVE-2024-53142",
"UBUNTU-CVE-2024-53142",
"CVE-2024-53143",
"UBUNTU-CVE-2024-53143",
"CVE-2024-53144",
"UBUNTU-CVE-2024-53144",
"CVE-2024-53145",
"UBUNTU-CVE-2024-53145",
"CVE-2024-53146",
"UBUNTU-CVE-2024-53146",
"CVE-2024-53147",
"UBUNTU-CVE-2024-53147",
"CVE-2024-53148",
"UBUNTU-CVE-2024-53148",
"CVE-2024-53149",
"UBUNTU-CVE-2024-53149",
"CVE-2024-53150",
"UBUNTU-CVE-2024-53150",
"CVE-2024-53151",
"UBUNTU-CVE-2024-53151",
"CVE-2024-53152",
"UBUNTU-CVE-2024-53152",
"CVE-2024-53153",
"UBUNTU-CVE-2024-53153",
"CVE-2024-53154",
"UBUNTU-CVE-2024-53154",
"CVE-2024-53155",
"UBUNTU-CVE-2024-53155",
"CVE-2024-53156",
"UBUNTU-CVE-2024-53156",
"CVE-2024-53157",
"UBUNTU-CVE-2024-53157",
"CVE-2024-53158",
"UBUNTU-CVE-2024-53158",
"CVE-2024-53160",
"UBUNTU-CVE-2024-53160",
"CVE-2024-53161",
"UBUNTU-CVE-2024-53161",
"CVE-2024-53162",
"UBUNTU-CVE-2024-53162",
"CVE-2024-53163",
"UBUNTU-CVE-2024-53163",
"CVE-2024-53165",
"UBUNTU-CVE-2024-53165",
"CVE-2024-53166",
"UBUNTU-CVE-2024-53166",
"CVE-2024-53167",
"UBUNTU-CVE-2024-53167",
"CVE-2024-53168",
"UBUNTU-CVE-2024-53168",
"CVE-2024-53169",
"UBUNTU-CVE-2024-53169",
"CVE-2024-53170",
"UBUNTU-CVE-2024-53170",
"CVE-2024-53171",
"UBUNTU-CVE-2024-53171",
"CVE-2024-53172",
"UBUNTU-CVE-2024-53172",
"CVE-2024-53173",
"UBUNTU-CVE-2024-53173",
"CVE-2024-53174",
"UBUNTU-CVE-2024-53174",
"CVE-2024-53175",
"UBUNTU-CVE-2024-53175",
"CVE-2024-53176",
"UBUNTU-CVE-2024-53176",
"CVE-2024-53177",
"UBUNTU-CVE-2024-53177",
"CVE-2024-53178",
"UBUNTU-CVE-2024-53178",
"CVE-2024-53180",
"UBUNTU-CVE-2024-53180",
"CVE-2024-53181",
"UBUNTU-CVE-2024-53181",
"CVE-2024-53183",
"UBUNTU-CVE-2024-53183",
"CVE-2024-53184",
"UBUNTU-CVE-2024-53184",
"CVE-2024-53187",
"UBUNTU-CVE-2024-53187",
"CVE-2024-53188",
"UBUNTU-CVE-2024-53188",
"CVE-2024-53189",
"UBUNTU-CVE-2024-53189",
"CVE-2024-53190",
"UBUNTU-CVE-2024-53190",
"CVE-2024-53191",
"UBUNTU-CVE-2024-53191",
"CVE-2024-53192",
"UBUNTU-CVE-2024-53192",
"CVE-2024-53193",
"UBUNTU-CVE-2024-53193",
"CVE-2024-53194",
"UBUNTU-CVE-2024-53194",
"CVE-2024-53195",
"UBUNTU-CVE-2024-53195",
"CVE-2024-53196",
"UBUNTU-CVE-2024-53196",
"CVE-2024-53197",
"UBUNTU-CVE-2024-53197",
"CVE-2024-53198",
"UBUNTU-CVE-2024-53198",
"CVE-2024-53199",
"UBUNTU-CVE-2024-53199",
"CVE-2024-53200",
"UBUNTU-CVE-2024-53200",
"CVE-2024-53202",
"UBUNTU-CVE-2024-53202",
"CVE-2024-53203",
"UBUNTU-CVE-2024-53203",
"CVE-2024-53208",
"UBUNTU-CVE-2024-53208",
"CVE-2024-53209",
"UBUNTU-CVE-2024-53209",
"CVE-2024-53210",
"UBUNTU-CVE-2024-53210",
"CVE-2024-53212",
"UBUNTU-CVE-2024-53212",
"CVE-2024-53213",
"UBUNTU-CVE-2024-53213",
"CVE-2024-53214",
"UBUNTU-CVE-2024-53214",
"CVE-2024-53215",
"UBUNTU-CVE-2024-53215",
"CVE-2024-53216",
"UBUNTU-CVE-2024-53216",
"CVE-2024-53217",
"UBUNTU-CVE-2024-53217",
"CVE-2024-53218",
"UBUNTU-CVE-2024-53218",
"CVE-2024-53219",
"UBUNTU-CVE-2024-53219",
"CVE-2024-53220",
"UBUNTU-CVE-2024-53220",
"CVE-2024-53221",
"UBUNTU-CVE-2024-53221",
"CVE-2024-53223",
"UBUNTU-CVE-2024-53223",
"CVE-2024-53224",
"UBUNTU-CVE-2024-53224",
"CVE-2024-53226",
"UBUNTU-CVE-2024-53226",
"CVE-2024-53227",
"UBUNTU-CVE-2024-53227",
"CVE-2024-53228",
"UBUNTU-CVE-2024-53228",
"CVE-2024-53229",
"UBUNTU-CVE-2024-53229",
"CVE-2024-53230",
"UBUNTU-CVE-2024-53230",
"CVE-2024-53231",
"UBUNTU-CVE-2024-53231",
"CVE-2024-53232",
"UBUNTU-CVE-2024-53232",
"CVE-2024-53233",
"UBUNTU-CVE-2024-53233",
"CVE-2024-53234",
"UBUNTU-CVE-2024-53234",
"CVE-2024-53236",
"UBUNTU-CVE-2024-53236",
"CVE-2024-53237",
"UBUNTU-CVE-2024-53237",
"CVE-2024-53238",
"UBUNTU-CVE-2024-53238",
"CVE-2024-53239",
"UBUNTU-CVE-2024-53239",
"CVE-2024-56531",
"UBUNTU-CVE-2024-56531",
"CVE-2024-56532",
"UBUNTU-CVE-2024-56532",
"CVE-2024-56533",
"UBUNTU-CVE-2024-56533",
"CVE-2024-56534",
"UBUNTU-CVE-2024-56534",
"CVE-2024-56535",
"UBUNTU-CVE-2024-56535",
"CVE-2024-56536",
"UBUNTU-CVE-2024-56536",
"CVE-2024-56537",
"UBUNTU-CVE-2024-56537",
"CVE-2024-56538",
"UBUNTU-CVE-2024-56538",
"CVE-2024-56539",
"UBUNTU-CVE-2024-56539",
"CVE-2024-56540",
"UBUNTU-CVE-2024-56540",
"CVE-2024-56541",
"UBUNTU-CVE-2024-56541",
"CVE-2024-56543",
"UBUNTU-CVE-2024-56543",
"CVE-2024-56544",
"UBUNTU-CVE-2024-56544",
"CVE-2024-56545",
"UBUNTU-CVE-2024-56545",
"CVE-2024-56546",
"UBUNTU-CVE-2024-56546",
"CVE-2024-56548",
"UBUNTU-CVE-2024-56548",
"CVE-2024-56549",
"UBUNTU-CVE-2024-56549",
"CVE-2024-56674",
"UBUNTU-CVE-2024-56674",
"CVE-2024-56677",
"UBUNTU-CVE-2024-56677",
"CVE-2024-56678",
"UBUNTU-CVE-2024-56678",
"CVE-2024-56679",
"UBUNTU-CVE-2024-56679",
"CVE-2024-56680",
"UBUNTU-CVE-2024-56680",
"CVE-2024-56681",
"UBUNTU-CVE-2024-56681",
"CVE-2024-56683",
"UBUNTU-CVE-2024-56683",
"CVE-2024-56684",
"UBUNTU-CVE-2024-56684",
"CVE-2024-56685",
"UBUNTU-CVE-2024-56685",
"CVE-2024-56687",
"UBUNTU-CVE-2024-56687",
"CVE-2024-56688",
"UBUNTU-CVE-2024-56688",
"CVE-2024-56689",
"UBUNTU-CVE-2024-56689",
"CVE-2024-56690",
"UBUNTU-CVE-2024-56690",
"CVE-2024-56691",
"UBUNTU-CVE-2024-56691",
"CVE-2024-56692",
"UBUNTU-CVE-2024-56692",
"CVE-2024-56693",
"UBUNTU-CVE-2024-56693",
"CVE-2024-56694",
"UBUNTU-CVE-2024-56694",
"CVE-2024-56696",
"UBUNTU-CVE-2024-56696",
"CVE-2024-56697",
"UBUNTU-CVE-2024-56697",
"CVE-2024-56698",
"UBUNTU-CVE-2024-56698",
"CVE-2024-56699",
"UBUNTU-CVE-2024-56699",
"CVE-2024-56700",
"UBUNTU-CVE-2024-56700",
"CVE-2024-56701",
"UBUNTU-CVE-2024-56701",
"CVE-2024-56702",
"UBUNTU-CVE-2024-56702",
"CVE-2024-56703",
"UBUNTU-CVE-2024-56703",
"CVE-2024-56704",
"UBUNTU-CVE-2024-56704",
"CVE-2024-56705",
"UBUNTU-CVE-2024-56705",
"CVE-2024-56707",
"UBUNTU-CVE-2024-56707",
"CVE-2024-56708",
"UBUNTU-CVE-2024-56708",
"CVE-2024-56720",
"UBUNTU-CVE-2024-56720",
"CVE-2024-56721",
"UBUNTU-CVE-2024-56721",
"CVE-2024-56722",
"UBUNTU-CVE-2024-56722",
"CVE-2024-56723",
"UBUNTU-CVE-2024-56723",
"CVE-2024-56724",
"UBUNTU-CVE-2024-56724",
"CVE-2024-56725",
"UBUNTU-CVE-2024-56725",
"CVE-2024-56726",
"UBUNTU-CVE-2024-56726",
"CVE-2024-56727",
"UBUNTU-CVE-2024-56727",
"CVE-2024-56728",
"UBUNTU-CVE-2024-56728",
"CVE-2024-56729",
"UBUNTU-CVE-2024-56729",
"CVE-2024-56739",
"UBUNTU-CVE-2024-56739",
"CVE-2024-56742",
"UBUNTU-CVE-2024-56742",
"CVE-2024-56744",
"UBUNTU-CVE-2024-56744",
"CVE-2024-56745",
"UBUNTU-CVE-2024-56745",
"CVE-2024-56746",
"UBUNTU-CVE-2024-56746",
"CVE-2024-56747",
"UBUNTU-CVE-2024-56747",
"CVE-2024-56748",
"UBUNTU-CVE-2024-56748",
"CVE-2024-56749",
"UBUNTU-CVE-2024-56749",
"CVE-2024-56751",
"UBUNTU-CVE-2024-56751",
"CVE-2024-56752",
"UBUNTU-CVE-2024-56752",
"CVE-2024-56754",
"UBUNTU-CVE-2024-56754",
"CVE-2024-56755",
"UBUNTU-CVE-2024-56755",
"CVE-2024-56756",
"UBUNTU-CVE-2024-56756"
],
"schema_version": "1.6.3",
"summary": "linux-aws, linux-azure, linux-gcp, linux-oracle, linux-raspi, linux-realtime vulnerabilities"
}
WID-SEC-W-2024-3397
Vulnerability from csaf_certbund - Published: 2024-11-10 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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
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:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Dell PowerProtect Data Domain <7.10.1.70
Dell / PowerProtect Data Domain
|
<7.10.1.70 | ||
|
Dell PowerProtect Data Domain <8.3.1.10
Dell / PowerProtect Data Domain
|
<8.3.1.10 | ||
|
IBM QRadar SIEM <7.5.0 UP11 IF02
IBM / QRadar SIEM
|
<7.5.0 UP11 IF02 | ||
|
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/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lore.kernel.org/linux-cve-announce/202411… | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://access.redhat.com/errata/RHSA-2024:10274 | external |
| https://linux.oracle.com/errata/ELSA-2024-10274.html | external |
| https://access.redhat.com/errata/RHSA-2024:10942 | external |
| https://access.redhat.com/errata/RHSA-2024:10939 | external |
| https://access.redhat.com/errata/RHSA-2024:10944 | external |
| https://access.redhat.com/errata/RHSA-2024:10943 | external |
| https://linux.oracle.com/errata/ELSA-2024-10939.html | external |
| https://linux.oracle.com/errata/ELSA-2024-10943.html | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2024-12884.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://errata.build.resf.org/RLSA-2024:10944 | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://access.redhat.com/errata/RHSA-2024:11486 | external |
| https://linux.oracle.com/errata/ELSA-2024-12887.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://linux.oracle.com/errata/ELSA-2024-11486.html | external |
| https://access.redhat.com/errata/RHSA-2025:0059 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2025-0059.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://alas.aws.amazon.com/AL2/ALASKERNEL-5.10-2… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://alas.aws.amazon.com/AL2/ALASKERNEL-5.4-20… | 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://alas.aws.amazon.com/AL2/ALASLIVEPATCH-202… | external |
| https://alas.aws.amazon.com/ALAS-2025-1957.html | external |
| https://linux.oracle.com/errata/ELSA-2025-20095.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2025:1658 | external |
| https://ubuntu.com/security/notices/USN-7277-1 | external |
| https://ubuntu.com/security/notices/USN-7276-1 | external |
| https://ubuntu.com/security/notices/USN-7289-1 | external |
| https://ubuntu.com/security/notices/USN-7288-1 | external |
| https://ubuntu.com/security/notices/USN-7293-1 | external |
| https://ubuntu.com/security/notices/USN-7289-2 | external |
| https://www.ibm.com/support/pages/node/7184085 | external |
| https://ubuntu.com/security/notices/USN-7291-1 | external |
| https://ubuntu.com/security/notices/USN-7288-2 | external |
| https://ubuntu.com/security/notices/USN-7294-1 | external |
| https://ubuntu.com/security/notices/USN-7295-1 | external |
| https://ubuntu.com/security/notices/USN-7289-3 | external |
| https://ubuntu.com/security/notices/USN-7294-2 | external |
| https://ubuntu.com/security/notices/USN-7289-4 | external |
| https://ubuntu.com/security/notices/USN-7308-1 | external |
| https://ubuntu.com/security/notices/USN-7294-3 | external |
| https://ubuntu.com/security/notices/USN-7310-1 | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://ubuntu.com/security/notices/USN-7294-4 | external |
| https://ubuntu.com/security/notices/USN-7331-1 | external |
| https://ubuntu.com/security/notices/USN-7332-1 | external |
| https://ubuntu.com/security/notices/USN-7333-1 | external |
| https://ubuntu.com/security/notices/USN-7332-2 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7344-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7342-1 | external |
| https://ubuntu.com/security/notices/USN-7332-3 | external |
| https://ubuntu.com/security/notices/USN-7344-2 | external |
| https://ubuntu.com/security/notices/USN-7386-1 | external |
| https://ubuntu.com/security/notices/USN-7387-1 | external |
| https://ubuntu.com/security/notices/USN-7383-2 | external |
| https://ubuntu.com/security/notices/USN-7385-1 | external |
| https://ubuntu.com/security/notices/USN-7383-1 | external |
| https://ubuntu.com/security/notices/USN-7388-1 | external |
| https://ubuntu.com/security/notices/USN-7384-1 | external |
| https://ubuntu.com/security/notices/USN-7387-2 | external |
| https://ubuntu.com/security/notices/USN-7389-1 | external |
| https://ubuntu.com/security/notices/USN-7390-1 | external |
| https://ubuntu.com/security/notices/USN-7393-1 | external |
| https://ubuntu.com/security/notices/USN-7387-3 | external |
| https://ubuntu.com/security/notices/USN-7401-1 | external |
| https://ubuntu.com/security/notices/USN-7384-2 | external |
| https://ubuntu.com/security/notices/USN-7403-1 | 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.debian.org/debian-security-announce… | external |
| https://linux.oracle.com/errata/ELSA-2025-20270.html | external |
| https://ubuntu.com/security/notices/USN-7449-1 | external |
| https://ubuntu.com/security/notices/USN-7450-1 | external |
| https://ubuntu.com/security/notices/USN-7451-1 | external |
| https://ubuntu.com/security/notices/USN-7453-1 | external |
| https://ubuntu.com/security/notices/USN-7452-1 | external |
| https://ubuntu.com/security/notices/USN-7455-1 | external |
| https://ubuntu.com/security/notices/USN-7458-1 | external |
| https://ubuntu.com/security/notices/USN-7449-2 | external |
| https://ubuntu.com/security/notices/USN-7455-3 | external |
| https://ubuntu.com/security/notices/USN-7463-1 | external |
| https://ubuntu.com/security/notices/USN-7460-1 | external |
| https://ubuntu.com/security/notices/USN-7461-1 | external |
| https://ubuntu.com/security/notices/USN-7455-2 | external |
| https://ubuntu.com/security/notices/USN-7462-2 | external |
| https://ubuntu.com/security/notices/USN-7459-1 | external |
| https://ubuntu.com/security/notices/USN-7461-2 | external |
| https://ubuntu.com/security/notices/USN-7462-1 | external |
| https://ubuntu.com/security/notices/USN-7455-4 | external |
| https://ubuntu.com/security/notices/USN-7468-1 | external |
| https://ubuntu.com/security/notices/USN-7459-2 | external |
| https://ubuntu.com/security/notices/USN-7455-5 | external |
| https://ubuntu.com/security/notices/USN-7461-3 | external |
| https://ubuntu.com/security/notices/USN-7475-1 | external |
| https://ubuntu.com/security/notices/USN-7496-1 | external |
| https://ubuntu.com/security/notices/USN-7496-2 | external |
| https://ubuntu.com/security/notices/USN-7496-5 | external |
| https://ubuntu.com/security/notices/USN-7496-3 | external |
| https://ubuntu.com/security/notices/USN-7496-4 | external |
| https://ubuntu.com/security/notices/USN-7506-2 | external |
| https://ubuntu.com/security/notices/USN-7506-1 | external |
| https://ubuntu.com/security/notices/USN-7506-3 | external |
| https://linux.oracle.com/errata/ELSA-2025-20320.html | external |
| https://ubuntu.com/security/notices/USN-7506-4 | external |
| https://access.redhat.com/errata/RHSA-2025:6966 | external |
| https://ubuntu.com/security/notices/USN-7523-1 | external |
| https://ubuntu.com/security/notices/USN-7524-1 | external |
| https://ubuntu.com/security/notices/USN-7540-1 | external |
| https://ubuntu.com/security/notices/USN-7539-1 | external |
| https://lists.debian.org/debian-lts-announce/2025… | external |
| https://alas.aws.amazon.com/AL2/ALASKERNEL-5.15-2… | 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://alas.aws.amazon.com/AL2/ALASKERNEL-5.15-2… | external |
| https://cert-portal.siemens.com/productcert/html/… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.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://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2025-20470.html | external |
| https://ubuntu.com/security/notices/USN-7654-1 | external |
| https://ubuntu.com/security/notices/USN-7654-3 | external |
| https://ubuntu.com/security/notices/USN-7654-2 | external |
| https://ubuntu.com/security/notices/USN-7655-1 | 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.opensuse.org/archives/list/security… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7654-4 | external |
| https://ubuntu.com/security/notices/USN-7654-5 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7686-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-7711-1 | external |
| https://ubuntu.com/security/notices/USN-7712-1 | external |
| https://ubuntu.com/security/notices/USN-7712-2 | external |
| https://www.dell.com/support/kbdoc/000376224 | external |
| https://www.dell.com/support/kbdoc/000385230 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.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 nicht n\u00e4her spezifizierten Angriff durchzuf\u00fchren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2024-3397 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-3397.json"
},
{
"category": "self",
"summary": "WID-SEC-2024-3397 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-3397"
},
{
"category": "external",
"summary": "Kernel CVE Announce Mailingliste",
"url": "https://lore.kernel.org/linux-cve-announce/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50226",
"url": "https://lore.kernel.org/linux-cve-announce/2024110928-CVE-2024-50226-4350@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50229",
"url": "https://lore.kernel.org/linux-cve-announce/2024110929-CVE-2024-50229-c18d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50230",
"url": "https://lore.kernel.org/linux-cve-announce/2024110929-CVE-2024-50230-0b5e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50231",
"url": "https://lore.kernel.org/linux-cve-announce/2024110929-CVE-2024-50231-b6d6@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50232",
"url": "https://lore.kernel.org/linux-cve-announce/2024110930-CVE-2024-50232-d425@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50233",
"url": "https://lore.kernel.org/linux-cve-announce/2024110930-CVE-2024-50233-d5c3@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50234",
"url": "https://lore.kernel.org/linux-cve-announce/2024110931-CVE-2024-50234-52e0@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50235",
"url": "https://lore.kernel.org/linux-cve-announce/2024110931-CVE-2024-50235-14eb@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50246",
"url": "https://lore.kernel.org/linux-cve-announce/2024110935-CVE-2024-50246-5c55@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50247",
"url": "https://lore.kernel.org/linux-cve-announce/2024110935-CVE-2024-50247-79d8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50248",
"url": "https://lore.kernel.org/linux-cve-announce/2024110936-CVE-2024-50248-619f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50249",
"url": "https://lore.kernel.org/linux-cve-announce/2024110936-CVE-2024-50249-0984@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50250",
"url": "https://lore.kernel.org/linux-cve-announce/2024110936-CVE-2024-50250-eb8a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50251",
"url": "https://lore.kernel.org/linux-cve-announce/2024110937-CVE-2024-50251-66dc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50252",
"url": "https://lore.kernel.org/linux-cve-announce/2024110937-CVE-2024-50252-aacc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50253",
"url": "https://lore.kernel.org/linux-cve-announce/2024110937-CVE-2024-50253-7a6b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50254",
"url": "https://lore.kernel.org/linux-cve-announce/2024110938-CVE-2024-50254-535a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50255",
"url": "https://lore.kernel.org/linux-cve-announce/2024110938-CVE-2024-50255-3a3e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50256",
"url": "https://lore.kernel.org/linux-cve-announce/2024110938-CVE-2024-50256-5b66@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50257",
"url": "https://lore.kernel.org/linux-cve-announce/2024110939-CVE-2024-50257-af5f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50258",
"url": "https://lore.kernel.org/linux-cve-announce/2024110939-CVE-2024-50258-1b4c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50259",
"url": "https://lore.kernel.org/linux-cve-announce/2024110939-CVE-2024-50259-b07b@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50260",
"url": "https://lore.kernel.org/linux-cve-announce/2024110940-CVE-2024-50260-db68@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50261",
"url": "https://lore.kernel.org/linux-cve-announce/2024110940-CVE-2024-50261-3a20@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50262",
"url": "https://lore.kernel.org/linux-cve-announce/2024110955-CVE-2024-50262-9cd7@gregkh/#u"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50212",
"url": "https://lore.kernel.org/linux-cve-announce/2024110921-CVE-2024-50212-74b8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50213",
"url": "https://lore.kernel.org/linux-cve-announce/2024110923-CVE-2024-50213-6347@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50214",
"url": "https://lore.kernel.org/linux-cve-announce/2024110923-CVE-2024-50214-12f6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50215",
"url": "https://lore.kernel.org/linux-cve-announce/2024110924-CVE-2024-50215-0155@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50216",
"url": "https://lore.kernel.org/linux-cve-announce/2024110924-CVE-2024-50216-a031@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50217",
"url": "https://lore.kernel.org/linux-cve-announce/2024110924-CVE-2024-50217-2815@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50218",
"url": "https://lore.kernel.org/linux-cve-announce/2024110925-CVE-2024-50218-68cd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50219",
"url": "https://lore.kernel.org/linux-cve-announce/2024110925-CVE-2024-50219-c970@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50220",
"url": "https://lore.kernel.org/linux-cve-announce/2024110926-CVE-2024-50220-4b1d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50221",
"url": "https://lore.kernel.org/linux-cve-announce/2024110926-CVE-2024-50221-a355@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50222",
"url": "https://lore.kernel.org/linux-cve-announce/2024110926-CVE-2024-50222-4e8c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50223",
"url": "https://lore.kernel.org/linux-cve-announce/2024110927-CVE-2024-50223-c11b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50224",
"url": "https://lore.kernel.org/linux-cve-announce/2024110927-CVE-2024-50224-e202@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50225",
"url": "https://lore.kernel.org/linux-cve-announce/2024110927-CVE-2024-50225-c42a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50227",
"url": "https://lore.kernel.org/linux-cve-announce/2024110928-CVE-2024-50227-1fae@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50228",
"url": "https://lore.kernel.org/linux-cve-announce/2024110928-CVE-2024-50228-7a2a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50236",
"url": "https://lore.kernel.org/linux-cve-announce/2024110931-CVE-2024-50236-49dc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50237",
"url": "https://lore.kernel.org/linux-cve-announce/2024110932-CVE-2024-50237-7073@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50238",
"url": "https://lore.kernel.org/linux-cve-announce/2024110932-CVE-2024-50238-5489@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50239",
"url": "https://lore.kernel.org/linux-cve-announce/2024110932-CVE-2024-50239-590e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50240",
"url": "https://lore.kernel.org/linux-cve-announce/2024110933-CVE-2024-50240-336d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50241",
"url": "https://lore.kernel.org/linux-cve-announce/2024110933-CVE-2024-50241-9744@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50242",
"url": "https://lore.kernel.org/linux-cve-announce/2024110933-CVE-2024-50242-42b9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50243",
"url": "https://lore.kernel.org/linux-cve-announce/2024110934-CVE-2024-50243-fdd6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50244",
"url": "https://lore.kernel.org/linux-cve-announce/2024110934-CVE-2024-50244-54e5@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2024-50245",
"url": "https://lore.kernel.org/linux-cve-announce/2024110934-CVE-2024-50245-87aa@gregkh/"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-5818 vom 2024-11-24",
"url": "https://lists.debian.org/debian-security-announce/2024/msg00233.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:10274 vom 2024-11-26",
"url": "https://access.redhat.com/errata/RHSA-2024:10274"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-10274 vom 2024-11-27",
"url": "https://linux.oracle.com/errata/ELSA-2024-10274.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:10942 vom 2024-12-11",
"url": "https://access.redhat.com/errata/RHSA-2024:10942"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:10939 vom 2024-12-11",
"url": "https://access.redhat.com/errata/RHSA-2024:10939"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:10944 vom 2024-12-11",
"url": "https://access.redhat.com/errata/RHSA-2024:10944"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:10943 vom 2024-12-11",
"url": "https://access.redhat.com/errata/RHSA-2024:10943"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-10939 vom 2024-12-12",
"url": "https://linux.oracle.com/errata/ELSA-2024-10939.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-10943 vom 2024-12-12",
"url": "https://linux.oracle.com/errata/ELSA-2024-10943.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4314-1 vom 2024-12-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/SARXL66CQHD5VSFG5PUBNBVBPVFUN4KT/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4315-1 vom 2024-12-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/LQPWDP54GSTHYCV4CTCOE67D2ANVPPUW/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4316-1 vom 2024-12-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/S4I5Z6ALCJLHTP25U3HMJHEXN4DR2USM/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4318-1 vom 2024-12-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/019999.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12884 vom 2024-12-17",
"url": "https://linux.oracle.com/errata/ELSA-2024-12884.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4345-1 vom 2024-12-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020018.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4346-1 vom 2024-12-17",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/2FJJW5HEWYSYWAJBRWARBIZ4AQHAXLNG/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4367-1 vom 2024-12-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020025.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4364-1 vom 2024-12-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020019.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4376-1 vom 2024-12-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020028.html"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2024:10944 vom 2024-12-19",
"url": "https://errata.build.resf.org/RLSA-2024:10944"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4376-1 vom 2024-12-18",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/WFOJHFFEHK42VPQ6XLZWB77H5OEJ3FF4/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4376-1 vom 2024-12-18",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/WFOJHFFEHK42VPQ6XLZWB77H5OEJ3FF4/"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:11486 vom 2024-12-19",
"url": "https://access.redhat.com/errata/RHSA-2024:11486"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12887 vom 2024-12-18",
"url": "https://linux.oracle.com/errata/ELSA-2024-12887.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2024:4387-1 vom 2024-12-19",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-December/020032.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4008 vom 2025-01-03",
"url": "https://lists.debian.org/debian-lts-announce/2025/01/msg00001.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-11486 vom 2025-01-07",
"url": "https://linux.oracle.com/errata/ELSA-2024-11486.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0059 vom 2025-01-08",
"url": "https://access.redhat.com/errata/RHSA-2025:0059"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0035-1 vom 2025-01-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020070.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-0059 vom 2025-01-11",
"url": "https://linux.oracle.com/errata/ELSA-2025-0059.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0117-1 vom 2025-01-15",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020131.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0154-1 vom 2025-01-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020151.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0153-1 vom 2025-01-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020150.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0201-1 vom 2025-01-21",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/YFCZRPOJ45QWVUSJAEK53OBSFTOQ3W5H/"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASKERNEL-5.10-2025-078 vom 2025-01-24",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.10-2025-078.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0236-1 vom 2025-01-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-January/020196.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASKERNEL-5.4-2025-090 vom 2025-01-24",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.4-2025-090.html"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2025:14705-1 vom 2025-01-29",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/T7LN2FDZYBYZRLX5LOA3REDAXV7VKGW4/"
},
{
"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": "Amazon Linux Security Advisory ALASLIVEPATCH-2025-195 vom 2025-02-04",
"url": "https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-2025-195.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASLIVEPATCH-2025-196 vom 2025-02-04",
"url": "https://alas.aws.amazon.com/AL2/ALASLIVEPATCH-2025-196.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS-2025-1957 vom 2025-02-05",
"url": "https://alas.aws.amazon.com/ALAS-2025-1957.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20095 vom 2025-02-11",
"url": "https://linux.oracle.com/errata/ELSA-2025-20095.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0428-1 vom 2025-02-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020311.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0499-1 vom 2025-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020336.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0557-1 vom 2025-02-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020350.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0564-1 vom 2025-02-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020361.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1658 vom 2025-02-19",
"url": "https://access.redhat.com/errata/RHSA-2025:1658"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7277-1 vom 2025-02-19",
"url": "https://ubuntu.com/security/notices/USN-7277-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7276-1 vom 2025-02-19",
"url": "https://ubuntu.com/security/notices/USN-7276-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7289-1 vom 2025-02-24",
"url": "https://ubuntu.com/security/notices/USN-7289-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7288-1 vom 2025-02-24",
"url": "https://ubuntu.com/security/notices/USN-7288-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7293-1 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7293-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7289-2 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7289-2"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7184085 vom 2025-02-25",
"url": "https://www.ibm.com/support/pages/node/7184085"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7291-1 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7291-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7288-2 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7288-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7294-1 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7294-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7295-1 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7295-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7289-3 vom 2025-02-25",
"url": "https://ubuntu.com/security/notices/USN-7289-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7294-2 vom 2025-02-27",
"url": "https://ubuntu.com/security/notices/USN-7294-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7289-4 vom 2025-02-27",
"url": "https://ubuntu.com/security/notices/USN-7289-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7308-1 vom 2025-02-27",
"url": "https://ubuntu.com/security/notices/USN-7308-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7294-3 vom 2025-02-28",
"url": "https://ubuntu.com/security/notices/USN-7294-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7310-1 vom 2025-02-28",
"url": "https://ubuntu.com/security/notices/USN-7310-1"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4076 vom 2025-03-01",
"url": "https://lists.debian.org/debian-lts-announce/2025/03/msg00001.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4075 vom 2025-03-01",
"url": "https://lists.debian.org/debian-lts-announce/2025/03/msg00002.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7294-4 vom 2025-03-03",
"url": "https://ubuntu.com/security/notices/USN-7294-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7331-1 vom 2025-03-05",
"url": "https://ubuntu.com/security/notices/USN-7331-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7332-1 vom 2025-03-05",
"url": "https://ubuntu.com/security/notices/USN-7332-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7333-1 vom 2025-03-05",
"url": "https://ubuntu.com/security/notices/USN-7333-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7332-2 vom 2025-03-11",
"url": "https://ubuntu.com/security/notices/USN-7332-2"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0201-2 vom 2025-03-11",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020501.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7344-1 vom 2025-03-11",
"url": "https://ubuntu.com/security/notices/USN-7344-1"
},
{
"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": "Ubuntu Security Notice USN-7342-1 vom 2025-03-11",
"url": "https://ubuntu.com/security/notices/USN-7342-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7332-3 vom 2025-03-13",
"url": "https://ubuntu.com/security/notices/USN-7332-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7344-2 vom 2025-03-13",
"url": "https://ubuntu.com/security/notices/USN-7344-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7386-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7386-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-7383-2 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7383-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7385-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7385-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7383-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7383-1"
},
{
"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-7384-1 vom 2025-03-27",
"url": "https://ubuntu.com/security/notices/USN-7384-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-7389-1 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7389-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-7387-3 vom 2025-03-28",
"url": "https://ubuntu.com/security/notices/USN-7387-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7401-1 vom 2025-04-01",
"url": "https://ubuntu.com/security/notices/USN-7401-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7384-2 vom 2025-04-01",
"url": "https://ubuntu.com/security/notices/USN-7384-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7403-1 vom 2025-04-02",
"url": "https://ubuntu.com/security/notices/USN-7403-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-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": "Debian Security Advisory DSA-5900 vom 2025-04-12",
"url": "https://lists.debian.org/debian-security-announce/2025/msg00062.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20270 vom 2025-04-14",
"url": "https://linux.oracle.com/errata/ELSA-2025-20270.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7449-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7449-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7450-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7450-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7451-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7451-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7453-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7453-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7452-1 vom 2025-04-23",
"url": "https://ubuntu.com/security/notices/USN-7452-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7455-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7455-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-7449-2 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7449-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7455-3 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7455-3"
},
{
"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-7460-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7460-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7461-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7461-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7455-2 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7455-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7462-2 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7462-2"
},
{
"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-7461-2 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7461-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7462-1 vom 2025-04-24",
"url": "https://ubuntu.com/security/notices/USN-7462-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7455-4 vom 2025-04-25",
"url": "https://ubuntu.com/security/notices/USN-7455-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7468-1 vom 2025-04-28",
"url": "https://ubuntu.com/security/notices/USN-7468-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7459-2 vom 2025-04-28",
"url": "https://ubuntu.com/security/notices/USN-7459-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7455-5 vom 2025-04-29",
"url": "https://ubuntu.com/security/notices/USN-7455-5"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7461-3 vom 2025-05-02",
"url": "https://ubuntu.com/security/notices/USN-7461-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7475-1 vom 2025-05-02",
"url": "https://ubuntu.com/security/notices/USN-7475-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-1 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-2 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-5 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-5"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-3 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7496-4 vom 2025-05-07",
"url": "https://ubuntu.com/security/notices/USN-7496-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7506-2 vom 2025-05-12",
"url": "https://ubuntu.com/security/notices/USN-7506-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7506-1 vom 2025-05-12",
"url": "https://ubuntu.com/security/notices/USN-7506-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7506-3 vom 2025-05-12",
"url": "https://ubuntu.com/security/notices/USN-7506-3"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20320 vom 2025-05-12",
"url": "https://linux.oracle.com/errata/ELSA-2025-20320.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7506-4 vom 2025-05-13",
"url": "https://ubuntu.com/security/notices/USN-7506-4"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:6966 vom 2025-05-13",
"url": "https://access.redhat.com/errata/RHSA-2025:6966"
},
{
"category": "external",
"summary": "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-7524-1 vom 2025-05-26",
"url": "https://ubuntu.com/security/notices/USN-7524-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7540-1 vom 2025-05-28",
"url": "https://ubuntu.com/security/notices/USN-7540-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7539-1 vom 2025-05-28",
"url": "https://ubuntu.com/security/notices/USN-7539-1"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4193 vom 2025-05-30",
"url": "https://lists.debian.org/debian-lts-announce/2025/05/msg00045.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASKERNEL-5.15-2025-072 vom 2025-05-29",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.15-2025-072.html"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2025-213 vom 2025-05-30",
"url": "https://www.dell.com/support/kbdoc/de-de/000326299/dsa-2025-213-security-update-for-dell-avamar-dell-networker-virtual-edition-nve-and-dell-powerprotect-dp-series-appliance-dell-integrated-data-protection-appliance-idpa-multiple-third-party-vulnerabilities"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20247-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021076.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025: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:20246-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021078.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025: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: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:20164-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021175.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20192-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021150.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20190-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021154.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025: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:20163-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021187.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASKERNEL-5.15-2025-073 vom 2025-06-10",
"url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.15-2025-073.html"
},
{
"category": "external",
"summary": "Siemens Security Advisory SSA-082556 vom 2025-06-10",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-082556.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: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: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: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: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: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: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:20419-1 vom 2025-06-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021591.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:02069-1 vom 2025-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021622.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02070-1 vom 2025-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021626.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02071-1 vom 2025-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021625.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02076-1 vom 2025-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021630.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02077-1 vom 2025-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021629.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02116-1 vom 2025-06-25",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/3AAQLUV5OW5RLJANJU3SMJEALS56RYAZ/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02117-1 vom 2025-06-25",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/KCGW37UJYNLW5YSZKM6WHKZJ32OWUQZE/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20436-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021673.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20437-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021672.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20435-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021674.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20431-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021676.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02126-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021661.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02127-1 vom 2025-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021660.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02162-1 vom 2025-06-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021702.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20448-1 vom 2025-06-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021719.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20450-1 vom 2025-06-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021717.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-20470 vom 2025-07-16",
"url": "https://linux.oracle.com/errata/ELSA-2025-20470.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7654-1 vom 2025-07-18",
"url": "https://ubuntu.com/security/notices/USN-7654-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7654-3 vom 2025-07-18",
"url": "https://ubuntu.com/security/notices/USN-7654-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7654-2 vom 2025-07-18",
"url": "https://ubuntu.com/security/notices/USN-7654-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7655-1 vom 2025-07-18",
"url": "https://ubuntu.com/security/notices/USN-7655-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02388-1 vom 2025-07-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021860.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02411-1 vom 2025-07-21",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/DEKG43SVEEUNQXJBCRXWGSWJ6NQ36NUC/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02389-1 vom 2025-07-21",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021882.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02390-1 vom 2025-07-21",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021881.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02412-1 vom 2025-07-21",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021866.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02440-1 vom 2025-07-21",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/ON72ZMOEO6E3K3KZFRVFHX5LUYA6RAXJ/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02449-1 vom 2025-07-21",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/NOIECZ42HAJGKZ7TVGI4LLLNAG27ZF7L/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02420-1 vom 2025-07-21",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021886.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7654-4 vom 2025-07-22",
"url": "https://ubuntu.com/security/notices/USN-7654-4"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7654-5 vom 2025-07-29",
"url": "https://ubuntu.com/security/notices/USN-7654-5"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20526-1 vom 2025-08-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022026.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20517-1 vom 2025-08-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022034.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20518-1 vom 2025-08-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022033.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20525-1 vom 2025-08-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022027.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20540-1 vom 2025-08-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022104.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7686-1 vom 2025-08-05",
"url": "https://ubuntu.com/security/notices/USN-7686-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20544-1 vom 2025-08-05",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022100.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7711-1 vom 2025-08-22",
"url": "https://ubuntu.com/security/notices/USN-7711-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7712-1 vom 2025-08-22",
"url": "https://ubuntu.com/security/notices/USN-7712-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7712-2 vom 2025-09-02",
"url": "https://ubuntu.com/security/notices/USN-7712-2"
},
{
"category": "external",
"summary": "Dell Security Update vom 2025-10-02",
"url": "https://www.dell.com/support/kbdoc/000376224"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2025-390 vom 2025-11-05",
"url": "https://www.dell.com/support/kbdoc/000385230"
},
{
"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: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:20291-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024195.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026: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: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:20302-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024188.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:20323-1 vom 2026-02-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024172.html"
}
],
"source_lang": "en-US",
"title": "Linux Kernel: Mehrere Schwachstellen erm\u00f6glichen nicht spezifizierten Angriff",
"tracking": {
"current_release_date": "2026-02-16T23:00:00.000+00:00",
"generator": {
"date": "2026-02-17T09:51:19.434+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.5.0"
}
},
"id": "WID-SEC-W-2024-3397",
"initial_release_date": "2024-11-10T23:00:00.000+00:00",
"revision_history": [
{
"date": "2024-11-10T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2024-11-24T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2024-11-25T23:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2024-11-27T23:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2024-12-10T23:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2024-12-11T23:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2024-12-12T23:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2024-12-15T23:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-12-16T23:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2024-12-17T23:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-12-18T23:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von SUSE, Rocky Enterprise Software Foundation, Red Hat und Oracle Linux aufgenommen"
},
{
"date": "2024-12-19T23:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-01-02T23:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-01-06T23:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-01-07T23:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-01-08T23:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-01-12T23:00:00.000+00:00",
"number": "17",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-01-15T23:00:00.000+00:00",
"number": "18",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-01-19T23:00:00.000+00:00",
"number": "19",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-01-21T23:00:00.000+00:00",
"number": "20",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-01-26T23:00:00.000+00:00",
"number": "21",
"summary": "Neue Updates von Amazon und SUSE aufgenommen"
},
{
"date": "2025-01-29T23:00:00.000+00:00",
"number": "22",
"summary": "Neue Updates von openSUSE und SUSE aufgenommen"
},
{
"date": "2025-02-03T23:00:00.000+00:00",
"number": "23",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2025-02-05T23:00:00.000+00:00",
"number": "24",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2025-02-10T23:00:00.000+00:00",
"number": "25",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-02-11T23:00:00.000+00:00",
"number": "26",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-13T23:00:00.000+00:00",
"number": "27",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-16T23:00:00.000+00:00",
"number": "28",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-17T23:00:00.000+00:00",
"number": "29",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-18T23:00:00.000+00:00",
"number": "30",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-02-19T23:00:00.000+00:00",
"number": "31",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-02-24T23:00:00.000+00:00",
"number": "32",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-02-25T23:00:00.000+00:00",
"number": "33",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-02-27T23:00:00.000+00:00",
"number": "34",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-02T23:00:00.000+00:00",
"number": "35",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-03-03T23:00:00.000+00:00",
"number": "36",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-05T23:00:00.000+00:00",
"number": "37",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-11T23:00:00.000+00:00",
"number": "38",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2025-03-12T23:00:00.000+00:00",
"number": "39",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-27T23:00:00.000+00:00",
"number": "40",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-03-30T22:00:00.000+00:00",
"number": "41",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-01T22:00:00.000+00:00",
"number": "42",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-02T22:00:00.000+00:00",
"number": "43",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-03T22:00:00.000+00:00",
"number": "44",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-07T22:00:00.000+00:00",
"number": "45",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-13T22:00:00.000+00:00",
"number": "46",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2025-04-23T22:00:00.000+00:00",
"number": "47",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-24T22:00:00.000+00:00",
"number": "48",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-04-28T22:00:00.000+00:00",
"number": "49",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-01T22:00:00.000+00:00",
"number": "50",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-06T22:00:00.000+00:00",
"number": "51",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-12T22:00:00.000+00:00",
"number": "52",
"summary": "Neue Updates von Ubuntu und Oracle Linux aufgenommen"
},
{
"date": "2025-05-13T22:00:00.000+00:00",
"number": "53",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-05-20T22:00:00.000+00:00",
"number": "54",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-26T22:00:00.000+00:00",
"number": "55",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-27T22:00:00.000+00:00",
"number": "56",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-05-29T22:00:00.000+00:00",
"number": "57",
"summary": "Neue Updates von Debian und Amazon aufgenommen"
},
{
"date": "2025-06-03T22:00:00.000+00:00",
"number": "58",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-09T22:00:00.000+00:00",
"number": "59",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2025-06-10T22:00:00.000+00:00",
"number": "60",
"summary": "Neue Updates von Siemens aufgenommen"
},
{
"date": "2025-06-11T22:00:00.000+00:00",
"number": "61",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-15T22:00:00.000+00:00",
"number": "62",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-16T22:00:00.000+00:00",
"number": "63",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-17T22:00:00.000+00:00",
"number": "64",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-19T22:00:00.000+00:00",
"number": "65",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-23T22:00:00.000+00:00",
"number": "66",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-24T22:00:00.000+00:00",
"number": "67",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-25T22:00:00.000+00:00",
"number": "68",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-26T22:00:00.000+00:00",
"number": "69",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-29T22:00:00.000+00:00",
"number": "70",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-30T22:00:00.000+00:00",
"number": "71",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-07-15T22:00:00.000+00:00",
"number": "72",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-07-17T22:00:00.000+00:00",
"number": "73",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-07-20T22:00:00.000+00:00",
"number": "74",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-07-21T22:00:00.000+00:00",
"number": "75",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-07-29T22:00:00.000+00:00",
"number": "76",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-08-03T22:00:00.000+00:00",
"number": "77",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-08-05T22:00:00.000+00:00",
"number": "78",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2025-08-24T22:00:00.000+00:00",
"number": "79",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-09-02T22:00:00.000+00:00",
"number": "80",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-10-01T22:00:00.000+00:00",
"number": "81",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2025-11-04T23:00:00.000+00:00",
"number": "82",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2026-02-15T23:00:00.000+00:00",
"number": "83",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-02-16T23:00:00.000+00:00",
"number": "84",
"summary": "Neue Updates von SUSE aufgenommen"
}
],
"status": "final",
"version": "84"
}
},
"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": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c7.5.0 UP11 IF02",
"product": {
"name": "IBM QRadar SIEM \u003c7.5.0 UP11 IF02",
"product_id": "T041397"
}
},
{
"category": "product_version",
"name": "7.5.0 UP11 IF02",
"product": {
"name": "IBM QRadar SIEM 7.5.0 UP11 IF02",
"product_id": "T041397-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:qradar_siem:7.5.0_up11_if02"
}
}
}
],
"category": "product_name",
"name": "QRadar SIEM"
}
],
"category": "vendor",
"name": "IBM"
},
{
"branches": [
{
"category": "product_name",
"name": "Open Source Linux Kernel",
"product": {
"name": "Open Source Linux Kernel",
"product_id": "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": "product_name",
"name": "SUSE openSUSE",
"product": {
"name": "SUSE openSUSE",
"product_id": "T027843",
"product_identification_helper": {
"cpe": "cpe:/o:suse:opensuse:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
},
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "1500 CPU",
"product": {
"name": "Siemens SIMATIC S7 1500 CPU",
"product_id": "T025776",
"product_identification_helper": {
"cpe": "cpe:/h:siemens:simatic_s7:1500_cpu"
}
}
}
],
"category": "product_name",
"name": "SIMATIC S7"
}
],
"category": "vendor",
"name": "Siemens"
},
{
"branches": [
{
"category": "product_name",
"name": "Ubuntu Linux",
"product": {
"name": "Ubuntu Linux",
"product_id": "T000126",
"product_identification_helper": {
"cpe": "cpe:/o:canonical:ubuntu_linux:-"
}
}
}
],
"category": "vendor",
"name": "Ubuntu"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-50212",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50212"
},
{
"cve": "CVE-2024-50213",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50213"
},
{
"cve": "CVE-2024-50214",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50214"
},
{
"cve": "CVE-2024-50215",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50215"
},
{
"cve": "CVE-2024-50216",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50216"
},
{
"cve": "CVE-2024-50217",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50217"
},
{
"cve": "CVE-2024-50218",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50218"
},
{
"cve": "CVE-2024-50219",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50219"
},
{
"cve": "CVE-2024-50220",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50220"
},
{
"cve": "CVE-2024-50221",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50221"
},
{
"cve": "CVE-2024-50222",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50222"
},
{
"cve": "CVE-2024-50223",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50223"
},
{
"cve": "CVE-2024-50224",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50224"
},
{
"cve": "CVE-2024-50225",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50225"
},
{
"cve": "CVE-2024-50226",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50226"
},
{
"cve": "CVE-2024-50227",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50227"
},
{
"cve": "CVE-2024-50228",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50228"
},
{
"cve": "CVE-2024-50229",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50229"
},
{
"cve": "CVE-2024-50230",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50230"
},
{
"cve": "CVE-2024-50231",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50231"
},
{
"cve": "CVE-2024-50232",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50232"
},
{
"cve": "CVE-2024-50233",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50233"
},
{
"cve": "CVE-2024-50234",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50234"
},
{
"cve": "CVE-2024-50235",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50235"
},
{
"cve": "CVE-2024-50236",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50236"
},
{
"cve": "CVE-2024-50237",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50237"
},
{
"cve": "CVE-2024-50238",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50238"
},
{
"cve": "CVE-2024-50239",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50239"
},
{
"cve": "CVE-2024-50240",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50240"
},
{
"cve": "CVE-2024-50241",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50241"
},
{
"cve": "CVE-2024-50242",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50242"
},
{
"cve": "CVE-2024-50243",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50243"
},
{
"cve": "CVE-2024-50244",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50244"
},
{
"cve": "CVE-2024-50245",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50245"
},
{
"cve": "CVE-2024-50246",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50246"
},
{
"cve": "CVE-2024-50247",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50247"
},
{
"cve": "CVE-2024-50248",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50248"
},
{
"cve": "CVE-2024-50249",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50249"
},
{
"cve": "CVE-2024-50250",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50250"
},
{
"cve": "CVE-2024-50251",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50251"
},
{
"cve": "CVE-2024-50252",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50252"
},
{
"cve": "CVE-2024-50253",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50253"
},
{
"cve": "CVE-2024-50254",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50254"
},
{
"cve": "CVE-2024-50255",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50255"
},
{
"cve": "CVE-2024-50256",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50256"
},
{
"cve": "CVE-2024-50257",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50257"
},
{
"cve": "CVE-2024-50258",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50258"
},
{
"cve": "CVE-2024-50259",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50259"
},
{
"cve": "CVE-2024-50260",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50260"
},
{
"cve": "CVE-2024-50261",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50261"
},
{
"cve": "CVE-2024-50262",
"product_status": {
"known_affected": [
"67646",
"T034583",
"T004914",
"T032255",
"T039664",
"2951",
"T002207",
"T045879",
"T000126",
"T027843",
"T046484",
"T047343",
"398363",
"T025776",
"T045881",
"T047344",
"T041397",
"T048301"
]
},
"release_date": "2024-11-10T23:00:00.000+00:00",
"title": "CVE-2024-50262"
}
]
}
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.