Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2024-58057 (GCVE-0-2024-58057)
Vulnerability from cvelistv5
{ "containers": { "cna": { "affected": [ { "defaultStatus": "unaffected", "product": "Linux", "programFiles": [ "drivers/net/ethernet/intel/idpf/idpf_main.c" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "lessThan": "66bf9b3d9e1658333741f075320dc8e7cd6f8d09", "status": "affected", "version": "0fe45467a1041ea3657a7fa3a791c84c104fbd34", "versionType": "git" }, { "lessThan": "868202ec3854e13de1164e4a3e25521194c5af72", "status": "affected", "version": "0fe45467a1041ea3657a7fa3a791c84c104fbd34", "versionType": "git" }, { "lessThan": "9a5b021cb8186f1854bac2812bd4f396bb1e881c", "status": "affected", "version": "0fe45467a1041ea3657a7fa3a791c84c104fbd34", "versionType": "git" } ] }, { "defaultStatus": "affected", "product": "Linux", "programFiles": [ "drivers/net/ethernet/intel/idpf/idpf_main.c" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "status": "affected", "version": "6.7" }, { "lessThan": "6.7", "status": "unaffected", "version": "0", "versionType": "semver" }, { "lessThanOrEqual": "6.12.*", "status": "unaffected", "version": "6.12.13", "versionType": "semver" }, { "lessThanOrEqual": "6.13.*", "status": "unaffected", "version": "6.13.2", "versionType": "semver" }, { "lessThanOrEqual": "*", "status": "unaffected", "version": "6.14", "versionType": "original_commit_for_fix" } ] } ], "cpeApplicability": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*", "versionEndExcluding": "6.12.13", "versionStartIncluding": "6.7", "vulnerable": true }, { "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*", "versionEndExcluding": "6.13.2", "versionStartIncluding": "6.7", "vulnerable": true }, { "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*", "versionEndExcluding": "6.14", "versionStartIncluding": "6.7", "vulnerable": true } ], "negate": false, "operator": "OR" } ] } ], "descriptions": [ { "lang": "en", "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nidpf: convert workqueues to unbound\n\nWhen a workqueue is created with `WQ_UNBOUND`, its work items are\nserved by special worker-pools, whose host workers are not bound to\nany specific CPU. In the default configuration (i.e. when\n`queue_delayed_work` and friends do not specify which CPU to run the\nwork item on), `WQ_UNBOUND` allows the work item to be executed on any\nCPU in the same node of the CPU it was enqueued on. While this\nsolution potentially sacrifices locality, it avoids contention with\nother processes that might dominate the CPU time of the processor the\nwork item was scheduled on.\n\nThis is not just a theoretical problem: in a particular scenario\nmisconfigured process was hogging most of the time from CPU0, leaving\nless than 0.5% of its CPU time to the kworker. The IDPF workqueues\nthat were using the kworker on CPU0 suffered large completion delays\nas a result, causing performance degradation, timeouts and eventual\nsystem crash.\n\n\n* I have also run a manual test to gauge the performance\n improvement. The test consists of an antagonist process\n (`./stress --cpu 2`) consuming as much of CPU 0 as possible. This\n process is run under `taskset 01` to bind it to CPU0, and its\n priority is changed with `chrt -pQ 9900 10000 ${pid}` and\n `renice -n -20 ${pid}` after start.\n\n Then, the IDPF driver is forced to prefer CPU0 by editing all calls\n to `queue_delayed_work`, `mod_delayed_work`, etc... to use CPU 0.\n\n Finally, `ktraces` for the workqueue events are collected.\n\n Without the current patch, the antagonist process can force\n arbitrary delays between `workqueue_queue_work` and\n `workqueue_execute_start`, that in my tests were as high as\n `30ms`. With the current patch applied, the workqueue can be\n migrated to another unloaded CPU in the same node, and, keeping\n everything else equal, the maximum delay I could see was `6us`." } ], "providerMetadata": { "dateUpdated": "2025-05-04T10:08:53.250Z", "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "shortName": "Linux" }, "references": [ { "url": "https://git.kernel.org/stable/c/66bf9b3d9e1658333741f075320dc8e7cd6f8d09" }, { "url": "https://git.kernel.org/stable/c/868202ec3854e13de1164e4a3e25521194c5af72" }, { "url": "https://git.kernel.org/stable/c/9a5b021cb8186f1854bac2812bd4f396bb1e881c" } ], "title": "idpf: convert workqueues to unbound", "x_generator": { "engine": "bippy-1.2.0" } } }, "cveMetadata": { "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "assignerShortName": "Linux", "cveId": "CVE-2024-58057", "datePublished": "2025-03-06T15:54:00.345Z", "dateReserved": "2025-03-06T15:52:09.179Z", "dateUpdated": "2025-05-04T10:08:53.250Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "vulnerability-lookup:meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2024-58057\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2025-03-06T16:15:51.940\",\"lastModified\":\"2025-03-06T16:15:51.940\",\"vulnStatus\":\"Received\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nidpf: convert workqueues to unbound\\n\\nWhen a workqueue is created with `WQ_UNBOUND`, its work items are\\nserved by special worker-pools, whose host workers are not bound to\\nany specific CPU. In the default configuration (i.e. when\\n`queue_delayed_work` and friends do not specify which CPU to run the\\nwork item on), `WQ_UNBOUND` allows the work item to be executed on any\\nCPU in the same node of the CPU it was enqueued on. While this\\nsolution potentially sacrifices locality, it avoids contention with\\nother processes that might dominate the CPU time of the processor the\\nwork item was scheduled on.\\n\\nThis is not just a theoretical problem: in a particular scenario\\nmisconfigured process was hogging most of the time from CPU0, leaving\\nless than 0.5% of its CPU time to the kworker. The IDPF workqueues\\nthat were using the kworker on CPU0 suffered large completion delays\\nas a result, causing performance degradation, timeouts and eventual\\nsystem crash.\\n\\n\\n* I have also run a manual test to gauge the performance\\n improvement. The test consists of an antagonist process\\n (`./stress --cpu 2`) consuming as much of CPU 0 as possible. This\\n process is run under `taskset 01` to bind it to CPU0, and its\\n priority is changed with `chrt -pQ 9900 10000 ${pid}` and\\n `renice -n -20 ${pid}` after start.\\n\\n Then, the IDPF driver is forced to prefer CPU0 by editing all calls\\n to `queue_delayed_work`, `mod_delayed_work`, etc... to use CPU 0.\\n\\n Finally, `ktraces` for the workqueue events are collected.\\n\\n Without the current patch, the antagonist process can force\\n arbitrary delays between `workqueue_queue_work` and\\n `workqueue_execute_start`, that in my tests were as high as\\n `30ms`. With the current patch applied, the workqueue can be\\n migrated to another unloaded CPU in the same node, and, keeping\\n everything else equal, the maximum delay I could see was `6us`.\"}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/66bf9b3d9e1658333741f075320dc8e7cd6f8d09\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/868202ec3854e13de1164e4a3e25521194c5af72\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/9a5b021cb8186f1854bac2812bd4f396bb1e881c\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}" } }
CERTFR-2025-AVI-0307
Vulnerability from certfr_avis
De multiples vulnérabilités ont été découvertes dans le noyau Linux de SUSE. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire, une élévation de privilèges et une atteinte à la confidentialité des données.
Solutions
Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation).
Vendor | Product | Description | ||
---|---|---|---|---|
SUSE | N/A | SUSE Linux Enterprise Micro for Rancher 5.3 | ||
SUSE | N/A | SUSE Linux Enterprise Desktop 15 SP6 | ||
SUSE | N/A | SUSE Linux Enterprise Micro 5.3 | ||
SUSE | N/A | SUSE Manager Proxy 4.3 | ||
SUSE | N/A | Basesystem Module 15-SP6 | ||
SUSE | N/A | SUSE Linux Enterprise Micro for Rancher 5.2 | ||
SUSE | N/A | SUSE Real Time Module 15-SP6 | ||
SUSE | N/A | SUSE Linux Enterprise High Availability Extension 15 SP4 | ||
SUSE | N/A | Public Cloud Module 15-SP6 | ||
SUSE | N/A | SUSE Linux Enterprise Micro for Rancher 5.4 | ||
SUSE | N/A | SUSE Linux Enterprise Live Patching 15-SP4 | ||
SUSE | N/A | SUSE Manager Retail Branch Server 4.3 | ||
SUSE | N/A | openSUSE Leap 15.4 | ||
SUSE | N/A | SUSE Linux Enterprise Server for SAP Applications 15 SP4 | ||
SUSE | N/A | openSUSE Leap 15.5 | ||
SUSE | N/A | SUSE Manager Server 4.3 | ||
SUSE | N/A | SUSE Linux Enterprise High Performance Computing 15 SP4 | ||
SUSE | N/A | SUSE Linux Enterprise Live Patching 15-SP6 | ||
SUSE | N/A | Legacy Module 15-SP6 | ||
SUSE | N/A | SUSE Linux Enterprise Server 15 SP4 LTSS | ||
SUSE | N/A | SUSE Linux Enterprise Micro 5.2 | ||
SUSE | N/A | SUSE Linux Enterprise Real Time 15 SP6 | ||
SUSE | N/A | openSUSE Leap 15.6 | ||
SUSE | N/A | SUSE Linux Enterprise Server 15 SP4 | ||
SUSE | N/A | SUSE Linux Enterprise High Performance Computing ESPOS 15 SP4 | ||
SUSE | N/A | SUSE Linux Enterprise High Performance Computing LTSS 15 SP4 | ||
SUSE | N/A | SUSE Linux Enterprise Real Time 15 SP4 | ||
SUSE | N/A | SUSE Linux Enterprise Workstation Extension 15 SP6 | ||
SUSE | N/A | SUSE Linux Enterprise Micro 5.1 | ||
SUSE | N/A | SUSE Linux Enterprise Micro 5.4 | ||
SUSE | N/A | SUSE Linux Enterprise High Availability Extension 15 SP6 | ||
SUSE | N/A | SUSE Linux Enterprise Server for SAP Applications 15 SP6 | ||
SUSE | N/A | Development Tools Module 15-SP6 | ||
SUSE | N/A | SUSE Linux Enterprise Server 15 SP6 | ||
SUSE | N/A | SUSE Linux Enterprise Micro 5.5 |
Title | Publication Time | Tags | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
{ "$ref": "https://www.cert.ssi.gouv.fr/openapi.json", "affected_systems": [ { "description": "SUSE Linux Enterprise Micro for Rancher 5.3", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Desktop 15 SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.3", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Manager Proxy 4.3", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "Basesystem Module 15-SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro for Rancher 5.2", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Real Time Module 15-SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise High Availability Extension 15 SP4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "Public Cloud Module 15-SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro for Rancher 5.4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Live Patching 15-SP4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Manager Retail Branch Server 4.3", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "openSUSE Leap 15.4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server for SAP Applications 15 SP4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "openSUSE Leap 15.5", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Manager Server 4.3", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise High Performance Computing 15 SP4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Live Patching 15-SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "Legacy Module 15-SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server 15 SP4 LTSS", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.2", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Real Time 15 SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "openSUSE Leap 15.6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server 15 SP4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise High Performance Computing ESPOS 15 SP4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise High Performance Computing LTSS 15 SP4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Real Time 15 SP4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Workstation Extension 15 SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.1", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.4", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise High Availability Extension 15 SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server for SAP Applications 15 SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "Development Tools Module 15-SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server 15 SP6", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.5", "product": { "name": "N/A", "vendor": { "name": "SUSE", "scada": false } } } ], "affected_systems_content": "", "content": "## Solutions\n\nSe r\u00e9f\u00e9rer au bulletin de s\u00e9curit\u00e9 de l\u0027\u00e9diteur pour l\u0027obtention des correctifs (cf. section Documentation).", "cves": [ { "name": "CVE-2017-5753", "url": "https://www.cve.org/CVERecord?id=CVE-2017-5753" }, { "name": "CVE-2020-27835", "url": "https://www.cve.org/CVERecord?id=CVE-2020-27835" }, { "name": "CVE-2022-1016", "url": "https://www.cve.org/CVERecord?id=CVE-2022-1016" }, { "name": "CVE-2022-1184", "url": "https://www.cve.org/CVERecord?id=CVE-2022-1184" }, { "name": "CVE-2022-1048", "url": "https://www.cve.org/CVERecord?id=CVE-2022-1048" }, { "name": "CVE-2022-0168", "url": "https://www.cve.org/CVERecord?id=CVE-2022-0168" }, { "name": "CVE-2022-3435", "url": "https://www.cve.org/CVERecord?id=CVE-2022-3435" }, { "name": "CVE-2022-29901", "url": "https://www.cve.org/CVERecord?id=CVE-2022-29901" }, { "name": "CVE-2022-29900", "url": "https://www.cve.org/CVERecord?id=CVE-2022-29900" }, { "name": "CVE-2022-2977", "url": "https://www.cve.org/CVERecord?id=CVE-2022-2977" }, { "name": "CVE-2022-3303", "url": "https://www.cve.org/CVERecord?id=CVE-2022-3303" }, { "name": "CVE-2023-0179", "url": "https://www.cve.org/CVERecord?id=CVE-2023-0179" }, { "name": "CVE-2023-1652", "url": "https://www.cve.org/CVERecord?id=CVE-2023-1652" }, { "name": "CVE-2023-28410", "url": "https://www.cve.org/CVERecord?id=CVE-2023-28410" }, { "name": "CVE-2023-2162", "url": "https://www.cve.org/CVERecord?id=CVE-2023-2162" }, { "name": "CVE-2023-3567", "url": "https://www.cve.org/CVERecord?id=CVE-2023-3567" }, { "name": "CVE-2024-2201", "url": "https://www.cve.org/CVERecord?id=CVE-2024-2201" }, { "name": "CVE-2024-26634", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26634" }, { "name": "CVE-2021-47248", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47248" }, { "name": "CVE-2024-35910", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35910" }, { "name": "CVE-2024-26873", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26873" }, { "name": "CVE-2024-35826", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35826" }, { "name": "CVE-2024-41005", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41005" }, { "name": "CVE-2024-38606", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38606" }, { "name": "CVE-2024-41077", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41077" }, { "name": "CVE-2024-42229", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42229" }, { "name": "CVE-2024-41092", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41092" }, { "name": "CVE-2024-42098", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42098" }, { "name": "CVE-2024-42240", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42240" }, { "name": "CVE-2021-47517", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47517" }, { "name": "CVE-2024-46782", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46782" }, { "name": "CVE-2024-50126", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50126" }, { "name": "CVE-2024-50290", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50290" }, { "name": "CVE-2024-53057", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53057" }, { "name": "CVE-2024-53063", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53063" }, { "name": "CVE-2024-42307", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42307" }, { "name": "CVE-2024-43820", "url": "https://www.cve.org/CVERecord?id=CVE-2024-43820" }, { "name": "CVE-2024-49924", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49924" }, { "name": "CVE-2024-47678", "url": "https://www.cve.org/CVERecord?id=CVE-2024-47678" }, { "name": "CVE-2024-53140", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53140" }, { "name": "CVE-2024-53064", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53064" }, { "name": "CVE-2024-56642", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56642" }, { "name": "CVE-2024-56651", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56651" }, { "name": "CVE-2024-49994", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49994" }, { "name": "CVE-2024-53124", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53124" }, { "name": "CVE-2024-56703", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56703" }, { "name": "CVE-2025-21631", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21631" }, { "name": "CVE-2025-21671", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21671" }, { "name": "CVE-2024-49940", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49940" }, { "name": "CVE-2024-50056", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50056" }, { "name": "CVE-2024-50140", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50140" }, { "name": "CVE-2024-50152", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50152" }, { "name": "CVE-2024-53163", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53163" }, { "name": "CVE-2024-53176", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53176" }, { "name": "CVE-2024-53178", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53178" }, { "name": "CVE-2024-56702", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56702" }, { "name": "CVE-2024-56751", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56751" }, { "name": "CVE-2023-52926", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52926" }, { "name": "CVE-2024-47408", "url": "https://www.cve.org/CVERecord?id=CVE-2024-47408" }, { "name": "CVE-2024-49571", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49571" }, { "name": "CVE-2024-53680", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53680" }, { "name": "CVE-2024-56640", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56640" }, { "name": "CVE-2024-56718", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56718" }, { "name": "CVE-2024-56770", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56770" }, { "name": "CVE-2024-57807", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57807" }, { "name": "CVE-2024-57900", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57900" }, { "name": "CVE-2021-47633", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47633" }, { "name": "CVE-2021-47644", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47644" }, { "name": "CVE-2022-49076", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49076" }, { "name": "CVE-2022-49089", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49089" }, { "name": "CVE-2022-49134", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49134" }, { "name": "CVE-2022-49135", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49135" }, { "name": "CVE-2022-49151", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49151" }, { "name": "CVE-2022-49178", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49178" }, { "name": "CVE-2022-49182", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49182" }, { "name": "CVE-2022-49201", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49201" }, { "name": "CVE-2022-49247", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49247" }, { "name": "CVE-2022-49490", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49490" }, { "name": "CVE-2022-49626", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49626" }, { "name": "CVE-2022-49661", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49661" }, { "name": "CVE-2024-57979", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57979" }, { "name": "CVE-2025-21733", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21733" }, { "name": "CVE-2025-21753", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21753" }, { "name": "CVE-2025-21754", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21754" }, { "name": "CVE-2021-4453", "url": "https://www.cve.org/CVERecord?id=CVE-2021-4453" }, { "name": "CVE-2021-47631", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47631" }, { "name": "CVE-2021-47632", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47632" }, { "name": "CVE-2021-47635", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47635" }, { "name": "CVE-2021-47636", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47636" }, { "name": "CVE-2021-47637", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47637" }, { "name": "CVE-2021-47638", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47638" }, { "name": "CVE-2021-47639", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47639" }, { "name": "CVE-2021-47641", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47641" }, { "name": "CVE-2021-47642", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47642" }, { "name": "CVE-2021-47643", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47643" }, { "name": "CVE-2021-47645", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47645" }, { "name": "CVE-2021-47646", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47646" }, { "name": "CVE-2021-47647", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47647" }, { "name": "CVE-2021-47648", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47648" }, { "name": "CVE-2021-47649", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47649" }, { "name": "CVE-2021-47650", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47650" }, { "name": "CVE-2021-47651", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47651" }, { "name": "CVE-2021-47652", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47652" }, { "name": "CVE-2021-47653", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47653" }, { "name": "CVE-2021-47654", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47654" }, { "name": "CVE-2021-47656", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47656" }, { "name": "CVE-2021-47657", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47657" }, { "name": "CVE-2021-47659", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47659" }, { "name": "CVE-2022-0995", "url": "https://www.cve.org/CVERecord?id=CVE-2022-0995" }, { "name": "CVE-2022-49044", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49044" }, { "name": "CVE-2022-49050", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49050" }, { "name": "CVE-2022-49051", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49051" }, { "name": "CVE-2022-49054", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49054" }, { "name": "CVE-2022-49055", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49055" }, { "name": "CVE-2022-49058", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49058" }, { "name": "CVE-2022-49059", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49059" }, { "name": "CVE-2022-49060", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49060" }, { "name": "CVE-2022-49061", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49061" }, { "name": "CVE-2022-49063", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49063" }, { "name": "CVE-2022-49065", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49065" }, { "name": "CVE-2022-49066", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49066" }, { "name": "CVE-2022-49073", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49073" }, { "name": "CVE-2022-49074", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49074" }, { "name": "CVE-2022-49078", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49078" }, { "name": "CVE-2022-49082", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49082" }, { "name": "CVE-2022-49083", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49083" }, { "name": "CVE-2022-49084", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49084" }, { "name": "CVE-2022-49085", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49085" }, { "name": "CVE-2022-49086", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49086" }, { "name": "CVE-2022-49088", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49088" }, { "name": "CVE-2022-49090", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49090" }, { "name": "CVE-2022-49091", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49091" }, { "name": "CVE-2022-49092", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49092" }, { "name": "CVE-2022-49093", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49093" }, { "name": "CVE-2022-49095", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49095" }, { "name": "CVE-2022-49096", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49096" }, { "name": "CVE-2022-49097", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49097" }, { "name": "CVE-2022-49098", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49098" }, { "name": "CVE-2022-49099", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49099" }, { "name": "CVE-2022-49100", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49100" }, { "name": "CVE-2022-49102", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49102" }, { "name": "CVE-2022-49103", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49103" }, { "name": "CVE-2022-49104", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49104" }, { "name": "CVE-2022-49105", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49105" }, { "name": "CVE-2022-49106", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49106" }, { "name": "CVE-2022-49107", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49107" }, { "name": "CVE-2022-49109", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49109" }, { "name": "CVE-2022-49111", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49111" }, { "name": "CVE-2022-49112", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49112" }, { "name": "CVE-2022-49113", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49113" }, { "name": "CVE-2022-49114", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49114" }, { "name": "CVE-2022-49115", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49115" }, { "name": "CVE-2022-49116", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49116" }, { "name": "CVE-2022-49118", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49118" }, { "name": "CVE-2022-49119", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49119" }, { "name": "CVE-2022-49120", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49120" }, { "name": "CVE-2022-49121", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49121" }, { "name": "CVE-2022-49122", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49122" }, { "name": "CVE-2022-49126", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49126" }, { "name": "CVE-2022-49128", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49128" }, { "name": "CVE-2022-49129", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49129" }, { "name": "CVE-2022-49130", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49130" }, { "name": "CVE-2022-49131", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49131" }, { "name": "CVE-2022-49132", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49132" }, { "name": "CVE-2022-49137", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49137" }, { "name": "CVE-2022-49145", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49145" }, { "name": "CVE-2022-49147", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49147" }, { "name": "CVE-2022-49148", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49148" }, { "name": "CVE-2022-49153", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49153" }, { "name": "CVE-2022-49154", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49154" }, { "name": "CVE-2022-49155", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49155" }, { "name": "CVE-2022-49156", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49156" }, { "name": "CVE-2022-49157", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49157" }, { "name": "CVE-2022-49158", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49158" }, { "name": "CVE-2022-49159", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49159" }, { "name": "CVE-2022-49160", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49160" }, { "name": "CVE-2022-49162", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49162" }, { "name": "CVE-2022-49163", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49163" }, { "name": "CVE-2022-49164", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49164" }, { "name": "CVE-2022-49165", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49165" }, { "name": "CVE-2022-49174", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49174" }, { "name": "CVE-2022-49175", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49175" }, { "name": "CVE-2022-49176", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49176" }, { "name": "CVE-2022-49177", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49177" }, { "name": "CVE-2022-49179", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49179" }, { "name": "CVE-2022-49180", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49180" }, { "name": "CVE-2022-49185", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49185" }, { "name": "CVE-2022-49187", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49187" }, { "name": "CVE-2022-49188", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49188" }, { "name": "CVE-2022-49189", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49189" }, { "name": "CVE-2022-49193", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49193" }, { "name": "CVE-2022-49194", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49194" }, { "name": "CVE-2022-49196", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49196" }, { "name": "CVE-2022-49199", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49199" }, { "name": "CVE-2022-49200", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49200" }, { "name": "CVE-2022-49206", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49206" }, { "name": "CVE-2022-49208", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49208" }, { "name": "CVE-2022-49212", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49212" }, { "name": "CVE-2022-49213", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49213" }, { "name": "CVE-2022-49214", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49214" }, { "name": "CVE-2022-49216", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49216" }, { "name": "CVE-2022-49217", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49217" }, { "name": "CVE-2022-49218", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49218" }, { "name": "CVE-2022-49221", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49221" }, { "name": "CVE-2022-49222", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49222" }, { "name": "CVE-2022-49224", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49224" }, { "name": "CVE-2022-49226", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49226" }, { "name": "CVE-2022-49227", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49227" }, { "name": "CVE-2022-49232", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49232" }, { "name": "CVE-2022-49235", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49235" }, { "name": "CVE-2022-49236", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49236" }, { "name": "CVE-2022-49239", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49239" }, { "name": "CVE-2022-49241", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49241" }, { "name": "CVE-2022-49242", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49242" }, { "name": "CVE-2022-49243", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49243" }, { "name": "CVE-2022-49244", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49244" }, { "name": "CVE-2022-49246", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49246" }, { "name": "CVE-2022-49248", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49248" }, { "name": "CVE-2022-49249", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49249" }, { "name": "CVE-2022-49250", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49250" }, { "name": "CVE-2022-49251", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49251" }, { "name": "CVE-2022-49252", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49252" }, { "name": "CVE-2022-49253", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49253" }, { "name": "CVE-2022-49254", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49254" }, { "name": "CVE-2022-49256", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49256" }, { "name": "CVE-2022-49257", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49257" }, { "name": "CVE-2022-49258", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49258" }, { "name": "CVE-2022-49259", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49259" }, { "name": "CVE-2022-49260", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49260" }, { "name": "CVE-2022-49261", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49261" }, { "name": "CVE-2022-49262", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49262" }, { "name": "CVE-2022-49263", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49263" }, { "name": "CVE-2022-49264", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49264" }, { "name": "CVE-2022-49265", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49265" }, { "name": "CVE-2022-49266", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49266" }, { "name": "CVE-2022-49268", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49268" }, { "name": "CVE-2022-49269", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49269" }, { "name": "CVE-2022-49270", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49270" }, { "name": "CVE-2022-49271", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49271" }, { "name": "CVE-2022-49272", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49272" }, { "name": "CVE-2022-49273", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49273" }, { "name": "CVE-2022-49274", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49274" }, { "name": "CVE-2022-49275", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49275" }, { "name": "CVE-2022-49276", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49276" }, { "name": "CVE-2022-49277", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49277" }, { "name": "CVE-2022-49278", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49278" }, { "name": "CVE-2022-49279", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49279" }, { "name": "CVE-2022-49280", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49280" }, { "name": "CVE-2022-49281", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49281" }, { "name": "CVE-2022-49283", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49283" }, { "name": "CVE-2022-49285", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49285" }, { "name": "CVE-2022-49286", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49286" }, { "name": "CVE-2022-49287", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49287" }, { "name": "CVE-2022-49288", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49288" }, { "name": "CVE-2022-49290", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49290" }, { "name": "CVE-2022-49291", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49291" }, { "name": "CVE-2022-49292", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49292" }, { "name": "CVE-2022-49294", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49294" }, { "name": "CVE-2022-49295", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49295" }, { "name": "CVE-2022-49297", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49297" }, { "name": "CVE-2022-49298", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49298" }, { "name": "CVE-2022-49299", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49299" }, { "name": "CVE-2022-49300", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49300" }, { "name": "CVE-2022-49301", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49301" }, { "name": "CVE-2022-49302", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49302" }, { "name": "CVE-2022-49304", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49304" }, { "name": "CVE-2022-49305", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49305" }, { "name": "CVE-2022-49307", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49307" }, { "name": "CVE-2022-49308", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49308" }, { "name": "CVE-2022-49309", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49309" }, { "name": "CVE-2022-49310", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49310" }, { "name": "CVE-2022-49311", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49311" }, { "name": "CVE-2022-49312", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49312" }, { "name": "CVE-2022-49313", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49313" }, { "name": "CVE-2022-49314", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49314" }, { "name": "CVE-2022-49315", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49315" }, { "name": "CVE-2022-49316", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49316" }, { "name": "CVE-2022-49319", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49319" }, { "name": "CVE-2022-49320", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49320" }, { "name": "CVE-2022-49321", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49321" }, { "name": "CVE-2022-49322", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49322" }, { "name": "CVE-2022-49323", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49323" }, { "name": "CVE-2022-49326", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49326" }, { "name": "CVE-2022-49327", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49327" }, { "name": "CVE-2022-49328", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49328" }, { "name": "CVE-2022-49331", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49331" }, { "name": "CVE-2022-49332", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49332" }, { "name": "CVE-2022-49335", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49335" }, { "name": "CVE-2022-49336", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49336" }, { "name": "CVE-2022-49337", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49337" }, { "name": "CVE-2022-49339", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49339" }, { "name": "CVE-2022-49341", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49341" }, { "name": "CVE-2022-49342", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49342" }, { "name": "CVE-2022-49343", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49343" }, { "name": "CVE-2022-49345", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49345" }, { "name": "CVE-2022-49346", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49346" }, { "name": "CVE-2022-49347", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49347" }, { "name": "CVE-2022-49348", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49348" }, { "name": "CVE-2022-49349", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49349" }, { "name": "CVE-2022-49350", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49350" }, { "name": "CVE-2022-49351", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49351" }, { "name": "CVE-2022-49352", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49352" }, { "name": "CVE-2022-49354", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49354" }, { "name": "CVE-2022-49356", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49356" }, { "name": "CVE-2022-49357", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49357" }, { "name": "CVE-2022-49367", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49367" }, { "name": "CVE-2022-49368", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49368" }, { "name": "CVE-2022-49370", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49370" }, { "name": "CVE-2022-49371", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49371" }, { "name": "CVE-2022-49373", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49373" }, { "name": "CVE-2022-49375", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49375" }, { "name": "CVE-2022-49376", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49376" }, { "name": "CVE-2022-49377", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49377" }, { "name": "CVE-2022-49378", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49378" }, { "name": "CVE-2022-49379", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49379" }, { "name": "CVE-2022-49381", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49381" }, { "name": "CVE-2022-49382", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49382" }, { "name": "CVE-2022-49384", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49384" }, { "name": "CVE-2022-49385", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49385" }, { "name": "CVE-2022-49386", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49386" }, { "name": "CVE-2022-49389", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49389" }, { "name": "CVE-2022-49392", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49392" }, { "name": "CVE-2022-49394", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49394" }, { "name": "CVE-2022-49396", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49396" }, { "name": "CVE-2022-49397", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49397" }, { "name": "CVE-2022-49398", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49398" }, { "name": "CVE-2022-49399", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49399" }, { "name": "CVE-2022-49400", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49400" }, { "name": "CVE-2022-49402", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49402" }, { "name": "CVE-2022-49404", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49404" }, { "name": "CVE-2022-49407", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49407" }, { "name": "CVE-2022-49409", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49409" }, { "name": "CVE-2022-49410", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49410" }, { "name": "CVE-2022-49411", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49411" }, { "name": "CVE-2022-49412", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49412" }, { "name": "CVE-2022-49413", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49413" }, { "name": "CVE-2022-49414", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49414" }, { "name": "CVE-2022-49416", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49416" }, { "name": "CVE-2022-49418", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49418" }, { "name": "CVE-2022-49421", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49421" }, { "name": "CVE-2022-49422", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49422" }, { "name": "CVE-2022-49424", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49424" }, { "name": "CVE-2022-49426", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49426" }, { "name": "CVE-2022-49427", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49427" }, { "name": "CVE-2022-49429", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49429" }, { "name": "CVE-2022-49430", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49430" }, { "name": "CVE-2022-49431", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49431" }, { "name": "CVE-2022-49432", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49432" }, { "name": "CVE-2022-49433", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49433" }, { "name": "CVE-2022-49434", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49434" }, { "name": "CVE-2022-49435", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49435" }, { "name": "CVE-2022-49437", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49437" }, { "name": "CVE-2022-49438", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49438" }, { "name": "CVE-2022-49440", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49440" }, { "name": "CVE-2022-49441", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49441" }, { "name": "CVE-2022-49442", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49442" }, { "name": "CVE-2022-49443", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49443" }, { "name": "CVE-2022-49444", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49444" }, { "name": "CVE-2022-49445", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49445" }, { "name": "CVE-2022-49447", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49447" }, { "name": "CVE-2022-49448", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49448" }, { "name": "CVE-2022-49449", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49449" }, { "name": "CVE-2022-49451", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49451" }, { "name": "CVE-2022-49453", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49453" }, { "name": "CVE-2022-49455", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49455" }, { "name": "CVE-2022-49459", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49459" }, { "name": "CVE-2022-49460", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49460" }, { "name": "CVE-2022-49462", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49462" }, { "name": "CVE-2022-49463", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49463" }, { "name": "CVE-2022-49466", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49466" }, { "name": "CVE-2022-49467", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49467" }, { "name": "CVE-2022-49468", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49468" }, { "name": "CVE-2022-49472", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49472" }, { "name": "CVE-2022-49473", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49473" }, { "name": "CVE-2022-49474", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49474" }, { "name": "CVE-2022-49475", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49475" }, { "name": "CVE-2022-49477", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49477" }, { "name": "CVE-2022-49478", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49478" }, { "name": "CVE-2022-49480", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49480" }, { "name": "CVE-2022-49481", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49481" }, { "name": "CVE-2022-49482", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49482" }, { "name": "CVE-2022-49486", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49486" }, { "name": "CVE-2022-49487", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49487" }, { "name": "CVE-2022-49488", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49488" }, { "name": "CVE-2022-49489", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49489" }, { "name": "CVE-2022-49491", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49491" }, { "name": "CVE-2022-49492", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49492" }, { "name": "CVE-2022-49493", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49493" }, { "name": "CVE-2022-49494", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49494" }, { "name": "CVE-2022-49495", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49495" }, { "name": "CVE-2022-49498", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49498" }, { "name": "CVE-2022-49501", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49501" }, { "name": "CVE-2022-49502", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49502" }, { "name": "CVE-2022-49503", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49503" }, { "name": "CVE-2022-49504", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49504" }, { "name": "CVE-2022-49505", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49505" }, { "name": "CVE-2022-49506", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49506" }, { "name": "CVE-2022-49507", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49507" }, { "name": "CVE-2022-49508", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49508" }, { "name": "CVE-2022-49509", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49509" }, { "name": "CVE-2022-49512", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49512" }, { "name": "CVE-2022-49514", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49514" }, { "name": "CVE-2022-49515", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49515" }, { "name": "CVE-2022-49517", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49517" }, { "name": "CVE-2022-49519", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49519" }, { "name": "CVE-2022-49520", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49520" }, { "name": "CVE-2022-49521", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49521" }, { "name": "CVE-2022-49522", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49522" }, { "name": "CVE-2022-49523", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49523" }, { "name": "CVE-2022-49524", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49524" }, { "name": "CVE-2022-49525", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49525" }, { "name": "CVE-2022-49526", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49526" }, { "name": "CVE-2022-49527", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49527" }, { "name": "CVE-2022-49532", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49532" }, { "name": "CVE-2022-49534", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49534" }, { "name": "CVE-2022-49535", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49535" }, { "name": "CVE-2022-49536", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49536" }, { "name": "CVE-2022-49537", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49537" }, { "name": "CVE-2022-49541", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49541" }, { "name": "CVE-2022-49542", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49542" }, { "name": "CVE-2022-49544", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49544" }, { "name": "CVE-2022-49545", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49545" }, { "name": "CVE-2022-49546", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49546" }, { "name": "CVE-2022-49549", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49549" }, { "name": "CVE-2022-49551", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49551" }, { "name": "CVE-2022-49555", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49555" }, { "name": "CVE-2022-49556", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49556" }, { "name": "CVE-2022-49559", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49559" }, { "name": "CVE-2022-49562", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49562" }, { "name": "CVE-2022-49563", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49563" }, { "name": "CVE-2022-49564", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49564" }, { "name": "CVE-2022-49566", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49566" }, { "name": "CVE-2022-49568", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49568" }, { "name": "CVE-2022-49569", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49569" }, { "name": "CVE-2022-49570", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49570" }, { "name": "CVE-2022-49579", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49579" }, { "name": "CVE-2022-49581", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49581" }, { "name": "CVE-2022-49583", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49583" }, { "name": "CVE-2022-49584", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49584" }, { "name": "CVE-2022-49591", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49591" }, { "name": "CVE-2022-49592", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49592" }, { "name": "CVE-2022-49603", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49603" }, { "name": "CVE-2022-49605", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49605" }, { "name": "CVE-2022-49606", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49606" }, { "name": "CVE-2022-49607", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49607" }, { "name": "CVE-2022-49609", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49609" }, { "name": "CVE-2022-49610", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49610" }, { "name": "CVE-2022-49611", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49611" }, { "name": "CVE-2022-49613", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49613" }, { "name": "CVE-2022-49615", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49615" }, { "name": "CVE-2022-49616", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49616" }, { "name": "CVE-2022-49617", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49617" }, { "name": "CVE-2022-49618", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49618" }, { "name": "CVE-2022-49621", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49621" }, { "name": "CVE-2022-49623", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49623" }, { "name": "CVE-2022-49625", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49625" }, { "name": "CVE-2022-49627", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49627" }, { "name": "CVE-2022-49628", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49628" }, { "name": "CVE-2022-49631", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49631" }, { "name": "CVE-2022-49634", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49634" }, { "name": "CVE-2022-49640", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49640" }, { "name": "CVE-2022-49641", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49641" }, { "name": "CVE-2022-49642", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49642" }, { "name": "CVE-2022-49643", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49643" }, { "name": "CVE-2022-49644", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49644" }, { "name": "CVE-2022-49645", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49645" }, { "name": "CVE-2022-49646", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49646" }, { "name": "CVE-2022-49647", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49647" }, { "name": "CVE-2022-49648", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49648" }, { "name": "CVE-2022-49649", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49649" }, { "name": "CVE-2022-49652", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49652" }, { "name": "CVE-2022-49653", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49653" }, { "name": "CVE-2022-49656", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49656" }, { "name": "CVE-2022-49657", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49657" }, { "name": "CVE-2022-49663", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49663" }, { "name": "CVE-2022-49665", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49665" }, { "name": "CVE-2022-49667", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49667" }, { "name": "CVE-2022-49668", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49668" }, { "name": "CVE-2022-49670", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49670" }, { "name": "CVE-2022-49671", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49671" }, { "name": "CVE-2022-49672", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49672" }, { "name": "CVE-2022-49673", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49673" }, { "name": "CVE-2022-49674", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49674" }, { "name": "CVE-2022-49675", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49675" }, { "name": "CVE-2022-49676", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49676" }, { "name": "CVE-2022-49677", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49677" }, { "name": "CVE-2022-49678", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49678" }, { "name": "CVE-2022-49679", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49679" }, { "name": "CVE-2022-49680", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49680" }, { "name": "CVE-2022-49683", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49683" }, { "name": "CVE-2022-49685", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49685" }, { "name": "CVE-2022-49687", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49687" }, { "name": "CVE-2022-49688", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49688" }, { "name": "CVE-2022-49693", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49693" }, { "name": "CVE-2022-49695", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49695" }, { "name": "CVE-2022-49699", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49699" }, { "name": "CVE-2022-49700", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49700" }, { "name": "CVE-2022-49701", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49701" }, { "name": "CVE-2022-49703", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49703" }, { "name": "CVE-2022-49704", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49704" }, { "name": "CVE-2022-49705", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49705" }, { "name": "CVE-2022-49707", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49707" }, { "name": "CVE-2022-49708", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49708" }, { "name": "CVE-2022-49710", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49710" }, { "name": "CVE-2022-49711", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49711" }, { "name": "CVE-2022-49712", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49712" }, { "name": "CVE-2022-49713", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49713" }, { "name": "CVE-2022-49714", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49714" }, { "name": "CVE-2022-49715", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49715" }, { "name": "CVE-2022-49716", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49716" }, { "name": "CVE-2022-49719", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49719" }, { "name": "CVE-2022-49720", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49720" }, { "name": "CVE-2022-49721", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49721" }, { "name": "CVE-2022-49722", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49722" }, { "name": "CVE-2022-49723", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49723" }, { "name": "CVE-2022-49724", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49724" }, { "name": "CVE-2022-49725", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49725" }, { "name": "CVE-2022-49726", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49726" }, { "name": "CVE-2022-49729", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49729" }, { "name": "CVE-2022-49730", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49730" }, { "name": "CVE-2022-49731", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49731" }, { "name": "CVE-2022-49733", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49733" }, { "name": "CVE-2024-57996", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57996" }, { "name": "CVE-2024-58014", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58014" }, { "name": "CVE-2025-21718", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21718" }, { "name": "CVE-2025-21772", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21772" }, { "name": "CVE-2025-21780", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21780" }, { "name": "CVE-2025-21785", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21785" }, { "name": "CVE-2024-47794", "url": "https://www.cve.org/CVERecord?id=CVE-2024-47794" }, { "name": "CVE-2024-54683", "url": "https://www.cve.org/CVERecord?id=CVE-2024-54683" }, { "name": "CVE-2024-56638", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56638" }, { "name": "CVE-2024-56719", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56719" }, { "name": "CVE-2024-56758", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56758" }, { "name": "CVE-2025-21635", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21635" }, { "name": "CVE-2025-21659", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21659" }, { "name": "CVE-2024-57834", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57834" }, { "name": "CVE-2024-57973", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57973" }, { "name": "CVE-2024-57978", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57978" }, { "name": "CVE-2024-57980", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57980" }, { "name": "CVE-2024-57981", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57981" }, { "name": "CVE-2024-57986", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57986" }, { "name": "CVE-2024-57993", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57993" }, { "name": "CVE-2024-57997", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57997" }, { "name": "CVE-2024-58007", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58007" }, { "name": "CVE-2024-58009", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58009" }, { "name": "CVE-2024-58011", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58011" }, { "name": "CVE-2024-58013", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58013" }, { "name": "CVE-2024-58017", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58017" }, { "name": "CVE-2024-58020", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58020" }, { "name": "CVE-2024-58034", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58034" }, { "name": "CVE-2024-58051", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58051" }, { "name": "CVE-2024-58052", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58052" }, { "name": "CVE-2024-58054", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58054" }, { "name": "CVE-2024-58055", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58055" }, { "name": "CVE-2024-58056", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58056" }, { "name": "CVE-2024-58058", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58058" }, { "name": "CVE-2024-58061", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58061" }, { "name": "CVE-2024-58063", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58063" }, { "name": "CVE-2024-58069", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58069" }, { "name": "CVE-2024-58072", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58072" }, { "name": "CVE-2024-58076", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58076" }, { "name": "CVE-2024-58080", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58080" }, { "name": "CVE-2024-58083", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58083" }, { "name": "CVE-2024-58085", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58085" }, { "name": "CVE-2024-58086", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58086" }, { "name": "CVE-2025-21701", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21701" }, { "name": "CVE-2025-21703", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21703" }, { "name": "CVE-2025-21704", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21704" }, { "name": "CVE-2025-21706", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21706" }, { "name": "CVE-2025-21708", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21708" }, { "name": "CVE-2025-21711", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21711" }, { "name": "CVE-2025-21726", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21726" }, { "name": "CVE-2025-21727", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21727" }, { "name": "CVE-2025-21731", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21731" }, { "name": "CVE-2025-21734", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21734" }, { "name": "CVE-2025-21735", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21735" }, { "name": "CVE-2025-21736", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21736" }, { "name": "CVE-2025-21738", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21738" }, { "name": "CVE-2025-21744", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21744" }, { "name": "CVE-2025-21745", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21745" }, { "name": "CVE-2025-21749", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21749" }, { "name": "CVE-2025-21750", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21750" }, { "name": "CVE-2025-21760", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21760" }, { "name": "CVE-2025-21761", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21761" }, { "name": "CVE-2025-21762", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21762" }, { "name": "CVE-2025-21763", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21763" }, { "name": "CVE-2025-21764", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21764" }, { "name": "CVE-2025-21765", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21765" }, { "name": "CVE-2025-21766", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21766" }, { "name": "CVE-2025-21775", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21775" }, { "name": "CVE-2025-21776", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21776" }, { "name": "CVE-2025-21779", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21779" }, { "name": "CVE-2025-21781", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21781" }, { "name": "CVE-2025-21782", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21782" }, { "name": "CVE-2025-21791", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21791" }, { "name": "CVE-2025-21794", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21794" }, { "name": "CVE-2025-21796", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21796" }, { "name": "CVE-2025-21804", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21804" }, { "name": "CVE-2025-21819", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21819" }, { "name": "CVE-2025-21820", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21820" }, { "name": "CVE-2025-21821", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21821" }, { "name": "CVE-2025-21823", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21823" }, { "name": "CVE-2025-21829", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21829" }, { "name": "CVE-2025-21830", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21830" }, { "name": "CVE-2025-21832", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21832" }, { "name": "CVE-2025-21835", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21835" }, { "name": "CVE-2021-4454", "url": "https://www.cve.org/CVERecord?id=CVE-2021-4454" }, { "name": "CVE-2022-49053", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49053" }, { "name": "CVE-2022-49056", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49056" }, { "name": "CVE-2022-49057", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49057" }, { "name": "CVE-2022-49062", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49062" }, { "name": "CVE-2022-49064", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49064" }, { "name": "CVE-2022-49070", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49070" }, { "name": "CVE-2022-49071", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49071" }, { "name": "CVE-2022-49075", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49075" }, { "name": "CVE-2022-49123", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49123" }, { "name": "CVE-2022-49125", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49125" }, { "name": "CVE-2022-49133", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49133" }, { "name": "CVE-2022-49136", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49136" }, { "name": "CVE-2022-49138", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49138" }, { "name": "CVE-2022-49139", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49139" }, { "name": "CVE-2022-49144", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49144" }, { "name": "CVE-2022-49183", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49183" }, { "name": "CVE-2022-49192", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49192" }, { "name": "CVE-2022-49202", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49202" }, { "name": "CVE-2022-49203", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49203" }, { "name": "CVE-2022-49204", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49204" }, { "name": "CVE-2022-49205", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49205" }, { "name": "CVE-2022-49207", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49207" }, { "name": "CVE-2022-49209", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49209" }, { "name": "CVE-2022-49215", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49215" }, { "name": "CVE-2022-49219", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49219" }, { "name": "CVE-2022-49225", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49225" }, { "name": "CVE-2022-49228", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49228" }, { "name": "CVE-2022-49230", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49230" }, { "name": "CVE-2022-49233", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49233" }, { "name": "CVE-2022-49237", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49237" }, { "name": "CVE-2022-49238", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49238" }, { "name": "CVE-2022-49293", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49293" }, { "name": "CVE-2022-49296", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49296" }, { "name": "CVE-2022-49306", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49306" }, { "name": "CVE-2022-49325", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49325" }, { "name": "CVE-2022-49329", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49329" }, { "name": "CVE-2022-49330", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49330" }, { "name": "CVE-2022-49333", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49333" }, { "name": "CVE-2022-49338", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49338" }, { "name": "CVE-2022-49353", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49353" }, { "name": "CVE-2022-49359", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49359" }, { "name": "CVE-2022-49362", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49362" }, { "name": "CVE-2022-49365", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49365" }, { "name": "CVE-2022-49390", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49390" }, { "name": "CVE-2022-49406", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49406" }, { "name": "CVE-2022-49419", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49419" }, { "name": "CVE-2022-49436", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49436" }, { "name": "CVE-2022-49446", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49446" }, { "name": "CVE-2022-49458", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49458" }, { "name": "CVE-2022-49465", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49465" }, { "name": "CVE-2022-49470", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49470" }, { "name": "CVE-2022-49476", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49476" }, { "name": "CVE-2022-49479", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49479" }, { "name": "CVE-2022-49483", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49483" }, { "name": "CVE-2022-49484", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49484" }, { "name": "CVE-2022-49485", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49485" }, { "name": "CVE-2022-49497", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49497" }, { "name": "CVE-2022-49499", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49499" }, { "name": "CVE-2022-49510", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49510" }, { "name": "CVE-2022-49511", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49511" }, { "name": "CVE-2022-49516", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49516" }, { "name": "CVE-2022-49518", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49518" }, { "name": "CVE-2022-49529", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49529" }, { "name": "CVE-2022-49530", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49530" }, { "name": "CVE-2022-49533", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49533" }, { "name": "CVE-2022-49538", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49538" }, { "name": "CVE-2022-49543", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49543" }, { "name": "CVE-2022-49548", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49548" }, { "name": "CVE-2022-49552", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49552" }, { "name": "CVE-2022-49560", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49560" }, { "name": "CVE-2022-49565", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49565" }, { "name": "CVE-2022-49624", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49624" }, { "name": "CVE-2022-49635", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49635" }, { "name": "CVE-2022-49638", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49638" }, { "name": "CVE-2022-49650", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49650" }, { "name": "CVE-2022-49655", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49655" }, { "name": "CVE-2022-49658", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49658" }, { "name": "CVE-2022-49686", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49686" }, { "name": "CVE-2022-49694", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49694" }, { "name": "CVE-2022-49697", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49697" }, { "name": "CVE-2022-49732", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49732" }, { "name": "CVE-2022-49739", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49739" }, { "name": "CVE-2022-49746", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49746" }, { "name": "CVE-2022-49748", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49748" }, { "name": "CVE-2022-49751", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49751" }, { "name": "CVE-2022-49753", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49753" }, { "name": "CVE-2022-49755", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49755" }, { "name": "CVE-2022-49759", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49759" }, { "name": "CVE-2023-52831", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52831" }, { "name": "CVE-2023-52927", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52927" }, { "name": "CVE-2023-52930", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52930" }, { "name": "CVE-2023-52933", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52933" }, { "name": "CVE-2023-52935", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52935" }, { "name": "CVE-2023-52939", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52939" }, { "name": "CVE-2023-52941", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52941" }, { "name": "CVE-2023-52973", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52973" }, { "name": "CVE-2023-52974", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52974" }, { "name": "CVE-2023-52975", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52975" }, { "name": "CVE-2023-52976", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52976" }, { "name": "CVE-2023-52979", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52979" }, { "name": "CVE-2023-52983", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52983" }, { "name": "CVE-2023-52984", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52984" }, { "name": "CVE-2023-52988", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52988" }, { "name": "CVE-2023-52989", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52989" }, { "name": "CVE-2023-52992", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52992" }, { "name": "CVE-2023-52993", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52993" }, { "name": "CVE-2023-53000", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53000" }, { "name": "CVE-2023-53005", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53005" }, { "name": "CVE-2023-53006", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53006" }, { "name": "CVE-2023-53007", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53007" }, { "name": "CVE-2023-53008", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53008" }, { "name": "CVE-2023-53010", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53010" }, { "name": "CVE-2023-53015", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53015" }, { "name": "CVE-2023-53016", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53016" }, { "name": "CVE-2023-53019", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53019" }, { "name": "CVE-2023-53023", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53023" }, { "name": "CVE-2023-53024", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53024" }, { "name": "CVE-2023-53025", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53025" }, { "name": "CVE-2023-53026", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53026" }, { "name": "CVE-2023-53028", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53028" }, { "name": "CVE-2023-53029", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53029" }, { "name": "CVE-2023-53030", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53030" }, { "name": "CVE-2023-53033", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53033" }, { "name": "CVE-2024-41149", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41149" }, { "name": "CVE-2024-46736", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46736" }, { "name": "CVE-2024-46796", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46796" }, { "name": "CVE-2024-52559", "url": "https://www.cve.org/CVERecord?id=CVE-2024-52559" }, { "name": "CVE-2024-57947", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57947" }, { "name": "CVE-2024-57974", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57974" }, { "name": "CVE-2024-57990", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57990" }, { "name": "CVE-2024-57999", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57999" }, { "name": "CVE-2024-58002", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58002" }, { "name": "CVE-2024-58005", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58005" }, { "name": "CVE-2024-58006", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58006" }, { "name": "CVE-2024-58012", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58012" }, { "name": "CVE-2024-58019", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58019" }, { "name": "CVE-2024-58057", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58057" }, { "name": "CVE-2024-58078", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58078" }, { "name": "CVE-2024-58079", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58079" }, { "name": "CVE-2025-21693", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21693" }, { "name": "CVE-2025-21714", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21714" }, { "name": "CVE-2025-21723", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21723" }, { "name": "CVE-2025-21732", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21732" }, { "name": "CVE-2025-21739", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21739" }, { "name": "CVE-2025-21741", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21741" }, { "name": "CVE-2025-21742", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21742" }, { "name": "CVE-2025-21743", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21743" }, { "name": "CVE-2025-21756", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21756" }, { "name": "CVE-2025-21759", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21759" }, { "name": "CVE-2025-21773", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21773" }, { "name": "CVE-2025-21784", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21784" }, { "name": "CVE-2025-21793", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21793" }, { "name": "CVE-2025-21810", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21810" }, { "name": "CVE-2025-21815", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21815" }, { "name": "CVE-2025-21825", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21825" }, { "name": "CVE-2025-21828", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21828" }, { "name": "CVE-2025-21831", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21831" }, { "name": "CVE-2025-21838", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21838" }, { "name": "CVE-2025-21839", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21839" }, { "name": "CVE-2025-21844", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21844" }, { "name": "CVE-2025-21846", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21846" }, { "name": "CVE-2025-21847", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21847" }, { "name": "CVE-2025-21848", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21848" }, { "name": "CVE-2025-21850", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21850" }, { "name": "CVE-2025-21855", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21855" }, { "name": "CVE-2025-21856", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21856" }, { "name": "CVE-2025-21857", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21857" }, { "name": "CVE-2025-21858", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21858" }, { "name": "CVE-2025-21859", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21859" }, { "name": "CVE-2025-21861", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21861" }, { "name": "CVE-2025-21862", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21862" }, { "name": "CVE-2025-21864", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21864" }, { "name": "CVE-2025-21865", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21865" }, { "name": "CVE-2025-21866", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21866" }, { "name": "CVE-2025-21869", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21869" }, { "name": "CVE-2025-21870", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21870" }, { "name": "CVE-2025-21871", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21871" }, { "name": "CVE-2025-21876", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21876" }, { "name": "CVE-2025-21877", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21877" }, { "name": "CVE-2025-21878", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21878" }, { "name": "CVE-2025-21883", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21883" }, { "name": "CVE-2025-21885", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21885" }, { "name": "CVE-2025-21886", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21886" }, { "name": "CVE-2025-21888", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21888" }, { "name": "CVE-2025-21890", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21890" }, { "name": "CVE-2025-21891", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21891" }, { "name": "CVE-2025-21892", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21892" } ], "initial_release_date": "2025-04-11T00:00:00", "last_revision_date": "2025-04-11T00:00:00", "links": [], "reference": "CERTFR-2025-AVI-0307", "revisions": [ { "description": "Version initiale", "revision_date": "2025-04-11T00:00:00.000000" } ], "risks": [ { "description": "Ex\u00e9cution de code arbitraire" }, { "description": "\u00c9l\u00e9vation de privil\u00e8ges" }, { "description": "Atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es" }, { "description": "Atteinte \u00e0 l\u0027int\u00e9grit\u00e9 des donn\u00e9es" }, { "description": "D\u00e9ni de service" }, { "description": "Contournement de la politique de s\u00e9curit\u00e9" }, { "description": "Non sp\u00e9cifi\u00e9 par l\u0027\u00e9diteur" } ], "summary": "De multiples vuln\u00e9rabilit\u00e9s ont \u00e9t\u00e9 d\u00e9couvertes dans le noyau Linux de SUSE. Certaines d\u0027entre elles permettent \u00e0 un attaquant de provoquer une ex\u00e9cution de code arbitraire, une \u00e9l\u00e9vation de privil\u00e8ges et une atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es.", "title": "Multiples vuln\u00e9rabilit\u00e9s dans le noyau Linux de SUSE", "vendor_advisories": [ { "published_at": "2025-04-08", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:1177-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-20251177-1" }, { "published_at": "2025-04-09", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:1180-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-20251180-1" }, { "published_at": "2025-04-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:1194-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-20251194-1" }, { "published_at": "2025-04-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:1195-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-20251195-1" }, { "published_at": "2025-04-08", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:1178-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-20251178-1" }, { "published_at": "2025-04-08", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:1176-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-20251176-1" }, { "published_at": "2025-04-09", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:1183-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-20251183-1" } ] }
CERTFR-2025-AVI-0509
Vulnerability from certfr_avis
De multiples vulnérabilités ont été découvertes dans le noyau Linux de SUSE. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire, une élévation de privilèges et une atteinte à la confidentialité des données.
Solutions
Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation).
Vendor | Product | Description | ||
---|---|---|---|---|
SUSE | SUSE Linux Enterprise High Performance Computing | SUSE Linux Enterprise High Performance Computing 15 SP5 | ||
SUSE | Confidential Computing Module | Confidential Computing Module 15-SP6 | ||
SUSE | openSUSE Leap | openSUSE Leap 15.5 | ||
SUSE | SUSE Linux Enterprise Live Patching | SUSE Linux Enterprise Live Patching 15-SP5 | ||
SUSE | openSUSE Leap | openSUSE Leap 15.3 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server for SAP Applications 15 SP6 | ||
SUSE | SUSE Linux Enterprise High Performance Computing | SUSE Linux Enterprise High Performance Computing 12 SP5 | ||
SUSE | SUSE Linux Enterprise High Performance Computing | SUSE Linux Enterprise High Performance Computing 15 SP4 | ||
SUSE | SUSE Linux Enterprise Live Patching | SUSE Linux Enterprise Live Patching 12-SP5 | ||
SUSE | openSUSE Leap | openSUSE Leap 15.4 | ||
SUSE | SUSE Linux Enterprise Live Patching | SUSE Linux Enterprise Live Patching 15-SP6 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server for SAP Applications 12 SP5 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server 12 SP5 | ||
SUSE | SUSE Linux Enterprise Micro | SUSE Linux Enterprise Micro 5.2 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server 15 SP5 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server for SAP Applications 15 SP3 | ||
SUSE | SUSE Linux Enterprise Micro | SUSE Linux Enterprise Micro 5.1 | ||
SUSE | SUSE Linux Enterprise Micro | SUSE Linux Enterprise Micro for Rancher 5.4 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server for SAP Applications 15 SP5 | ||
SUSE | openSUSE Leap | openSUSE Leap 15.6 | ||
SUSE | SUSE Linux Enterprise Micro | SUSE Linux Enterprise Micro 5.3 | ||
SUSE | SUSE Linux Enterprise Real Time | SUSE Linux Enterprise Real Time 15 SP5 | ||
SUSE | SUSE Linux Enterprise Micro | SUSE Linux Enterprise Micro for Rancher 5.3 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server 15 SP6 | ||
SUSE | SUSE Linux Enterprise Real Time | SUSE Linux Enterprise Real Time 15 SP4 | ||
SUSE | SUSE Linux Enterprise Live Patching | SUSE Linux Enterprise Live Patching 15-SP3 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server for SAP Applications 15 SP4 | ||
SUSE | SUSE Linux Enterprise High Performance Computing | SUSE Linux Enterprise High Performance Computing 15 SP3 | ||
SUSE | SUSE Linux Enterprise Micro | SUSE Linux Enterprise Micro 5.5 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server 15 SP4 | ||
SUSE | SUSE Linux Enterprise Real Time | SUSE Linux Enterprise Real Time 15 SP6 | ||
SUSE | SUSE Linux Micro | SUSE Linux Micro 6.0 | ||
SUSE | SUSE Linux Enterprise Server | SUSE Linux Enterprise Server 15 SP3 | ||
SUSE | SUSE Linux Enterprise Micro | SUSE Linux Enterprise Micro 5.4 | ||
SUSE | SUSE Linux Enterprise Live Patching | SUSE Linux Enterprise Live Patching 15-SP4 |
Title | Publication Time | Tags | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
{ "$ref": "https://www.cert.ssi.gouv.fr/openapi.json", "affected_systems": [ { "description": "SUSE Linux Enterprise High Performance Computing 15 SP5", "product": { "name": "SUSE Linux Enterprise High Performance Computing", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "Confidential Computing Module 15-SP6", "product": { "name": "Confidential Computing Module", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "openSUSE Leap 15.5", "product": { "name": "openSUSE Leap", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Live Patching 15-SP5", "product": { "name": "SUSE Linux Enterprise Live Patching", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "openSUSE Leap 15.3", "product": { "name": "openSUSE Leap", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server for SAP Applications 15 SP6", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise High Performance Computing 12 SP5", "product": { "name": "SUSE Linux Enterprise High Performance Computing", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise High Performance Computing 15 SP4", "product": { "name": "SUSE Linux Enterprise High Performance Computing", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Live Patching 12-SP5", "product": { "name": "SUSE Linux Enterprise Live Patching", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "openSUSE Leap 15.4", "product": { "name": "openSUSE Leap", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Live Patching 15-SP6", "product": { "name": "SUSE Linux Enterprise Live Patching", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server for SAP Applications 12 SP5", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server 12 SP5", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.2", "product": { "name": "SUSE Linux Enterprise Micro", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server 15 SP5", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server for SAP Applications 15 SP3", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.1", "product": { "name": "SUSE Linux Enterprise Micro", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro for Rancher 5.4", "product": { "name": "SUSE Linux Enterprise Micro", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server for SAP Applications 15 SP5", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "openSUSE Leap 15.6", "product": { "name": "openSUSE Leap", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.3", "product": { "name": "SUSE Linux Enterprise Micro", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Real Time 15 SP5", "product": { "name": "SUSE Linux Enterprise Real Time", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro for Rancher 5.3", "product": { "name": "SUSE Linux Enterprise Micro", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server 15 SP6", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Real Time 15 SP4", "product": { "name": "SUSE Linux Enterprise Real Time", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Live Patching 15-SP3", "product": { "name": "SUSE Linux Enterprise Live Patching", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server for SAP Applications 15 SP4", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise High Performance Computing 15 SP3", "product": { "name": "SUSE Linux Enterprise High Performance Computing", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.5", "product": { "name": "SUSE Linux Enterprise Micro", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server 15 SP4", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Real Time 15 SP6", "product": { "name": "SUSE Linux Enterprise Real Time", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Micro 6.0", "product": { "name": "SUSE Linux Micro", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Server 15 SP3", "product": { "name": "SUSE Linux Enterprise Server", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Micro 5.4", "product": { "name": "SUSE Linux Enterprise Micro", "vendor": { "name": "SUSE", "scada": false } } }, { "description": "SUSE Linux Enterprise Live Patching 15-SP4", "product": { "name": "SUSE Linux Enterprise Live Patching", "vendor": { "name": "SUSE", "scada": false } } } ], "affected_systems_content": "", "content": "## Solutions\n\nSe r\u00e9f\u00e9rer au bulletin de s\u00e9curit\u00e9 de l\u0027\u00e9diteur pour l\u0027obtention des correctifs (cf. section Documentation).", "cves": [ { "name": "CVE-2022-3640", "url": "https://www.cve.org/CVERecord?id=CVE-2022-3640" }, { "name": "CVE-2022-3619", "url": "https://www.cve.org/CVERecord?id=CVE-2022-3619" }, { "name": "CVE-2022-3564", "url": "https://www.cve.org/CVERecord?id=CVE-2022-3564" }, { "name": "CVE-2023-1990", "url": "https://www.cve.org/CVERecord?id=CVE-2023-1990" }, { "name": "CVE-2024-27018", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27018" }, { "name": "CVE-2024-26634", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26634" }, { "name": "CVE-2024-35910", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35910" }, { "name": "CVE-2024-26873", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26873" }, { "name": "CVE-2024-27415", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27415" }, { "name": "CVE-2024-35826", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35826" }, { "name": "CVE-2024-41005", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41005" }, { "name": "CVE-2024-38606", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38606" }, { "name": "CVE-2024-41077", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41077" }, { "name": "CVE-2024-46713", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46713" }, { "name": "CVE-2024-46763", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46763" }, { "name": "CVE-2024-46782", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46782" }, { "name": "CVE-2024-46865", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46865" }, { "name": "CVE-2024-43869", "url": "https://www.cve.org/CVERecord?id=CVE-2024-43869" }, { "name": "CVE-2024-49855", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49855" }, { "name": "CVE-2024-50036", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50036" }, { "name": "CVE-2024-50126", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50126" }, { "name": "CVE-2024-50290", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50290" }, { "name": "CVE-2024-53057", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53057" }, { "name": "CVE-2024-53063", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53063" }, { "name": "CVE-2024-42307", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42307" }, { "name": "CVE-2024-43820", "url": "https://www.cve.org/CVERecord?id=CVE-2024-43820" }, { "name": "CVE-2024-49924", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49924" }, { "name": "CVE-2024-50038", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50038" }, { "name": "CVE-2024-50083", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50083" }, { "name": "CVE-2024-50162", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50162" }, { "name": "CVE-2024-50163", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50163" }, { "name": "CVE-2024-53135", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53135" }, { "name": "CVE-2024-53140", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53140" }, { "name": "CVE-2024-50106", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50106" }, { "name": "CVE-2024-53168", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53168" }, { "name": "CVE-2024-56558", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56558" }, { "name": "CVE-2024-56641", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56641" }, { "name": "CVE-2024-49994", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49994" }, { "name": "CVE-2024-53124", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53124" }, { "name": "CVE-2024-56703", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56703" }, { "name": "CVE-2025-21631", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21631" }, { "name": "CVE-2025-21648", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21648" }, { "name": "CVE-2025-21671", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21671" }, { "name": "CVE-2025-21680", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21680" }, { "name": "CVE-2025-21683", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21683" }, { "name": "CVE-2024-53177", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53177" }, { "name": "CVE-2024-49940", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49940" }, { "name": "CVE-2024-50029", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50029" }, { "name": "CVE-2024-50056", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50056" }, { "name": "CVE-2024-50140", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50140" }, { "name": "CVE-2024-50152", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50152" }, { "name": "CVE-2024-50223", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50223" }, { "name": "CVE-2024-50294", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50294" }, { "name": "CVE-2024-53139", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53139" }, { "name": "CVE-2024-53163", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53163" }, { "name": "CVE-2024-53176", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53176" }, { "name": "CVE-2024-53178", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53178" }, { "name": "CVE-2024-56702", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56702" }, { "name": "CVE-2024-56751", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56751" }, { "name": "CVE-2023-52926", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52926" }, { "name": "CVE-2024-47408", "url": "https://www.cve.org/CVERecord?id=CVE-2024-47408" }, { "name": "CVE-2024-49571", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49571" }, { "name": "CVE-2024-53680", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53680" }, { "name": "CVE-2024-56640", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56640" }, { "name": "CVE-2024-56718", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56718" }, { "name": "CVE-2024-56770", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56770" }, { "name": "CVE-2024-57807", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57807" }, { "name": "CVE-2024-57900", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57900" }, { "name": "CVE-2022-49080", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49080" }, { "name": "CVE-2024-57979", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57979" }, { "name": "CVE-2024-57994", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57994" }, { "name": "CVE-2025-21705", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21705" }, { "name": "CVE-2025-21715", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21715" }, { "name": "CVE-2025-21716", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21716" }, { "name": "CVE-2025-21719", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21719" }, { "name": "CVE-2025-21724", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21724" }, { "name": "CVE-2025-21725", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21725" }, { "name": "CVE-2025-21728", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21728" }, { "name": "CVE-2025-21733", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21733" }, { "name": "CVE-2025-21753", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21753" }, { "name": "CVE-2025-21754", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21754" }, { "name": "CVE-2025-21767", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21767" }, { "name": "CVE-2025-21790", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21790" }, { "name": "CVE-2025-21795", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21795" }, { "name": "CVE-2025-21799", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21799" }, { "name": "CVE-2025-21802", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21802" }, { "name": "CVE-2022-49563", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49563" }, { "name": "CVE-2022-49564", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49564" }, { "name": "CVE-2024-57996", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57996" }, { "name": "CVE-2024-58014", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58014" }, { "name": "CVE-2025-21718", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21718" }, { "name": "CVE-2025-21772", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21772" }, { "name": "CVE-2025-21780", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21780" }, { "name": "CVE-2025-21785", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21785" }, { "name": "CVE-2024-47794", "url": "https://www.cve.org/CVERecord?id=CVE-2024-47794" }, { "name": "CVE-2024-54683", "url": "https://www.cve.org/CVERecord?id=CVE-2024-54683" }, { "name": "CVE-2024-56638", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56638" }, { "name": "CVE-2024-56719", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56719" }, { "name": "CVE-2024-56758", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56758" }, { "name": "CVE-2024-57924", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57924" }, { "name": "CVE-2025-21635", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21635" }, { "name": "CVE-2025-21659", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21659" }, { "name": "CVE-2024-54458", "url": "https://www.cve.org/CVERecord?id=CVE-2024-54458" }, { "name": "CVE-2024-57834", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57834" }, { "name": "CVE-2024-57973", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57973" }, { "name": "CVE-2024-57978", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57978" }, { "name": "CVE-2024-57980", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57980" }, { "name": "CVE-2024-57981", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57981" }, { "name": "CVE-2024-57986", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57986" }, { "name": "CVE-2024-57993", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57993" }, { "name": "CVE-2024-57997", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57997" }, { "name": "CVE-2024-57998", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57998" }, { "name": "CVE-2024-58001", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58001" }, { "name": "CVE-2024-58007", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58007" }, { "name": "CVE-2024-58009", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58009" }, { "name": "CVE-2024-58011", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58011" }, { "name": "CVE-2024-58013", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58013" }, { "name": "CVE-2024-58017", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58017" }, { "name": "CVE-2024-58020", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58020" }, { "name": "CVE-2024-58034", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58034" }, { "name": "CVE-2024-58051", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58051" }, { "name": "CVE-2024-58052", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58052" }, { "name": "CVE-2024-58054", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58054" }, { "name": "CVE-2024-58055", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58055" }, { "name": "CVE-2024-58056", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58056" }, { "name": "CVE-2024-58058", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58058" }, { "name": "CVE-2024-58061", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58061" }, { "name": "CVE-2024-58063", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58063" }, { "name": "CVE-2024-58068", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58068" }, { "name": "CVE-2024-58069", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58069" }, { "name": "CVE-2024-58071", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58071" }, { "name": "CVE-2024-58072", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58072" }, { "name": "CVE-2024-58076", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58076" }, { "name": "CVE-2024-58080", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58080" }, { "name": "CVE-2024-58083", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58083" }, { "name": "CVE-2024-58085", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58085" }, { "name": "CVE-2024-58086", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58086" }, { "name": "CVE-2025-21701", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21701" }, { "name": "CVE-2025-21703", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21703" }, { "name": "CVE-2025-21704", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21704" }, { "name": "CVE-2025-21706", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21706" }, { "name": "CVE-2025-21707", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21707" }, { "name": "CVE-2025-21708", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21708" }, { "name": "CVE-2025-21711", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21711" }, { "name": "CVE-2025-21726", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21726" }, { "name": "CVE-2025-21727", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21727" }, { "name": "CVE-2025-21731", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21731" }, { "name": "CVE-2025-21734", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21734" }, { "name": "CVE-2025-21735", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21735" }, { "name": "CVE-2025-21736", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21736" }, { "name": "CVE-2025-21738", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21738" }, { "name": "CVE-2025-21744", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21744" }, { "name": "CVE-2025-21745", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21745" }, { "name": "CVE-2025-21749", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21749" }, { "name": "CVE-2025-21750", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21750" }, { "name": "CVE-2025-21758", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21758" }, { "name": "CVE-2025-21760", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21760" }, { "name": "CVE-2025-21761", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21761" }, { "name": "CVE-2025-21762", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21762" }, { "name": "CVE-2025-21763", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21763" }, { "name": "CVE-2025-21764", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21764" }, { "name": "CVE-2025-21765", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21765" }, { "name": "CVE-2025-21766", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21766" }, { "name": "CVE-2025-21775", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21775" }, { "name": "CVE-2025-21776", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21776" }, { "name": "CVE-2025-21779", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21779" }, { "name": "CVE-2025-21781", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21781" }, { "name": "CVE-2025-21782", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21782" }, { "name": "CVE-2025-21787", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21787" }, { "name": "CVE-2025-21791", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21791" }, { "name": "CVE-2025-21792", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21792" }, { "name": "CVE-2025-21794", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21794" }, { "name": "CVE-2025-21796", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21796" }, { "name": "CVE-2025-21804", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21804" }, { "name": "CVE-2025-21806", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21806" }, { "name": "CVE-2025-21812", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21812" }, { "name": "CVE-2025-21814", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21814" }, { "name": "CVE-2025-21819", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21819" }, { "name": "CVE-2025-21820", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21820" }, { "name": "CVE-2025-21821", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21821" }, { "name": "CVE-2025-21823", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21823" }, { "name": "CVE-2025-21829", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21829" }, { "name": "CVE-2025-21830", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21830" }, { "name": "CVE-2025-21832", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21832" }, { "name": "CVE-2025-21835", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21835" }, { "name": "CVE-2022-49139", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49139" }, { "name": "CVE-2023-52831", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52831" }, { "name": "CVE-2023-52927", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52927" }, { "name": "CVE-2024-41149", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41149" }, { "name": "CVE-2024-46736", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46736" }, { "name": "CVE-2024-46796", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46796" }, { "name": "CVE-2024-52559", "url": "https://www.cve.org/CVERecord?id=CVE-2024-52559" }, { "name": "CVE-2024-57947", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57947" }, { "name": "CVE-2024-57974", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57974" }, { "name": "CVE-2024-57990", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57990" }, { "name": "CVE-2024-57999", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57999" }, { "name": "CVE-2024-58002", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58002" }, { "name": "CVE-2024-58005", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58005" }, { "name": "CVE-2024-58006", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58006" }, { "name": "CVE-2024-58012", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58012" }, { "name": "CVE-2024-58019", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58019" }, { "name": "CVE-2024-58057", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58057" }, { "name": "CVE-2024-58078", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58078" }, { "name": "CVE-2024-58079", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58079" }, { "name": "CVE-2025-21693", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21693" }, { "name": "CVE-2025-21714", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21714" }, { "name": "CVE-2025-21723", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21723" }, { "name": "CVE-2025-21732", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21732" }, { "name": "CVE-2025-21739", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21739" }, { "name": "CVE-2025-21741", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21741" }, { "name": "CVE-2025-21742", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21742" }, { "name": "CVE-2025-21743", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21743" }, { "name": "CVE-2025-21756", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21756" }, { "name": "CVE-2025-21759", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21759" }, { "name": "CVE-2025-21773", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21773" }, { "name": "CVE-2025-21784", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21784" }, { "name": "CVE-2025-21793", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21793" }, { "name": "CVE-2025-21810", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21810" }, { "name": "CVE-2025-21815", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21815" }, { "name": "CVE-2025-21825", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21825" }, { "name": "CVE-2025-21828", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21828" }, { "name": "CVE-2025-21831", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21831" }, { "name": "CVE-2025-21838", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21838" }, { "name": "CVE-2025-21844", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21844" }, { "name": "CVE-2025-21846", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21846" }, { "name": "CVE-2025-21847", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21847" }, { "name": "CVE-2025-21848", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21848" }, { "name": "CVE-2025-21850", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21850" }, { "name": "CVE-2025-21855", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21855" }, { "name": "CVE-2025-21856", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21856" }, { "name": "CVE-2025-21857", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21857" }, { "name": "CVE-2025-21858", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21858" }, { "name": "CVE-2025-21859", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21859" }, { "name": "CVE-2025-21861", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21861" }, { "name": "CVE-2025-21862", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21862" }, { "name": "CVE-2025-21864", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21864" }, { "name": "CVE-2025-21865", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21865" }, { "name": "CVE-2025-21866", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21866" }, { "name": "CVE-2025-21869", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21869" }, { "name": "CVE-2025-21870", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21870" }, { "name": "CVE-2025-21871", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21871" }, { "name": "CVE-2025-21876", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21876" }, { "name": "CVE-2025-21877", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21877" }, { "name": "CVE-2025-21878", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21878" }, { "name": "CVE-2025-21883", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21883" }, { "name": "CVE-2025-21885", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21885" }, { "name": "CVE-2025-21886", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21886" }, { "name": "CVE-2025-21888", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21888" }, { "name": "CVE-2025-21890", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21890" }, { "name": "CVE-2025-21891", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21891" }, { "name": "CVE-2025-21892", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21892" }, { "name": "CVE-2025-21702", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21702" }, { "name": "CVE-2025-21867", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21867" }, { "name": "CVE-2025-21875", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21875" }, { "name": "CVE-2025-21881", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21881" }, { "name": "CVE-2025-21887", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21887" }, { "name": "CVE-2025-21904", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21904" }, { "name": "CVE-2025-21905", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21905" }, { "name": "CVE-2025-21909", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21909" }, { "name": "CVE-2025-21910", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21910" }, { "name": "CVE-2025-21912", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21912" }, { "name": "CVE-2025-21913", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21913" }, { "name": "CVE-2025-21914", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21914" }, { "name": "CVE-2025-21916", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21916" }, { "name": "CVE-2025-21917", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21917" }, { "name": "CVE-2025-21918", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21918" }, { "name": "CVE-2025-21919", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21919" }, { "name": "CVE-2025-21922", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21922" }, { "name": "CVE-2025-21924", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21924" }, { "name": "CVE-2025-21925", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21925" }, { "name": "CVE-2025-21926", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21926" }, { "name": "CVE-2025-21928", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21928" }, { "name": "CVE-2025-21934", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21934" }, { "name": "CVE-2025-21935", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21935" }, { "name": "CVE-2025-21936", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21936" }, { "name": "CVE-2025-21937", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21937" }, { "name": "CVE-2025-21941", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21941" }, { "name": "CVE-2025-21943", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21943" }, { "name": "CVE-2025-21948", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21948" }, { "name": "CVE-2025-21950", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21950" }, { "name": "CVE-2025-21951", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21951" }, { "name": "CVE-2025-21956", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21956" }, { "name": "CVE-2025-21957", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21957" }, { "name": "CVE-2025-21960", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21960" }, { "name": "CVE-2025-21962", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21962" }, { "name": "CVE-2025-21963", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21963" }, { "name": "CVE-2025-21964", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21964" }, { "name": "CVE-2025-21968", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21968" }, { "name": "CVE-2025-21970", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21970" }, { "name": "CVE-2025-21971", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21971" }, { "name": "CVE-2025-21975", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21975" }, { "name": "CVE-2025-21978", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21978" }, { "name": "CVE-2025-21979", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21979" }, { "name": "CVE-2025-21980", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21980" }, { "name": "CVE-2025-21981", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21981" }, { "name": "CVE-2025-21991", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21991" }, { "name": "CVE-2025-21992", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21992" }, { "name": "CVE-2025-21993", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21993" }, { "name": "CVE-2025-21996", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21996" }, { "name": "CVE-2025-21999", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21999" }, { "name": "CVE-2025-22004", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22004" }, { "name": "CVE-2025-22007", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22007" }, { "name": "CVE-2025-22008", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22008" }, { "name": "CVE-2025-22010", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22010" }, { "name": "CVE-2025-22014", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22014" }, { "name": "CVE-2025-22015", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22015" }, { "name": "CVE-2025-21969", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21969" }, { "name": "CVE-2025-21696", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21696" }, { "name": "CVE-2025-2312", "url": "https://www.cve.org/CVERecord?id=CVE-2025-2312" }, { "name": "CVE-2025-21927", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21927" }, { "name": "CVE-2023-53034", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53034" }, { "name": "CVE-2025-21853", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21853" }, { "name": "CVE-2025-22025", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22025" }, { "name": "CVE-2025-22027", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22027" }, { "name": "CVE-2025-22033", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22033" }, { "name": "CVE-2025-22044", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22044" }, { "name": "CVE-2025-22045", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22045" }, { "name": "CVE-2025-22050", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22050" }, { "name": "CVE-2025-22055", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22055" }, { "name": "CVE-2025-22056", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22056" }, { "name": "CVE-2025-22058", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22058" }, { "name": "CVE-2025-22060", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22060" }, { "name": "CVE-2025-22063", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22063" }, { "name": "CVE-2025-22075", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22075" }, { "name": "CVE-2025-22086", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22086" }, { "name": "CVE-2025-22088", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22088" }, { "name": "CVE-2025-22093", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22093" }, { "name": "CVE-2025-22097", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22097" }, { "name": "CVE-2025-22126", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22126" }, { "name": "CVE-2025-23136", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23136" }, { "name": "CVE-2025-23138", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23138" }, { "name": "CVE-2025-37785", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37785" }, { "name": "CVE-2025-38152", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38152" }, { "name": "CVE-2025-38637", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38637" }, { "name": "CVE-2025-39728", "url": "https://www.cve.org/CVERecord?id=CVE-2025-39728" }, { "name": "CVE-2024-28956", "url": "https://www.cve.org/CVERecord?id=CVE-2024-28956" }, { "name": "CVE-2025-21953", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21953" }, { "name": "CVE-2022-49110", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49110" }, { "name": "CVE-2022-49767", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49767" }, { "name": "CVE-2023-53051", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53051" }, { "name": "CVE-2024-35840", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35840" }, { "name": "CVE-2024-58018", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58018" }, { "name": "CVE-2024-58070", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58070" }, { "name": "CVE-2024-58088", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58088" }, { "name": "CVE-2024-58093", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58093" }, { "name": "CVE-2024-58094", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58094" }, { "name": "CVE-2024-58095", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58095" }, { "name": "CVE-2024-58096", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58096" }, { "name": "CVE-2024-58097", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58097" }, { "name": "CVE-2025-21729", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21729" }, { "name": "CVE-2025-21755", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21755" }, { "name": "CVE-2025-21768", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21768" }, { "name": "CVE-2025-21808", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21808" }, { "name": "CVE-2025-21833", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21833" }, { "name": "CVE-2025-21836", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21836" }, { "name": "CVE-2025-21852", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21852" }, { "name": "CVE-2025-21854", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21854" }, { "name": "CVE-2025-21863", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21863" }, { "name": "CVE-2025-21873", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21873" }, { "name": "CVE-2025-21884", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21884" }, { "name": "CVE-2025-21889", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21889" }, { "name": "CVE-2025-21894", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21894" }, { "name": "CVE-2025-21895", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21895" }, { "name": "CVE-2025-21906", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21906" }, { "name": "CVE-2025-21908", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21908" }, { "name": "CVE-2025-21915", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21915" }, { "name": "CVE-2025-21923", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21923" }, { "name": "CVE-2025-21930", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21930" }, { "name": "CVE-2025-21931", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21931" }, { "name": "CVE-2025-21961", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21961" }, { "name": "CVE-2025-21966", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21966" }, { "name": "CVE-2025-21972", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21972" }, { "name": "CVE-2025-21985", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21985" }, { "name": "CVE-2025-21995", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21995" }, { "name": "CVE-2025-22001", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22001" }, { "name": "CVE-2025-22003", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22003" }, { "name": "CVE-2025-22009", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22009" }, { "name": "CVE-2025-22013", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22013" }, { "name": "CVE-2025-22016", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22016" }, { "name": "CVE-2025-22017", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22017" }, { "name": "CVE-2025-22018", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22018" }, { "name": "CVE-2025-22020", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22020" }, { "name": "CVE-2025-22029", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22029" }, { "name": "CVE-2025-22036", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22036" }, { "name": "CVE-2025-22053", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22053" }, { "name": "CVE-2025-22062", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22062" }, { "name": "CVE-2025-22064", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22064" }, { "name": "CVE-2025-22065", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22065" }, { "name": "CVE-2025-22080", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22080" }, { "name": "CVE-2025-22090", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22090" }, { "name": "CVE-2025-22102", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22102" }, { "name": "CVE-2025-22104", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22104" }, { "name": "CVE-2025-22105", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22105" }, { "name": "CVE-2025-22106", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22106" }, { "name": "CVE-2025-22107", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22107" }, { "name": "CVE-2025-22108", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22108" }, { "name": "CVE-2025-22109", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22109" }, { "name": "CVE-2025-22115", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22115" }, { "name": "CVE-2025-22116", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22116" }, { "name": "CVE-2025-22121", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22121" }, { "name": "CVE-2025-22128", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22128" }, { "name": "CVE-2025-23129", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23129" }, { "name": "CVE-2025-23131", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23131" }, { "name": "CVE-2025-23133", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23133" }, { "name": "CVE-2025-23145", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23145" }, { "name": "CVE-2025-37798", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37798" }, { "name": "CVE-2025-37799", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37799" }, { "name": "CVE-2025-37860", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37860" }, { "name": "CVE-2025-37749", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37749" }, { "name": "CVE-2025-22021", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22021" }, { "name": "CVE-2025-23140", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23140" }, { "name": "CVE-2025-23150", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23150" }, { "name": "CVE-2025-37748", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37748" }, { "name": "CVE-2025-37773", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37773" }, { "name": "CVE-2025-37780", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37780" }, { "name": "CVE-2025-37787", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37787" }, { "name": "CVE-2025-37789", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37789" }, { "name": "CVE-2025-37790", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37790" }, { "name": "CVE-2025-37797", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37797" }, { "name": "CVE-2025-37803", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37803" }, { "name": "CVE-2025-37820", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37820" }, { "name": "CVE-2025-37823", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37823" }, { "name": "CVE-2025-37824", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37824" }, { "name": "CVE-2025-37829", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37829" }, { "name": "CVE-2025-37830", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37830" }, { "name": "CVE-2025-37879", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37879" }, { "name": "CVE-2025-37948", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37948" }, { "name": "CVE-2025-37949", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37949" }, { "name": "CVE-2025-37963", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37963" }, { "name": "CVE-2022-49769", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49769" }, { "name": "CVE-2022-49770", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49770" }, { "name": "CVE-2022-49771", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49771" }, { "name": "CVE-2022-49772", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49772" }, { "name": "CVE-2022-49775", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49775" }, { "name": "CVE-2022-49776", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49776" }, { "name": "CVE-2022-49777", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49777" }, { "name": "CVE-2022-49779", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49779" }, { "name": "CVE-2022-49783", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49783" }, { "name": "CVE-2022-49787", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49787" }, { "name": "CVE-2022-49788", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49788" }, { "name": "CVE-2022-49789", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49789" }, { "name": "CVE-2022-49790", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49790" }, { "name": "CVE-2022-49792", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49792" }, { "name": "CVE-2022-49793", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49793" }, { "name": "CVE-2022-49794", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49794" }, { "name": "CVE-2022-49796", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49796" }, { "name": "CVE-2022-49797", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49797" }, { "name": "CVE-2022-49799", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49799" }, { "name": "CVE-2022-49800", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49800" }, { "name": "CVE-2022-49801", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49801" }, { "name": "CVE-2022-49802", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49802" }, { "name": "CVE-2022-49807", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49807" }, { "name": "CVE-2022-49809", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49809" }, { "name": "CVE-2022-49810", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49810" }, { "name": "CVE-2022-49812", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49812" }, { "name": "CVE-2022-49813", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49813" }, { "name": "CVE-2022-49818", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49818" }, { "name": "CVE-2022-49821", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49821" }, { "name": "CVE-2022-49822", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49822" }, { "name": "CVE-2022-49823", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49823" }, { "name": "CVE-2022-49824", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49824" }, { "name": "CVE-2022-49825", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49825" }, { "name": "CVE-2022-49826", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49826" }, { "name": "CVE-2022-49827", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49827" }, { "name": "CVE-2022-49830", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49830" }, { "name": "CVE-2022-49832", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49832" }, { "name": "CVE-2022-49834", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49834" }, { "name": "CVE-2022-49835", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49835" }, { "name": "CVE-2022-49836", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49836" }, { "name": "CVE-2022-49839", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49839" }, { "name": "CVE-2022-49841", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49841" }, { "name": "CVE-2022-49842", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49842" }, { "name": "CVE-2022-49845", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49845" }, { "name": "CVE-2022-49846", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49846" }, { "name": "CVE-2022-49850", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49850" }, { "name": "CVE-2022-49853", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49853" }, { "name": "CVE-2022-49858", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49858" }, { "name": "CVE-2022-49860", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49860" }, { "name": "CVE-2022-49861", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49861" }, { "name": "CVE-2022-49863", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49863" }, { "name": "CVE-2022-49864", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49864" }, { "name": "CVE-2022-49865", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49865" }, { "name": "CVE-2022-49868", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49868" }, { "name": "CVE-2022-49869", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49869" }, { "name": "CVE-2022-49870", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49870" }, { "name": "CVE-2022-49871", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49871" }, { "name": "CVE-2022-49874", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49874" }, { "name": "CVE-2022-49879", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49879" }, { "name": "CVE-2022-49880", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49880" }, { "name": "CVE-2022-49881", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49881" }, { "name": "CVE-2022-49885", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49885" }, { "name": "CVE-2022-49887", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49887" }, { "name": "CVE-2022-49888", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49888" }, { "name": "CVE-2022-49889", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49889" }, { "name": "CVE-2022-49890", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49890" }, { "name": "CVE-2022-49891", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49891" }, { "name": "CVE-2022-49892", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49892" }, { "name": "CVE-2022-49900", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49900" }, { "name": "CVE-2022-49905", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49905" }, { "name": "CVE-2022-49906", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49906" }, { "name": "CVE-2022-49908", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49908" }, { "name": "CVE-2022-49909", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49909" }, { "name": "CVE-2022-49910", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49910" }, { "name": "CVE-2022-49915", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49915" }, { "name": "CVE-2022-49916", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49916" }, { "name": "CVE-2022-49922", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49922" }, { "name": "CVE-2022-49923", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49923" }, { "name": "CVE-2022-49924", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49924" }, { "name": "CVE-2022-49925", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49925" }, { "name": "CVE-2022-49927", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49927" }, { "name": "CVE-2022-49928", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49928" }, { "name": "CVE-2022-49931", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49931" }, { "name": "CVE-2023-53035", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53035" }, { "name": "CVE-2023-53038", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53038" }, { "name": "CVE-2023-53039", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53039" }, { "name": "CVE-2023-53040", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53040" }, { "name": "CVE-2023-53041", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53041" }, { "name": "CVE-2023-53044", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53044" }, { "name": "CVE-2023-53045", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53045" }, { "name": "CVE-2023-53049", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53049" }, { "name": "CVE-2023-53052", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53052" }, { "name": "CVE-2023-53054", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53054" }, { "name": "CVE-2023-53056", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53056" }, { "name": "CVE-2023-53058", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53058" }, { "name": "CVE-2023-53059", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53059" }, { "name": "CVE-2023-53060", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53060" }, { "name": "CVE-2023-53062", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53062" }, { "name": "CVE-2023-53064", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53064" }, { "name": "CVE-2023-53065", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53065" }, { "name": "CVE-2023-53066", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53066" }, { "name": "CVE-2023-53068", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53068" }, { "name": "CVE-2023-53075", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53075" }, { "name": "CVE-2023-53077", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53077" }, { "name": "CVE-2023-53078", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53078" }, { "name": "CVE-2023-53079", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53079" }, { "name": "CVE-2023-53081", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53081" }, { "name": "CVE-2023-53084", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53084" }, { "name": "CVE-2023-53087", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53087" }, { "name": "CVE-2023-53089", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53089" }, { "name": "CVE-2023-53090", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53090" }, { "name": "CVE-2023-53091", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53091" }, { "name": "CVE-2023-53092", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53092" }, { "name": "CVE-2023-53093", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53093" }, { "name": "CVE-2023-53096", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53096" }, { "name": "CVE-2023-53098", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53098" }, { "name": "CVE-2023-53099", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53099" }, { "name": "CVE-2023-53100", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53100" }, { "name": "CVE-2023-53101", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53101" }, { "name": "CVE-2023-53106", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53106" }, { "name": "CVE-2023-53108", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53108" }, { "name": "CVE-2023-53111", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53111" }, { "name": "CVE-2023-53114", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53114" }, { "name": "CVE-2023-53116", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53116" }, { "name": "CVE-2023-53118", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53118" }, { "name": "CVE-2023-53119", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53119" }, { "name": "CVE-2023-53123", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53123" }, { "name": "CVE-2023-53124", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53124" }, { "name": "CVE-2023-53125", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53125" }, { "name": "CVE-2023-53131", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53131" }, { "name": "CVE-2023-53134", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53134" }, { "name": "CVE-2023-53137", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53137" }, { "name": "CVE-2023-53139", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53139" }, { "name": "CVE-2023-53140", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53140" }, { "name": "CVE-2023-53142", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53142" }, { "name": "CVE-2023-53143", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53143" }, { "name": "CVE-2023-53145", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53145" }, { "name": "CVE-2025-22030", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22030" }, { "name": "CVE-2025-22057", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22057" }, { "name": "CVE-2025-22070", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22070" }, { "name": "CVE-2025-22103", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22103" }, { "name": "CVE-2025-22125", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22125" }, { "name": "CVE-2025-23160", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23160" }, { "name": "CVE-2025-37750", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37750" }, { "name": "CVE-2025-37755", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37755" }, { "name": "CVE-2025-37804", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37804" }, { "name": "CVE-2025-37809", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37809" }, { "name": "CVE-2025-37831", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37831" }, { "name": "CVE-2025-37833", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37833" }, { "name": "CVE-2025-37842", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37842" }, { "name": "CVE-2025-37870", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37870" }, { "name": "CVE-2025-37886", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37886" }, { "name": "CVE-2025-37887", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37887" }, { "name": "CVE-2025-37957", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37957" }, { "name": "CVE-2025-37958", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37958" }, { "name": "CVE-2025-37960", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37960" }, { "name": "CVE-2025-37974", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37974" }, { "name": "CVE-2025-40325", "url": "https://www.cve.org/CVERecord?id=CVE-2025-40325" } ], "initial_release_date": "2025-06-13T00:00:00", "last_revision_date": "2025-06-13T00:00:00", "links": [], "reference": "CERTFR-2025-AVI-0509", "revisions": [ { "description": "Version initiale", "revision_date": "2025-06-13T00:00:00.000000" } ], "risks": [ { "description": "Atteinte \u00e0 l\u0027int\u00e9grit\u00e9 des donn\u00e9es" }, { "description": "Ex\u00e9cution de code arbitraire" }, { "description": "Non sp\u00e9cifi\u00e9 par l\u0027\u00e9diteur" }, { "description": "D\u00e9ni de service" }, { "description": "Contournement de la politique de s\u00e9curit\u00e9" }, { "description": "Atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es" }, { "description": "\u00c9l\u00e9vation de privil\u00e8ges" } ], "summary": "De multiples vuln\u00e9rabilit\u00e9s ont \u00e9t\u00e9 d\u00e9couvertes dans le noyau Linux de SUSE. Certaines d\u0027entre elles permettent \u00e0 un attaquant de provoquer une ex\u00e9cution de code arbitraire, une \u00e9l\u00e9vation de privil\u00e8ges et une atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es.", "title": "Multiples vuln\u00e9rabilit\u00e9s dans le noyau Linux de SUSE", "vendor_advisories": [ { "published_at": "2025-06-11", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01901-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501901-1" }, { "published_at": "2025-06-11", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01894-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501894-1" }, { "published_at": "2025-06-11", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01892-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501892-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:20387-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520387-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01873-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501873-1" }, { "published_at": "2025-06-12", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01930-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501930-1" }, { "published_at": "2025-06-13", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01932-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501932-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:20388-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520388-1" }, { "published_at": "2025-06-12", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01927-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501927-1" }, { "published_at": "2025-06-11", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01908-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501908-1" }, { "published_at": "2025-06-12", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01918-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501918-1" }, { "published_at": "2025-06-12", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01928-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501928-1" }, { "published_at": "2025-06-09", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01843-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501843-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01875-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501875-1" }, { "published_at": "2025-06-12", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01922-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501922-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:20382-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520382-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01853-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501853-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01851-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501851-1" }, { "published_at": "2025-06-12", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01929-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501929-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:20389-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520389-1" }, { "published_at": "2025-06-11", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01899-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501899-1" }, { "published_at": "2025-06-09", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01840-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501840-1" }, { "published_at": "2025-06-09", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01849-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501849-1" }, { "published_at": "2025-06-11", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01893-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501893-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:20383-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520383-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:20384-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520384-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:20381-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520381-1" }, { "published_at": "2025-06-09", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01844-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501844-1" }, { "published_at": "2025-06-12", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01919-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501919-1" }, { "published_at": "2025-06-09", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01839-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501839-1" }, { "published_at": "2025-06-12", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01935-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501935-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01869-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501869-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01868-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501868-1" }, { "published_at": "2025-06-11", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01907-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501907-1" }, { "published_at": "2025-06-10", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:20386-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520386-1" }, { "published_at": "2025-06-12", "title": "Bulletin de s\u00e9curit\u00e9 SUSE SUSE-SU-2025:01906-1", "url": "https://www.suse.com/support/update/announcement/2025/suse-su-202501906-1" } ] }
CERTFR-2025-AVI-0758
Vulnerability from certfr_avis
De multiples vulnérabilités ont été découvertes dans le noyau Linux d'Ubuntu. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, un déni de service à distance et une atteinte à la confidentialité des données.
Solutions
Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation).
Title | Publication Time | Tags | |||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
{ "$ref": "https://www.cert.ssi.gouv.fr/openapi.json", "affected_systems": [ { "description": "Ubuntu 16.04 ESM", "product": { "name": "Ubuntu", "vendor": { "name": "Ubuntu", "scada": false } } }, { "description": "Ubuntu 20.04 ESM", "product": { "name": "Ubuntu", "vendor": { "name": "Ubuntu", "scada": false } } }, { "description": "Ubuntu 24.04 LTS", "product": { "name": "Ubuntu", "vendor": { "name": "Ubuntu", "scada": false } } }, { "description": "Ubuntu 14.04 ESM", "product": { "name": "Ubuntu", "vendor": { "name": "Ubuntu", "scada": false } } }, { "description": "Ubuntu 22.04 LTS", "product": { "name": "Ubuntu", "vendor": { "name": "Ubuntu", "scada": false } } } ], "affected_systems_content": "", "content": "## Solutions\n\nSe r\u00e9f\u00e9rer au bulletin de s\u00e9curit\u00e9 de l\u0027\u00e9diteur pour l\u0027obtention des correctifs (cf. section Documentation).", "cves": [ { "name": "CVE-2023-52477", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52477" }, { "name": "CVE-2024-26686", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26686" }, { "name": "CVE-2024-27074", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27074" }, { "name": "CVE-2024-26739", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26739" }, { "name": "CVE-2021-47345", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47345" }, { "name": "CVE-2024-35866", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35866" }, { "name": "CVE-2024-35867", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35867" }, { "name": "CVE-2024-35943", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35943" }, { "name": "CVE-2024-35790", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35790" }, { "name": "CVE-2024-38540", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38540" }, { "name": "CVE-2024-38541", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38541" }, { "name": "CVE-2024-36908", "url": "https://www.cve.org/CVERecord?id=CVE-2024-36908" }, { "name": "CVE-2024-27402", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27402" }, { "name": "CVE-2022-48893", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48893" }, { "name": "CVE-2024-42322", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42322" }, { "name": "CVE-2024-46751", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46751" }, { "name": "CVE-2024-46774", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46774" }, { "name": "CVE-2024-46787", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46787" }, { "name": "CVE-2024-46816", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46816" }, { "name": "CVE-2024-47685", "url": "https://www.cve.org/CVERecord?id=CVE-2024-47685" }, { "name": "CVE-2024-49960", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49960" }, { "name": "CVE-2024-50047", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50047" }, { "name": "CVE-2024-50073", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50073" }, { "name": "CVE-2024-50272", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50272" }, { "name": "CVE-2024-50280", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50280" }, { "name": "CVE-2024-27407", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27407" }, { "name": "CVE-2024-49989", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49989" }, { "name": "CVE-2024-50125", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50125" }, { "name": "CVE-2024-53051", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53051" }, { "name": "CVE-2024-50202", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50202" }, { "name": "CVE-2024-53130", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53130" }, { "name": "CVE-2024-53131", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53131" }, { "name": "CVE-2024-50051", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50051" }, { "name": "CVE-2024-50258", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50258" }, { "name": "CVE-2024-53203", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53203" }, { "name": "CVE-2024-53128", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53128" }, { "name": "CVE-2024-49887", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49887" }, { "name": "CVE-2024-56751", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56751" }, { "name": "CVE-2024-57979", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57979" }, { "name": "CVE-2024-57994", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57994" }, { "name": "CVE-2025-21705", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21705" }, { "name": "CVE-2025-21715", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21715" }, { "name": "CVE-2025-21716", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21716" }, { "name": "CVE-2025-21719", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21719" }, { "name": "CVE-2025-21724", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21724" }, { "name": "CVE-2025-21725", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21725" }, { "name": "CVE-2025-21728", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21728" }, { "name": "CVE-2025-21733", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21733" }, { "name": "CVE-2025-21753", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21753" }, { "name": "CVE-2025-21754", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21754" }, { "name": "CVE-2025-21767", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21767" }, { "name": "CVE-2025-21790", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21790" }, { "name": "CVE-2025-21795", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21795" }, { "name": "CVE-2025-21799", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21799" }, { "name": "CVE-2025-21802", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21802" }, { "name": "CVE-2022-49063", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49063" }, { "name": "CVE-2022-49535", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49535" }, { "name": "CVE-2024-57996", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57996" }, { "name": "CVE-2024-58014", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58014" }, { "name": "CVE-2025-21718", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21718" }, { "name": "CVE-2025-21772", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21772" }, { "name": "CVE-2025-21780", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21780" }, { "name": "CVE-2025-21785", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21785" }, { "name": "CVE-2024-54458", "url": "https://www.cve.org/CVERecord?id=CVE-2024-54458" }, { "name": "CVE-2024-57834", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57834" }, { "name": "CVE-2024-57973", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57973" }, { "name": "CVE-2024-57980", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57980" }, { "name": "CVE-2024-57981", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57981" }, { "name": "CVE-2024-57986", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57986" }, { "name": "CVE-2024-57993", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57993" }, { "name": "CVE-2024-57997", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57997" }, { "name": "CVE-2024-57998", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57998" }, { "name": "CVE-2024-58001", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58001" }, { "name": "CVE-2024-58007", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58007" }, { "name": "CVE-2024-58010", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58010" }, { "name": "CVE-2024-58011", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58011" }, { "name": "CVE-2024-58013", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58013" }, { "name": "CVE-2024-58016", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58016" }, { "name": "CVE-2024-58017", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58017" }, { "name": "CVE-2024-58020", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58020" }, { "name": "CVE-2024-58034", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58034" }, { "name": "CVE-2024-58051", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58051" }, { "name": "CVE-2024-58052", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58052" }, { "name": "CVE-2024-58054", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58054" }, { "name": "CVE-2024-58055", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58055" }, { "name": "CVE-2024-58056", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58056" }, { "name": "CVE-2024-58058", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58058" }, { "name": "CVE-2024-58061", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58061" }, { "name": "CVE-2024-58063", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58063" }, { "name": "CVE-2024-58068", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58068" }, { "name": "CVE-2024-58069", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58069" }, { "name": "CVE-2024-58071", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58071" }, { "name": "CVE-2024-58072", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58072" }, { "name": "CVE-2024-58076", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58076" }, { "name": "CVE-2024-58077", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58077" }, { "name": "CVE-2024-58080", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58080" }, { "name": "CVE-2024-58083", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58083" }, { "name": "CVE-2024-58085", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58085" }, { "name": "CVE-2024-58086", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58086" }, { "name": "CVE-2025-21704", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21704" }, { "name": "CVE-2025-21706", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21706" }, { "name": "CVE-2025-21707", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21707" }, { "name": "CVE-2025-21708", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21708" }, { "name": "CVE-2025-21711", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21711" }, { "name": "CVE-2025-21722", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21722" }, { "name": "CVE-2025-21726", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21726" }, { "name": "CVE-2025-21727", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21727" }, { "name": "CVE-2025-21731", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21731" }, { "name": "CVE-2025-21734", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21734" }, { "name": "CVE-2025-21735", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21735" }, { "name": "CVE-2025-21736", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21736" }, { "name": "CVE-2025-21738", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21738" }, { "name": "CVE-2025-21744", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21744" }, { "name": "CVE-2025-21745", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21745" }, { "name": "CVE-2025-21748", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21748" }, { "name": "CVE-2025-21749", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21749" }, { "name": "CVE-2025-21750", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21750" }, { "name": "CVE-2025-21758", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21758" }, { "name": "CVE-2025-21760", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21760" }, { "name": "CVE-2025-21761", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21761" }, { "name": "CVE-2025-21762", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21762" }, { "name": "CVE-2025-21763", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21763" }, { "name": "CVE-2025-21764", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21764" }, { "name": "CVE-2025-21765", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21765" }, { "name": "CVE-2025-21766", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21766" }, { "name": "CVE-2025-21775", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21775" }, { "name": "CVE-2025-21776", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21776" }, { "name": "CVE-2025-21779", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21779" }, { "name": "CVE-2025-21781", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21781" }, { "name": "CVE-2025-21782", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21782" }, { "name": "CVE-2025-21787", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21787" }, { "name": "CVE-2025-21791", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21791" }, { "name": "CVE-2025-21792", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21792" }, { "name": "CVE-2025-21796", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21796" }, { "name": "CVE-2025-21804", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21804" }, { "name": "CVE-2025-21806", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21806" }, { "name": "CVE-2025-21811", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21811" }, { "name": "CVE-2025-21812", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21812" }, { "name": "CVE-2025-21814", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21814" }, { "name": "CVE-2025-21820", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21820" }, { "name": "CVE-2025-21821", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21821" }, { "name": "CVE-2025-21823", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21823" }, { "name": "CVE-2025-21826", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21826" }, { "name": "CVE-2025-21829", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21829" }, { "name": "CVE-2025-21830", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21830" }, { "name": "CVE-2025-21832", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21832" }, { "name": "CVE-2025-21835", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21835" }, { "name": "CVE-2024-52559", "url": "https://www.cve.org/CVERecord?id=CVE-2024-52559" }, { "name": "CVE-2024-57974", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57974" }, { "name": "CVE-2024-57990", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57990" }, { "name": "CVE-2024-57999", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57999" }, { "name": "CVE-2024-58002", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58002" }, { "name": "CVE-2024-58005", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58005" }, { "name": "CVE-2024-58006", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58006" }, { "name": "CVE-2024-58019", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58019" }, { "name": "CVE-2024-58057", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58057" }, { "name": "CVE-2024-58078", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58078" }, { "name": "CVE-2024-58079", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58079" }, { "name": "CVE-2025-21714", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21714" }, { "name": "CVE-2025-21723", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21723" }, { "name": "CVE-2025-21732", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21732" }, { "name": "CVE-2025-21739", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21739" }, { "name": "CVE-2025-21741", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21741" }, { "name": "CVE-2025-21742", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21742" }, { "name": "CVE-2025-21743", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21743" }, { "name": "CVE-2025-21759", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21759" }, { "name": "CVE-2025-21773", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21773" }, { "name": "CVE-2025-21784", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21784" }, { "name": "CVE-2025-21793", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21793" }, { "name": "CVE-2025-21810", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21810" }, { "name": "CVE-2025-21815", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21815" }, { "name": "CVE-2025-21825", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21825" }, { "name": "CVE-2025-21828", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21828" }, { "name": "CVE-2025-21838", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21838" }, { "name": "CVE-2025-21839", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21839" }, { "name": "CVE-2025-21844", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21844" }, { "name": "CVE-2025-21846", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21846" }, { "name": "CVE-2025-21847", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21847" }, { "name": "CVE-2025-21848", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21848" }, { "name": "CVE-2025-21855", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21855" }, { "name": "CVE-2025-21856", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21856" }, { "name": "CVE-2025-21857", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21857" }, { "name": "CVE-2025-21858", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21858" }, { "name": "CVE-2025-21859", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21859" }, { "name": "CVE-2025-21861", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21861" }, { "name": "CVE-2025-21862", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21862" }, { "name": "CVE-2025-21864", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21864" }, { "name": "CVE-2025-21866", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21866" }, { "name": "CVE-2025-21869", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21869" }, { "name": "CVE-2025-21870", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21870" }, { "name": "CVE-2025-21871", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21871" }, { "name": "CVE-2024-57977", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57977" }, { "name": "CVE-2025-21712", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21712" }, { "name": "CVE-2025-21721", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21721" }, { "name": "CVE-2025-21867", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21867" }, { "name": "CVE-2025-21887", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21887" }, { "name": "CVE-2024-46742", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46742" }, { "name": "CVE-2025-21853", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21853" }, { "name": "CVE-2025-22027", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22027" }, { "name": "CVE-2025-37838", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37838" }, { "name": "CVE-2024-58081", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58081" }, { "name": "CVE-2024-58018", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58018" }, { "name": "CVE-2024-58070", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58070" }, { "name": "CVE-2024-58088", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58088" }, { "name": "CVE-2024-58093", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58093" }, { "name": "CVE-2025-21768", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21768" }, { "name": "CVE-2025-21808", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21808" }, { "name": "CVE-2025-21836", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21836" }, { "name": "CVE-2025-21854", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21854" }, { "name": "CVE-2025-21863", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21863" }, { "name": "CVE-2025-22062", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22062" }, { "name": "CVE-2025-23145", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23145" }, { "name": "CVE-2025-37798", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37798" }, { "name": "CVE-2025-37749", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37749" }, { "name": "CVE-2025-23140", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23140" }, { "name": "CVE-2025-23142", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23142" }, { "name": "CVE-2025-23144", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23144" }, { "name": "CVE-2025-23146", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23146" }, { "name": "CVE-2025-23147", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23147" }, { "name": "CVE-2025-23148", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23148" }, { "name": "CVE-2025-23150", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23150" }, { "name": "CVE-2025-23151", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23151" }, { "name": "CVE-2025-23156", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23156" }, { "name": "CVE-2025-23157", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23157" }, { "name": "CVE-2025-23158", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23158" }, { "name": "CVE-2025-23159", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23159" }, { "name": "CVE-2025-23161", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23161" }, { "name": "CVE-2025-23163", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23163" }, { "name": "CVE-2025-37738", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37738" }, { "name": "CVE-2025-37739", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37739" }, { "name": "CVE-2025-37740", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37740" }, { "name": "CVE-2025-37741", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37741" }, { "name": "CVE-2025-37742", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37742" }, { "name": "CVE-2025-37752", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37752" }, { "name": "CVE-2025-37756", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37756" }, { "name": "CVE-2025-37757", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37757" }, { "name": "CVE-2025-37758", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37758" }, { "name": "CVE-2025-37765", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37765" }, { "name": "CVE-2025-37766", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37766" }, { "name": "CVE-2025-37767", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37767" }, { "name": "CVE-2025-37768", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37768" }, { "name": "CVE-2025-37770", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37770" }, { "name": "CVE-2025-37771", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37771" }, { "name": "CVE-2025-37773", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37773" }, { "name": "CVE-2025-37780", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37780" }, { "name": "CVE-2025-37781", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37781" }, { "name": "CVE-2025-37787", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37787" }, { "name": "CVE-2025-37788", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37788" }, { "name": "CVE-2025-37789", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37789" }, { "name": "CVE-2025-37790", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37790" }, { "name": "CVE-2025-37792", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37792" }, { "name": "CVE-2025-37794", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37794" }, { "name": "CVE-2025-37796", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37796" }, { "name": "CVE-2025-37797", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37797" }, { "name": "CVE-2025-37803", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37803" }, { "name": "CVE-2025-37805", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37805" }, { "name": "CVE-2025-37808", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37808" }, { "name": "CVE-2025-37810", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37810" }, { "name": "CVE-2025-37811", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37811" }, { "name": "CVE-2025-37812", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37812" }, { "name": "CVE-2025-37817", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37817" }, { "name": "CVE-2025-37823", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37823" }, { "name": "CVE-2025-37824", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37824" }, { "name": "CVE-2025-37829", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37829" }, { "name": "CVE-2025-37830", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37830" }, { "name": "CVE-2025-37836", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37836" }, { "name": "CVE-2025-37839", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37839" }, { "name": "CVE-2025-37840", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37840" }, { "name": "CVE-2025-37841", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37841" }, { "name": "CVE-2025-37844", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37844" }, { "name": "CVE-2025-37850", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37850" }, { "name": "CVE-2025-37851", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37851" }, { "name": "CVE-2025-37857", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37857" }, { "name": "CVE-2025-37858", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37858" }, { "name": "CVE-2025-37859", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37859" }, { "name": "CVE-2025-37862", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37862" }, { "name": "CVE-2025-37867", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37867" }, { "name": "CVE-2025-37871", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37871" }, { "name": "CVE-2025-37875", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37875" }, { "name": "CVE-2025-37881", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37881" }, { "name": "CVE-2025-37883", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37883" }, { "name": "CVE-2025-37885", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37885" }, { "name": "CVE-2025-37892", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37892" }, { "name": "CVE-2025-37940", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37940" }, { "name": "CVE-2025-37982", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37982" }, { "name": "CVE-2025-37983", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37983" }, { "name": "CVE-2025-37985", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37985" }, { "name": "CVE-2025-37989", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37989" }, { "name": "CVE-2025-37819", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37819" }, { "name": "CVE-2025-37890", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37890" }, { "name": "CVE-2025-37905", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37905" }, { "name": "CVE-2025-37909", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37909" }, { "name": "CVE-2025-37911", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37911" }, { "name": "CVE-2025-37912", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37912" }, { "name": "CVE-2025-37913", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37913" }, { "name": "CVE-2025-37914", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37914" }, { "name": "CVE-2025-37915", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37915" }, { "name": "CVE-2025-37923", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37923" }, { "name": "CVE-2025-37927", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37927" }, { "name": "CVE-2025-37930", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37930" }, { "name": "CVE-2025-37932", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37932" }, { "name": "CVE-2025-37949", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37949" }, { "name": "CVE-2025-37964", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37964" }, { "name": "CVE-2025-37967", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37967" }, { "name": "CVE-2025-37969", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37969" }, { "name": "CVE-2025-37970", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37970" }, { "name": "CVE-2025-37990", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37990" }, { "name": "CVE-2025-37991", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37991" }, { "name": "CVE-2025-37750", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37750" }, { "name": "CVE-2025-37974", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37974" }, { "name": "CVE-2022-49168", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49168" }, { "name": "CVE-2025-21868", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21868" }, { "name": "CVE-2025-37998", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37998" }, { "name": "CVE-2025-37997", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37997" }, { "name": "CVE-2025-38000", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38000" }, { "name": "CVE-2025-38001", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38001" }, { "name": "CVE-2024-57982", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57982" }, { "name": "CVE-2024-58053", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58053" }, { "name": "CVE-2025-21720", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21720" }, { "name": "CVE-2025-37992", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37992" }, { "name": "CVE-2025-37994", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37994" }, { "name": "CVE-2025-37995", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37995" }, { "name": "CVE-2025-38003", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38003" }, { "name": "CVE-2025-38004", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38004" }, { "name": "CVE-2025-38005", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38005" }, { "name": "CVE-2025-38009", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38009" }, { "name": "CVE-2025-38023", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38023" }, { "name": "CVE-2025-38024", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38024" }, { "name": "CVE-2025-38031", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38031" }, { "name": "CVE-2025-38043", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38043" }, { "name": "CVE-2025-38044", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38044" }, { "name": "CVE-2025-38065", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38065" }, { "name": "CVE-2025-38068", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38068" }, { "name": "CVE-2025-38072", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38072" }, { "name": "CVE-2025-38077", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38077" }, { "name": "CVE-2025-38078", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38078" }, { "name": "CVE-2025-38079", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38079" }, { "name": "CVE-2025-38083", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38083" }, { "name": "CVE-2022-21546", "url": "https://www.cve.org/CVERecord?id=CVE-2022-21546" }, { "name": "CVE-2025-38061", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38061" }, { "name": "CVE-2025-38177", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38177" }, { "name": "CVE-2024-57953", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57953" }, { "name": "CVE-2024-57975", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57975" }, { "name": "CVE-2024-57984", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57984" }, { "name": "CVE-2024-58003", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58003" }, { "name": "CVE-2024-58082", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58082" }, { "name": "CVE-2025-21710", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21710" }, { "name": "CVE-2025-21798", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21798" }, { "name": "CVE-2025-21801", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21801" }, { "name": "CVE-2025-21809", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21809" }, { "name": "CVE-2025-21816", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21816" }, { "name": "CVE-2025-38094", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38094" }, { "name": "CVE-2025-38052", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38052" }, { "name": "CVE-2025-38034", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38034" }, { "name": "CVE-2025-38035", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38035" }, { "name": "CVE-2025-38037", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38037" }, { "name": "CVE-2025-38048", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38048" }, { "name": "CVE-2025-38051", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38051" }, { "name": "CVE-2025-38058", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38058" }, { "name": "CVE-2025-38066", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38066" }, { "name": "CVE-2025-38075", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38075" }, { "name": "CVE-2025-38174", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38174" }, { "name": "CVE-2025-38350", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38350" }, { "name": "CVE-2024-54456", "url": "https://www.cve.org/CVERecord?id=CVE-2024-54456" }, { "name": "CVE-2025-21746", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21746" }, { "name": "CVE-2025-21783", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21783" }, { "name": "CVE-2025-21786", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21786" } ], "initial_release_date": "2025-09-05T00:00:00", "last_revision_date": "2025-09-05T00:00:00", "links": [], "reference": "CERTFR-2025-AVI-0758", "revisions": [ { "description": "Version initiale", "revision_date": "2025-09-05T00:00:00.000000" } ], "risks": [ { "description": "D\u00e9ni de service \u00e0 distance" }, { "description": "Ex\u00e9cution de code arbitraire \u00e0 distance" }, { "description": "Atteinte \u00e0 l\u0027int\u00e9grit\u00e9 des donn\u00e9es" }, { "description": "Non sp\u00e9cifi\u00e9 par l\u0027\u00e9diteur" }, { "description": "Contournement de la politique de s\u00e9curit\u00e9" }, { "description": "Atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es" } ], "summary": "De multiples vuln\u00e9rabilit\u00e9s ont \u00e9t\u00e9 d\u00e9couvertes dans le noyau Linux d\u0027Ubuntu. Certaines d\u0027entre elles permettent \u00e0 un attaquant de provoquer une ex\u00e9cution de code arbitraire \u00e0 distance, un d\u00e9ni de service \u00e0 distance et une atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es.", "title": "Multiples vuln\u00e9rabilit\u00e9s dans le noyau Linux d\u0027Ubuntu", "vendor_advisories": [ { "published_at": "2025-09-02", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7726-4", "url": "https://ubuntu.com/security/notices/USN-7726-4" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7725-1", "url": "https://ubuntu.com/security/notices/USN-7725-1" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7726-2", "url": "https://ubuntu.com/security/notices/USN-7726-2" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7703-4", "url": "https://ubuntu.com/security/notices/USN-7703-4" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7726-3", "url": "https://ubuntu.com/security/notices/USN-7726-3" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7724-1", "url": "https://ubuntu.com/security/notices/USN-7724-1" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7727-2", "url": "https://ubuntu.com/security/notices/USN-7727-2" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7725-2", "url": "https://ubuntu.com/security/notices/USN-7725-2" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7704-5", "url": "https://ubuntu.com/security/notices/USN-7704-5" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7727-1", "url": "https://ubuntu.com/security/notices/USN-7727-1" }, { "published_at": "2025-09-02", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7727-3", "url": "https://ubuntu.com/security/notices/USN-7727-3" }, { "published_at": "2025-08-28", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7726-1", "url": "https://ubuntu.com/security/notices/USN-7726-1" }, { "published_at": "2025-09-02", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7712-2", "url": "https://ubuntu.com/security/notices/USN-7712-2" }, { "published_at": "2025-09-02", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7725-3", "url": "https://ubuntu.com/security/notices/USN-7725-3" }, { "published_at": "2025-09-03", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7737-1", "url": "https://ubuntu.com/security/notices/USN-7737-1" } ] }
CERTFR-2025-AVI-0625
Vulnerability from certfr_avis
De multiples vulnérabilités ont été découvertes dans Ubuntu Ubuntu. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, un déni de service à distance et une atteinte à la confidentialité des données.
Solutions
Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation).
Title | Publication Time | Tags | |||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
{ "$ref": "https://www.cert.ssi.gouv.fr/openapi.json", "affected_systems": [ { "description": "Ubuntu 20.04 ESM", "product": { "name": "Ubuntu", "vendor": { "name": "Ubuntu", "scada": false } } }, { "description": "Ubuntu 24.04 LTS", "product": { "name": "Ubuntu", "vendor": { "name": "Ubuntu", "scada": false } } }, { "description": "Ubuntu 25.04", "product": { "name": "Ubuntu", "vendor": { "name": "Ubuntu", "scada": false } } }, { "description": "Ubuntu 22.04 LTS", "product": { "name": "Ubuntu", "vendor": { "name": "Ubuntu", "scada": false } } } ], "affected_systems_content": "", "content": "## Solutions\n\nSe r\u00e9f\u00e9rer au bulletin de s\u00e9curit\u00e9 de l\u0027\u00e9diteur pour l\u0027obtention des correctifs (cf. section Documentation).", "cves": [ { "name": "CVE-2024-26686", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26686" }, { "name": "CVE-2023-52572", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52572" }, { "name": "CVE-2024-26739", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26739" }, { "name": "CVE-2023-52757", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52757" }, { "name": "CVE-2024-35866", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35866" }, { "name": "CVE-2024-35867", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35867" }, { "name": "CVE-2024-35943", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35943" }, { "name": "CVE-2024-35790", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35790" }, { "name": "CVE-2024-36945", "url": "https://www.cve.org/CVERecord?id=CVE-2024-36945" }, { "name": "CVE-2024-38540", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38540" }, { "name": "CVE-2024-38541", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38541" }, { "name": "CVE-2024-36908", "url": "https://www.cve.org/CVERecord?id=CVE-2024-36908" }, { "name": "CVE-2024-27402", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27402" }, { "name": "CVE-2024-42230", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42230" }, { "name": "CVE-2022-48893", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48893" }, { "name": "CVE-2024-42322", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42322" }, { "name": "CVE-2024-46812", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46812" }, { "name": "CVE-2024-46821", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46821" }, { "name": "CVE-2024-46751", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46751" }, { "name": "CVE-2024-46753", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46753" }, { "name": "CVE-2024-46774", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46774" }, { "name": "CVE-2024-46787", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46787" }, { "name": "CVE-2024-46816", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46816" }, { "name": "CVE-2024-49960", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49960" }, { "name": "CVE-2024-50047", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50047" }, { "name": "CVE-2024-50272", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50272" }, { "name": "CVE-2024-50280", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50280" }, { "name": "CVE-2024-49989", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49989" }, { "name": "CVE-2024-50125", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50125" }, { "name": "CVE-2024-53051", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53051" }, { "name": "CVE-2024-53144", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53144" }, { "name": "CVE-2024-8805", "url": "https://www.cve.org/CVERecord?id=CVE-2024-8805" }, { "name": "CVE-2024-56551", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56551" }, { "name": "CVE-2024-53168", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53168" }, { "name": "CVE-2024-56664", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56664" }, { "name": "CVE-2024-50258", "url": "https://www.cve.org/CVERecord?id=CVE-2024-50258" }, { "name": "CVE-2024-53203", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53203" }, { "name": "CVE-2024-56608", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56608" }, { "name": "CVE-2024-53128", "url": "https://www.cve.org/CVERecord?id=CVE-2024-53128" }, { "name": "CVE-2024-49887", "url": "https://www.cve.org/CVERecord?id=CVE-2024-49887" }, { "name": "CVE-2024-56751", "url": "https://www.cve.org/CVERecord?id=CVE-2024-56751" }, { "name": "CVE-2024-57979", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57979" }, { "name": "CVE-2024-57994", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57994" }, { "name": "CVE-2025-21705", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21705" }, { "name": "CVE-2025-21715", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21715" }, { "name": "CVE-2025-21716", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21716" }, { "name": "CVE-2025-21719", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21719" }, { "name": "CVE-2025-21724", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21724" }, { "name": "CVE-2025-21725", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21725" }, { "name": "CVE-2025-21728", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21728" }, { "name": "CVE-2025-21733", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21733" }, { "name": "CVE-2025-21753", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21753" }, { "name": "CVE-2025-21754", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21754" }, { "name": "CVE-2025-21799", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21799" }, { "name": "CVE-2025-21802", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21802" }, { "name": "CVE-2022-49063", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49063" }, { "name": "CVE-2022-49535", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49535" }, { "name": "CVE-2024-57996", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57996" }, { "name": "CVE-2024-58014", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58014" }, { "name": "CVE-2025-21718", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21718" }, { "name": "CVE-2024-54458", "url": "https://www.cve.org/CVERecord?id=CVE-2024-54458" }, { "name": "CVE-2024-57973", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57973" }, { "name": "CVE-2024-57980", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57980" }, { "name": "CVE-2024-57981", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57981" }, { "name": "CVE-2024-57986", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57986" }, { "name": "CVE-2024-57993", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57993" }, { "name": "CVE-2024-57997", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57997" }, { "name": "CVE-2024-57998", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57998" }, { "name": "CVE-2024-58001", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58001" }, { "name": "CVE-2024-58007", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58007" }, { "name": "CVE-2024-58010", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58010" }, { "name": "CVE-2024-58011", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58011" }, { "name": "CVE-2024-58013", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58013" }, { "name": "CVE-2024-58016", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58016" }, { "name": "CVE-2024-58017", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58017" }, { "name": "CVE-2024-58034", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58034" }, { "name": "CVE-2024-58051", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58051" }, { "name": "CVE-2024-58052", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58052" }, { "name": "CVE-2024-58054", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58054" }, { "name": "CVE-2024-58055", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58055" }, { "name": "CVE-2024-58056", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58056" }, { "name": "CVE-2024-58058", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58058" }, { "name": "CVE-2024-58061", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58061" }, { "name": "CVE-2024-58063", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58063" }, { "name": "CVE-2024-58068", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58068" }, { "name": "CVE-2024-58069", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58069" }, { "name": "CVE-2024-58071", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58071" }, { "name": "CVE-2024-58072", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58072" }, { "name": "CVE-2024-58076", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58076" }, { "name": "CVE-2024-58077", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58077" }, { "name": "CVE-2024-58080", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58080" }, { "name": "CVE-2024-58083", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58083" }, { "name": "CVE-2024-58085", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58085" }, { "name": "CVE-2025-21707", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21707" }, { "name": "CVE-2025-21708", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21708" }, { "name": "CVE-2025-21711", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21711" }, { "name": "CVE-2025-21722", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21722" }, { "name": "CVE-2025-21726", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21726" }, { "name": "CVE-2025-21727", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21727" }, { "name": "CVE-2025-21731", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21731" }, { "name": "CVE-2025-21734", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21734" }, { "name": "CVE-2025-21735", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21735" }, { "name": "CVE-2025-21736", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21736" }, { "name": "CVE-2025-21738", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21738" }, { "name": "CVE-2025-21744", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21744" }, { "name": "CVE-2025-21745", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21745" }, { "name": "CVE-2025-21748", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21748" }, { "name": "CVE-2025-21749", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21749" }, { "name": "CVE-2025-21750", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21750" }, { "name": "CVE-2025-21804", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21804" }, { "name": "CVE-2025-21806", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21806" }, { "name": "CVE-2025-21811", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21811" }, { "name": "CVE-2025-21812", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21812" }, { "name": "CVE-2025-21814", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21814" }, { "name": "CVE-2025-21820", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21820" }, { "name": "CVE-2025-21826", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21826" }, { "name": "CVE-2025-21829", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21829" }, { "name": "CVE-2025-21830", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21830" }, { "name": "CVE-2025-21832", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21832" }, { "name": "CVE-2024-57974", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57974" }, { "name": "CVE-2024-57990", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57990" }, { "name": "CVE-2024-57999", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57999" }, { "name": "CVE-2024-58002", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58002" }, { "name": "CVE-2024-58005", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58005" }, { "name": "CVE-2024-58006", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58006" }, { "name": "CVE-2024-58019", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58019" }, { "name": "CVE-2024-58057", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58057" }, { "name": "CVE-2024-58078", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58078" }, { "name": "CVE-2024-58079", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58079" }, { "name": "CVE-2025-21714", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21714" }, { "name": "CVE-2025-21723", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21723" }, { "name": "CVE-2025-21732", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21732" }, { "name": "CVE-2025-21739", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21739" }, { "name": "CVE-2025-21741", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21741" }, { "name": "CVE-2025-21742", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21742" }, { "name": "CVE-2025-21743", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21743" }, { "name": "CVE-2025-21810", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21810" }, { "name": "CVE-2025-21815", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21815" }, { "name": "CVE-2025-21825", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21825" }, { "name": "CVE-2025-21828", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21828" }, { "name": "CVE-2025-21839", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21839" }, { "name": "CVE-2025-21721", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21721" }, { "name": "CVE-2025-21941", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21941" }, { "name": "CVE-2025-21956", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21956" }, { "name": "CVE-2025-21957", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21957" }, { "name": "CVE-2025-21959", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21959" }, { "name": "CVE-2025-21962", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21962" }, { "name": "CVE-2025-21963", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21963" }, { "name": "CVE-2025-21964", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21964" }, { "name": "CVE-2025-21968", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21968" }, { "name": "CVE-2025-21970", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21970" }, { "name": "CVE-2025-21975", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21975" }, { "name": "CVE-2025-21981", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21981" }, { "name": "CVE-2025-21991", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21991" }, { "name": "CVE-2025-21992", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21992" }, { "name": "CVE-2025-21994", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21994" }, { "name": "CVE-2025-21996", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21996" }, { "name": "CVE-2025-21999", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21999" }, { "name": "CVE-2025-22004", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22004" }, { "name": "CVE-2025-22005", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22005" }, { "name": "CVE-2025-22007", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22007" }, { "name": "CVE-2025-22008", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22008" }, { "name": "CVE-2025-22010", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22010" }, { "name": "CVE-2025-22014", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22014" }, { "name": "CVE-2025-2312", "url": "https://www.cve.org/CVERecord?id=CVE-2025-2312" }, { "name": "CVE-2023-53034", "url": "https://www.cve.org/CVERecord?id=CVE-2023-53034" }, { "name": "CVE-2024-46742", "url": "https://www.cve.org/CVERecord?id=CVE-2024-46742" }, { "name": "CVE-2025-21853", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21853" }, { "name": "CVE-2025-22025", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22025" }, { "name": "CVE-2025-22027", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22027" }, { "name": "CVE-2025-22035", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22035" }, { "name": "CVE-2025-22044", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22044" }, { "name": "CVE-2025-22045", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22045" }, { "name": "CVE-2025-22050", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22050" }, { "name": "CVE-2025-22054", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22054" }, { "name": "CVE-2025-22055", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22055" }, { "name": "CVE-2025-22056", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22056" }, { "name": "CVE-2025-22060", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22060" }, { "name": "CVE-2025-22063", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22063" }, { "name": "CVE-2025-22066", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22066" }, { "name": "CVE-2025-22071", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22071" }, { "name": "CVE-2025-22073", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22073" }, { "name": "CVE-2025-22075", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22075" }, { "name": "CVE-2025-22079", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22079" }, { "name": "CVE-2025-22081", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22081" }, { "name": "CVE-2025-22086", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22086" }, { "name": "CVE-2025-22089", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22089" }, { "name": "CVE-2025-22097", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22097" }, { "name": "CVE-2025-23136", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23136" }, { "name": "CVE-2025-23138", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23138" }, { "name": "CVE-2025-37785", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37785" }, { "name": "CVE-2025-37838", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37838" }, { "name": "CVE-2025-38152", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38152" }, { "name": "CVE-2025-38575", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38575" }, { "name": "CVE-2025-38637", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38637" }, { "name": "CVE-2025-39728", "url": "https://www.cve.org/CVERecord?id=CVE-2025-39728" }, { "name": "CVE-2025-39735", "url": "https://www.cve.org/CVERecord?id=CVE-2025-39735" }, { "name": "CVE-2024-58081", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58081" }, { "name": "CVE-2022-49728", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49728" }, { "name": "CVE-2024-58018", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58018" }, { "name": "CVE-2024-58070", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58070" }, { "name": "CVE-2024-58093", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58093" }, { "name": "CVE-2025-21808", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21808" }, { "name": "CVE-2025-22018", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22018" }, { "name": "CVE-2025-22020", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22020" }, { "name": "CVE-2025-22062", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22062" }, { "name": "CVE-2025-23145", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23145" }, { "name": "CVE-2025-37798", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37798" }, { "name": "CVE-2025-37749", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37749" }, { "name": "CVE-2025-22021", "url": "https://www.cve.org/CVERecord?id=CVE-2025-22021" }, { "name": "CVE-2025-23140", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23140" }, { "name": "CVE-2025-23142", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23142" }, { "name": "CVE-2025-23144", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23144" }, { "name": "CVE-2025-23146", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23146" }, { "name": "CVE-2025-23147", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23147" }, { "name": "CVE-2025-23148", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23148" }, { "name": "CVE-2025-23150", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23150" }, { "name": "CVE-2025-23151", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23151" }, { "name": "CVE-2025-23156", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23156" }, { "name": "CVE-2025-23157", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23157" }, { "name": "CVE-2025-23158", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23158" }, { "name": "CVE-2025-23159", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23159" }, { "name": "CVE-2025-23161", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23161" }, { "name": "CVE-2025-23163", "url": "https://www.cve.org/CVERecord?id=CVE-2025-23163" }, { "name": "CVE-2025-37738", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37738" }, { "name": "CVE-2025-37739", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37739" }, { "name": "CVE-2025-37740", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37740" }, { "name": "CVE-2025-37741", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37741" }, { "name": "CVE-2025-37742", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37742" }, { "name": "CVE-2025-37756", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37756" }, { "name": "CVE-2025-37757", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37757" }, { "name": "CVE-2025-37758", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37758" }, { "name": "CVE-2025-37765", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37765" }, { "name": "CVE-2025-37766", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37766" }, { "name": "CVE-2025-37767", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37767" }, { "name": "CVE-2025-37768", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37768" }, { "name": "CVE-2025-37770", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37770" }, { "name": "CVE-2025-37771", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37771" }, { "name": "CVE-2025-37773", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37773" }, { "name": "CVE-2025-37780", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37780" }, { "name": "CVE-2025-37781", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37781" }, { "name": "CVE-2025-37787", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37787" }, { "name": "CVE-2025-37788", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37788" }, { "name": "CVE-2025-37789", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37789" }, { "name": "CVE-2025-37790", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37790" }, { "name": "CVE-2025-37792", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37792" }, { "name": "CVE-2025-37794", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37794" }, { "name": "CVE-2025-37796", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37796" }, { "name": "CVE-2025-37797", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37797" }, { "name": "CVE-2025-37803", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37803" }, { "name": "CVE-2025-37805", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37805" }, { "name": "CVE-2025-37808", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37808" }, { "name": "CVE-2025-37810", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37810" }, { "name": "CVE-2025-37811", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37811" }, { "name": "CVE-2025-37812", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37812" }, { "name": "CVE-2025-37817", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37817" }, { "name": "CVE-2025-37823", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37823" }, { "name": "CVE-2025-37824", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37824" }, { "name": "CVE-2025-37829", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37829" }, { "name": "CVE-2025-37830", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37830" }, { "name": "CVE-2025-37836", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37836" }, { "name": "CVE-2025-37839", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37839" }, { "name": "CVE-2025-37840", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37840" }, { "name": "CVE-2025-37841", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37841" }, { "name": "CVE-2025-37844", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37844" }, { "name": "CVE-2025-37850", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37850" }, { "name": "CVE-2025-37851", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37851" }, { "name": "CVE-2025-37857", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37857" }, { "name": "CVE-2025-37858", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37858" }, { "name": "CVE-2025-37859", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37859" }, { "name": "CVE-2025-37862", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37862" }, { "name": "CVE-2025-37867", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37867" }, { "name": "CVE-2025-37871", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37871" }, { "name": "CVE-2025-37875", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37875" }, { "name": "CVE-2025-37881", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37881" }, { "name": "CVE-2025-37883", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37883" }, { "name": "CVE-2025-37885", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37885" }, { "name": "CVE-2025-37889", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37889" }, { "name": "CVE-2025-37892", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37892" }, { "name": "CVE-2025-37937", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37937" }, { "name": "CVE-2025-37940", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37940" }, { "name": "CVE-2025-37982", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37982" }, { "name": "CVE-2025-37983", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37983" }, { "name": "CVE-2025-37985", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37985" }, { "name": "CVE-2025-37989", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37989" }, { "name": "CVE-2025-37819", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37819" }, { "name": "CVE-2025-37890", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37890" }, { "name": "CVE-2025-37897", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37897" }, { "name": "CVE-2025-37901", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37901" }, { "name": "CVE-2025-37903", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37903" }, { "name": "CVE-2025-37905", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37905" }, { "name": "CVE-2025-37909", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37909" }, { "name": "CVE-2025-37911", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37911" }, { "name": "CVE-2025-37912", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37912" }, { "name": "CVE-2025-37913", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37913" }, { "name": "CVE-2025-37914", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37914" }, { "name": "CVE-2025-37915", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37915" }, { "name": "CVE-2025-37917", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37917" }, { "name": "CVE-2025-37921", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37921" }, { "name": "CVE-2025-37923", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37923" }, { "name": "CVE-2025-37924", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37924" }, { "name": "CVE-2025-37927", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37927" }, { "name": "CVE-2025-37928", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37928" }, { "name": "CVE-2025-37929", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37929" }, { "name": "CVE-2025-37930", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37930" }, { "name": "CVE-2025-37932", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37932" }, { "name": "CVE-2025-37936", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37936" }, { "name": "CVE-2025-37949", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37949" }, { "name": "CVE-2025-37964", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37964" }, { "name": "CVE-2025-37967", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37967" }, { "name": "CVE-2025-37969", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37969" }, { "name": "CVE-2025-37970", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37970" }, { "name": "CVE-2025-37990", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37990" }, { "name": "CVE-2025-37991", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37991" }, { "name": "CVE-2025-37750", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37750" }, { "name": "CVE-2025-37974", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37974" }, { "name": "CVE-2022-49168", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49168" }, { "name": "CVE-2025-37891", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37891" }, { "name": "CVE-2025-37900", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37900" }, { "name": "CVE-2025-37918", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37918" }, { "name": "CVE-2025-37931", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37931" }, { "name": "CVE-2025-37933", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37933" }, { "name": "CVE-2025-37998", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37998" }, { "name": "CVE-2022-49636", "url": "https://www.cve.org/CVERecord?id=CVE-2022-49636" }, { "name": "CVE-2025-37997", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37997" }, { "name": "CVE-2025-38000", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38000" }, { "name": "CVE-2025-38001", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38001" }, { "name": "CVE-2024-57982", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57982" }, { "name": "CVE-2024-58053", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58053" }, { "name": "CVE-2025-21720", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21720" }, { "name": "CVE-2025-37934", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37934" }, { "name": "CVE-2025-37946", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37946" }, { "name": "CVE-2025-37992", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37992" }, { "name": "CVE-2025-37994", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37994" }, { "name": "CVE-2025-37995", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37995" }, { "name": "CVE-2025-38005", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38005" }, { "name": "CVE-2025-38009", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38009" }, { "name": "CVE-2025-38023", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38023" }, { "name": "CVE-2025-38024", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38024" }, { "name": "CVE-2022-21546", "url": "https://www.cve.org/CVERecord?id=CVE-2022-21546" }, { "name": "CVE-2025-38177", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38177" }, { "name": "CVE-2024-57953", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57953" }, { "name": "CVE-2024-57975", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57975" }, { "name": "CVE-2024-57984", "url": "https://www.cve.org/CVERecord?id=CVE-2024-57984" }, { "name": "CVE-2024-58003", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58003" }, { "name": "CVE-2024-58082", "url": "https://www.cve.org/CVERecord?id=CVE-2024-58082" }, { "name": "CVE-2025-21710", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21710" }, { "name": "CVE-2025-21798", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21798" }, { "name": "CVE-2025-21801", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21801" }, { "name": "CVE-2025-21809", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21809" }, { "name": "CVE-2025-21816", "url": "https://www.cve.org/CVERecord?id=CVE-2025-21816" }, { "name": "CVE-2025-37894", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37894" }, { "name": "CVE-2025-37895", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37895" }, { "name": "CVE-2025-37896", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37896" }, { "name": "CVE-2025-37898", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37898" }, { "name": "CVE-2025-37899", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37899" }, { "name": "CVE-2025-37904", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37904" }, { "name": "CVE-2025-37906", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37906" }, { "name": "CVE-2025-37907", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37907" }, { "name": "CVE-2025-37908", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37908" }, { "name": "CVE-2025-37910", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37910" }, { "name": "CVE-2025-37916", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37916" }, { "name": "CVE-2025-37919", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37919" }, { "name": "CVE-2025-37920", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37920" }, { "name": "CVE-2025-37922", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37922" }, { "name": "CVE-2025-37926", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37926" }, { "name": "CVE-2025-37935", "url": "https://www.cve.org/CVERecord?id=CVE-2025-37935" }, { "name": "CVE-2025-38094", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38094" }, { "name": "CVE-2025-38216", "url": "https://www.cve.org/CVERecord?id=CVE-2025-38216" } ], "initial_release_date": "2025-07-25T00:00:00", "last_revision_date": "2025-07-25T00:00:00", "links": [], "reference": "CERTFR-2025-AVI-0625", "revisions": [ { "description": "Version initiale", "revision_date": "2025-07-25T00:00:00.000000" } ], "risks": [ { "description": "D\u00e9ni de service \u00e0 distance" }, { "description": "Ex\u00e9cution de code arbitraire \u00e0 distance" }, { "description": "Non sp\u00e9cifi\u00e9 par l\u0027\u00e9diteur" }, { "description": "Contournement de la politique de s\u00e9curit\u00e9" }, { "description": "Atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es" } ], "summary": "De multiples vuln\u00e9rabilit\u00e9s ont \u00e9t\u00e9 d\u00e9couvertes dans Ubuntu Ubuntu. Certaines d\u0027entre elles permettent \u00e0 un attaquant de provoquer une ex\u00e9cution de code arbitraire \u00e0 distance, un d\u00e9ni de service \u00e0 distance et une atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es.", "title": "Multiples vuln\u00e9rabilit\u00e9s dans le noyau Linux d\u0027Ubuntu", "vendor_advisories": [ { "published_at": "2025-07-24", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7651-5", "url": "https://ubuntu.com/security/notices/USN-7651-5" }, { "published_at": "2025-07-24", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7651-6", "url": "https://ubuntu.com/security/notices/USN-7651-6" }, { "published_at": "2025-07-18", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7654-3", "url": "https://ubuntu.com/security/notices/USN-7654-3" }, { "published_at": "2025-07-21", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7611-4", "url": "https://ubuntu.com/security/notices/USN-7611-4" }, { "published_at": "2025-07-24", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7665-2", "url": "https://ubuntu.com/security/notices/USN-7665-2" }, { "published_at": "2025-07-22", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7651-3", "url": "https://ubuntu.com/security/notices/USN-7651-3" }, { "published_at": "2025-07-22", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7649-2", "url": "https://ubuntu.com/security/notices/USN-7649-2" }, { "published_at": "2025-07-22", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7665-1", "url": "https://ubuntu.com/security/notices/USN-7665-1" }, { "published_at": "2025-07-18", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7654-2", "url": "https://ubuntu.com/security/notices/USN-7654-2" }, { "published_at": "2025-07-18", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7655-1", "url": "https://ubuntu.com/security/notices/USN-7655-1" }, { "published_at": "2025-07-22", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7654-4", "url": "https://ubuntu.com/security/notices/USN-7654-4" }, { "published_at": "2025-07-18", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7651-2", "url": "https://ubuntu.com/security/notices/USN-7651-2" }, { "published_at": "2025-07-22", "title": "Bulletin de s\u00e9curit\u00e9 Ubuntu USN-7651-4", "url": "https://ubuntu.com/security/notices/USN-7651-4" } ] }
wid-sec-w-2025-0499
Vulnerability from csaf_certbund
Notes
{ "document": { "aggregate_severity": { "text": "hoch" }, "category": "csaf_base", "csaf_version": "2.0", "distribution": { "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "de-DE", "notes": [ { "category": "legal_disclaimer", "text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen." }, { "category": "description", "text": "Der Kernel stellt den Kern des Linux Betriebssystems dar.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein Angreifer kann mehrere Schwachstellen im Linux Kernel ausnutzen, um nicht spezifizierte Auswirkungen zu erzeugen oder einen Denial-of-Service-Zustand zu verursachen.", "title": "Angriff" }, { "category": "general", "text": "- Linux", "title": "Betroffene Betriebssysteme" } ], "publisher": { "category": "other", "contact_details": "csaf-provider@cert-bund.de", "name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik", "namespace": "https://www.bsi.bund.de" }, "references": [ { "category": "self", "summary": "WID-SEC-W-2025-0499 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2025/wid-sec-w-2025-0499.json" }, { "category": "self", "summary": "WID-SEC-2025-0499 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2025-0499" }, { "category": "external", "summary": "Kernel CVE Announce Mailingliste", "url": "https://lore.kernel.org/linux-cve-announce/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2022-49623", "url": "https://lore.kernel.org/linux-cve-announce/2025030618-opal-chomp-5731@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58051", "url": "https://lore.kernel.org/linux-cve-announce/2025030603-CVE-2024-58051-8e8a@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58052", "url": "https://lore.kernel.org/linux-cve-announce/2025030605-CVE-2024-58052-c947@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58053", "url": "https://lore.kernel.org/linux-cve-announce/2025030605-CVE-2024-58053-3c8d@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58054", "url": "https://lore.kernel.org/linux-cve-announce/2025030606-CVE-2024-58054-cdfe@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58055", "url": "https://lore.kernel.org/linux-cve-announce/2025030606-CVE-2024-58055-39b6@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58056", "url": "https://lore.kernel.org/linux-cve-announce/2025030606-CVE-2024-58056-6955@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58057", "url": "https://lore.kernel.org/linux-cve-announce/2025030607-CVE-2024-58057-5c91@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58058", "url": "https://lore.kernel.org/linux-cve-announce/2025030607-CVE-2024-58058-31d9@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58059", "url": "https://lore.kernel.org/linux-cve-announce/2025030608-CVE-2024-58059-4753@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58060", "url": "https://lore.kernel.org/linux-cve-announce/2025030608-CVE-2024-58060-e849@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58061", "url": "https://lore.kernel.org/linux-cve-announce/2025030608-CVE-2024-58061-80cf@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58062", "url": "https://lore.kernel.org/linux-cve-announce/2025030609-CVE-2024-58062-00c9@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58063", "url": "https://lore.kernel.org/linux-cve-announce/2025030609-CVE-2024-58063-5fd7@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58064", "url": "https://lore.kernel.org/linux-cve-announce/2025030609-CVE-2024-58064-6aa6@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58065", "url": "https://lore.kernel.org/linux-cve-announce/2025030610-CVE-2024-58065-a049@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58066", "url": "https://lore.kernel.org/linux-cve-announce/2025030610-CVE-2024-58066-d537@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58067", "url": "https://lore.kernel.org/linux-cve-announce/2025030610-CVE-2024-58067-0807@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58068", "url": "https://lore.kernel.org/linux-cve-announce/2025030611-CVE-2024-58068-24c2@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58069", "url": "https://lore.kernel.org/linux-cve-announce/2025030611-CVE-2024-58069-d1d4@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58070", "url": "https://lore.kernel.org/linux-cve-announce/2025030611-CVE-2024-58070-3c5f@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58071", "url": "https://lore.kernel.org/linux-cve-announce/2025030612-CVE-2024-58071-496f@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58072", "url": "https://lore.kernel.org/linux-cve-announce/2025030612-CVE-2024-58072-2dc3@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58073", "url": "https://lore.kernel.org/linux-cve-announce/2025030612-CVE-2024-58073-10bf@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58074", "url": "https://lore.kernel.org/linux-cve-announce/2025030627-CVE-2024-58074-28c1@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58075", "url": "https://lore.kernel.org/linux-cve-announce/2025030629-CVE-2024-58075-2f60@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58076", "url": "https://lore.kernel.org/linux-cve-announce/2025030608-CVE-2024-58076-3dcc@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58077", "url": "https://lore.kernel.org/linux-cve-announce/2025030608-CVE-2024-58077-d4e3@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58078", "url": "https://lore.kernel.org/linux-cve-announce/2025030609-CVE-2024-58078-3d63@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58079", "url": "https://lore.kernel.org/linux-cve-announce/2025030609-CVE-2024-58079-f973@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58080", "url": "https://lore.kernel.org/linux-cve-announce/2025030609-CVE-2024-58080-9425@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58081", "url": "https://lore.kernel.org/linux-cve-announce/2025030610-CVE-2024-58081-5d47@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58082", "url": "https://lore.kernel.org/linux-cve-announce/2025030610-CVE-2024-58082-3925@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58083", "url": "https://lore.kernel.org/linux-cve-announce/2025030610-CVE-2024-58083-62b7@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58084", "url": "https://lore.kernel.org/linux-cve-announce/2025030634-CVE-2024-58084-16e9@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58085", "url": "https://lore.kernel.org/linux-cve-announce/2025030634-CVE-2024-58085-1af4@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2024-58086", "url": "https://lore.kernel.org/linux-cve-announce/2025030624-CVE-2024-58086-080c@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21825", "url": "https://lore.kernel.org/linux-cve-announce/2025030629-CVE-2025-21825-b3bd@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21826", "url": "https://lore.kernel.org/linux-cve-announce/2025030630-CVE-2025-21826-c263@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21827", "url": "https://lore.kernel.org/linux-cve-announce/2025030630-CVE-2025-21827-6735@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21828", "url": "https://lore.kernel.org/linux-cve-announce/2025030630-CVE-2025-21828-cb05@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21829", "url": "https://lore.kernel.org/linux-cve-announce/2025030611-CVE-2025-21829-50f9@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21830", "url": "https://lore.kernel.org/linux-cve-announce/2025030611-CVE-2025-21830-da64@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21831", "url": "https://lore.kernel.org/linux-cve-announce/2025030634-CVE-2025-21831-3ada@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21832", "url": "https://lore.kernel.org/linux-cve-announce/2025030635-CVE-2025-21832-943e@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21833", "url": "https://lore.kernel.org/linux-cve-announce/2025030635-CVE-2025-21833-dd2d@gregkh/" }, { "category": "external", "summary": "Linux Kernel CVE Announcement CVE-2025-21834", "url": "https://lore.kernel.org/linux-cve-announce/2025030635-CVE-2025-21834-d92c@gregkh/" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1027-1 vom 2025-03-26", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020612.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7380-1 vom 2025-03-27", "url": "https://ubuntu.com/security/notices/USN-7380-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7379-1 vom 2025-03-27", "url": "https://ubuntu.com/security/notices/USN-7379-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7381-1 vom 2025-03-27", "url": "https://ubuntu.com/security/notices/USN-7381-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7382-1 vom 2025-03-27", "url": "https://ubuntu.com/security/notices/USN-7382-1" }, { "category": "external", "summary": "Debian Security Advisory DLA-4102 vom 2025-04-01", "url": "https://lists.debian.org/debian-lts-announce/2025/03/msg00028.html" }, { "category": "external", "summary": "Amazon Linux Security Advisory ALASKERNEL-5.4-2025-097 vom 2025-04-01", "url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.4-2025-097.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7379-2 vom 2025-04-01", "url": "https://ubuntu.com/security/notices/USN-7379-2" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1178-1 vom 2025-04-08", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020674.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1177-1 vom 2025-04-08", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020670.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1176-1 vom 2025-04-08", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020671.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1180-1 vom 2025-04-09", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/DGJ23MSZWYIA7MJ47RNVV6T27Z324VKA/" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1183-1 vom 2025-04-09", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020678.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1194-1 vom 2025-04-10", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020681.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1195-1 vom 2025-04-10", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020680.html" }, { "category": "external", "summary": "Debian Security Advisory DSA-5900 vom 2025-04-12", "url": "https://lists.debian.org/debian-security-announce/2025/msg00062.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1241-1 vom 2025-04-14", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020694.html" }, { "category": "external", "summary": "Container-Optimized OS release notes vom 2025-04-16", "url": "https://cloud.google.com/container-optimized-os/docs/release-notes#April_14_2025" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:1293-1 vom 2025-04-16", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-April/020712.html" }, { "category": "external", "summary": "Amazon Linux Security Advisory ALASKERNEL-5.10-2025-088 vom 2025-04-16", "url": "https://alas.aws.amazon.com/AL2/ALASKERNEL-5.10-2025-088.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7453-1 vom 2025-04-23", "url": "https://ubuntu.com/security/notices/USN-7453-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7451-1 vom 2025-04-23", "url": "https://ubuntu.com/security/notices/USN-7451-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7450-1 vom 2025-04-23", "url": "https://ubuntu.com/security/notices/USN-7450-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7449-1 vom 2025-04-23", "url": "https://ubuntu.com/security/notices/USN-7449-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7452-1 vom 2025-04-23", "url": "https://ubuntu.com/security/notices/USN-7452-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-7468-1 vom 2025-04-28", "url": "https://ubuntu.com/security/notices/USN-7468-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7493-1 vom 2025-05-06", "url": "https://ubuntu.com/security/notices/USN-7493-1" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2025:7423 vom 2025-05-13", "url": "https://access.redhat.com/errata/RHSA-2025:7423" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7510-1 vom 2025-05-16", "url": "https://ubuntu.com/security/notices/USN-7510-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7516-1 vom 2025-05-16", "url": "https://ubuntu.com/security/notices/USN-7516-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7512-1 vom 2025-05-16", "url": "https://ubuntu.com/security/notices/USN-7512-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7511-1 vom 2025-05-16", "url": "https://ubuntu.com/security/notices/USN-7511-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7516-2 vom 2025-05-16", "url": "https://ubuntu.com/security/notices/USN-7511-2" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7510-2 vom 2025-05-16", "url": "https://ubuntu.com/security/notices/USN-7510-2" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7517-1 vom 2025-05-16", "url": "https://ubuntu.com/security/notices/USN-7517-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7518-1 vom 2025-05-20", "url": "https://ubuntu.com/security/notices/USN-7518-1" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:01600-1 vom 2025-05-20", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020854.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7510-3 vom 2025-05-20", "url": "https://ubuntu.com/security/notices/USN-7510-3" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7510-4 vom 2025-05-20", "url": "https://ubuntu.com/security/notices/USN-7510-4" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7523-1 vom 2025-05-20", "url": "https://ubuntu.com/security/notices/USN-7523-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7521-1 vom 2025-05-20", "url": "https://ubuntu.com/security/notices/USN-7521-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7511-3 vom 2025-05-20", "url": "https://ubuntu.com/security/notices/USN-7511-3" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7510-5 vom 2025-05-20", "url": "https://ubuntu.com/security/notices/USN-7510-5" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7516-3 vom 2025-05-20", "url": "https://ubuntu.com/security/notices/USN-7516-3" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:01640-1 vom 2025-05-21", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020861.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7517-2 vom 2025-05-21", "url": "https://ubuntu.com/security/notices/USN-7517-2" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:01614-1 vom 2025-05-21", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020870.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:01620-1 vom 2025-05-21", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020867.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7516-4 vom 2025-05-21", "url": "https://ubuntu.com/security/notices/USN-7516-4" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2025-7423 vom 2025-05-23", "url": "https://linux.oracle.com/errata/ELSA-2025-7423.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7521-2 vom 2025-05-22", "url": "https://ubuntu.com/security/notices/USN-7521-2" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2025-7903 vom 2025-05-23", "url": "https://linux.oracle.com/errata/ELSA-2025-7903.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7516-5 vom 2025-05-23", "url": "https://ubuntu.com/security/notices/USN-7516-5" }, { "category": "external", "summary": "Debian Security Advisory DSA-5925 vom 2025-05-24", "url": "https://lists.debian.org/debian-security-announce/2025/msg00088.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7517-3 vom 2025-05-26", "url": "https://ubuntu.com/security/notices/USN-7517-3" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:01707-1 vom 2025-05-26", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020902.html" }, { "category": "external", "summary": "Debian Security Advisory DLA-4178 vom 2025-05-26", "url": "https://lists.debian.org/debian-lts-announce/2025/05/msg00030.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7516-6 vom 2025-05-26", "url": "https://ubuntu.com/security/notices/USN-7516-6" }, { "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-7510-6 vom 2025-05-27", "url": "https://ubuntu.com/security/notices/USN-7510-6" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7510-7 vom 2025-05-28", "url": "https://ubuntu.com/security/notices/USN-7510-7" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7540-1 vom 2025-05-28", "url": "https://ubuntu.com/security/notices/USN-7540-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7521-3 vom 2025-05-28", "url": "https://ubuntu.com/security/notices/USN-7521-3" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7539-1 vom 2025-05-28", "url": "https://ubuntu.com/security/notices/USN-7539-1" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20343-1 vom 2025-05-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020965.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7516-9 vom 2025-05-29", "url": "https://ubuntu.com/security/notices/USN-7516-9" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7516-8 vom 2025-05-29", "url": "https://ubuntu.com/security/notices/USN-7516-8" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7516-7 vom 2025-05-29", "url": "https://ubuntu.com/security/notices/USN-7516-7" }, { "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 ALAS-2025-2865 vom 2025-05-29", "url": "https://alas.aws.amazon.com/AL2/ALAS-2025-2865.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7510-8 vom 2025-05-29", "url": "https://ubuntu.com/security/notices/USN-7510-8" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20344-1 vom 2025-05-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-May/020964.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20354-1 vom 2025-06-02", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021016.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20355-1 vom 2025-06-02", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021015.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20283-1 vom 2025-06-04", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021049.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: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: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:20206-1 vom 2025-06-04", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021137.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": "Amazon Linux Security Advisory ALAS-2025-1983 vom 2025-06-10", "url": "https://alas.aws.amazon.com/ALAS-2025-1983.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: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": "Ubuntu Security Notice USN-7593-1 vom 2025-06-24", "url": "https://ubuntu.com/security/notices/USN-7593-1" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2025-9580 vom 2025-06-26", "url": "https://linux.oracle.com/errata/ELSA-2025-9580.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7602-1 vom 2025-06-26", "url": "https://ubuntu.com/security/notices/USN-7602-1" }, { "category": "external", "summary": "SEM 2025.2.1 release notes vom 2025-07-02", "url": "https://documentation.solarwinds.com/en/success_center/sem/content/release_notes/sem_2025-2-1_release_notes.htm" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02254-1 vom 2025-07-08", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021770.html" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2025-20406 vom 2025-07-08", "url": "https://linux.oracle.com/errata/ELSA-2025-20406.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02249-1 vom 2025-07-08", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021766.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02307-1 vom 2025-07-14", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021804.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": "SUSE Security Update SUSE-SU-2025:02335-1 vom 2025-07-16", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021828.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02333-1 vom 2025-07-16", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021830.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7640-1 vom 2025-07-16", "url": "https://ubuntu.com/security/notices/USN-7640-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7652-1 vom 2025-07-17", "url": "https://ubuntu.com/security/notices/USN-7652-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7653-1 vom 2025-07-17", "url": "https://ubuntu.com/security/notices/USN-7653-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7651-1 vom 2025-07-17", "url": "https://ubuntu.com/security/notices/USN-7651-1" }, { "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-7651-2 vom 2025-07-18", "url": "https://ubuntu.com/security/notices/USN-7651-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:20475-1 vom 2025-07-21", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021919.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20483-1 vom 2025-07-21", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021917.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-7651-3 vom 2025-07-22", "url": "https://ubuntu.com/security/notices/USN-7651-3" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7651-4 vom 2025-07-22", "url": "https://ubuntu.com/security/notices/USN-7651-4" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7651-5 vom 2025-07-24", "url": "https://ubuntu.com/security/notices/USN-7651-5" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7651-6 vom 2025-07-24", "url": "https://ubuntu.com/security/notices/USN-7651-6" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20493-1 vom 2025-07-25", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021967.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20498-1 vom 2025-07-25", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021965.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02538-1 vom 2025-07-28", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021981.html" }, { "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": "Ubuntu Security Notice USN-7686-1 vom 2025-08-05", "url": "https://ubuntu.com/security/notices/USN-7686-1" }, { "category": "external", "summary": "Debian Security Advisory DLA-4271 vom 2025-08-13", "url": "https://lists.debian.org/debian-lts-announce/2025/08/msg00010.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02853-1 vom 2025-08-18", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022200.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7703-1 vom 2025-08-20", "url": "https://ubuntu.com/security/notices/USN-7703-1" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02923-1 vom 2025-08-20", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022237.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7703-2 vom 2025-08-20", "url": "https://ubuntu.com/security/notices/USN-7703-2" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7703-3 vom 2025-08-21", "url": "https://ubuntu.com/security/notices/USN-7703-3" }, { "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-7711-1 vom 2025-08-22", "url": "https://ubuntu.com/security/notices/USN-7711-1" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02969-1 vom 2025-08-25", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022259.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7719-1 vom 2025-08-26", "url": "https://ubuntu.com/security/notices/USN-7719-1" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02997-1 vom 2025-08-27", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022283.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:02996-1 vom 2025-08-27", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022291.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20577-1 vom 2025-08-28", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022304.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20586-1 vom 2025-08-28", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022295.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:03011-1 vom 2025-08-28", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022327.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7703-4 vom 2025-08-28", "url": "https://ubuntu.com/security/notices/USN-7703-4" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:03023-1 vom 2025-08-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022329.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20602-1 vom 2025-08-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022362.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2025:20601-1 vom 2025-08-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2025-August/022363.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-7712-2 vom 2025-09-02", "url": "https://ubuntu.com/security/notices/USN-7712-2" } ], "source_lang": "en-US", "title": "Linux Kernel: Mehrere Schwachstellen", "tracking": { "current_release_date": "2025-09-02T22:00:00.000+00:00", "generator": { "date": "2025-09-03T07:16:08.646+00:00", "engine": { "name": "BSI-WID", "version": "1.4.0" } }, "id": "WID-SEC-W-2025-0499", "initial_release_date": "2025-03-06T23:00:00.000+00:00", "revision_history": [ { "date": "2025-03-06T23:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" }, { "date": "2025-03-26T23:00:00.000+00:00", "number": "2", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-03-27T23:00:00.000+00:00", "number": "3", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-03-31T22:00:00.000+00:00", "number": "4", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2025-04-01T22:00:00.000+00:00", "number": "5", "summary": "Neue Updates von Amazon und Ubuntu aufgenommen" }, { "date": "2025-04-08T22:00:00.000+00:00", "number": "6", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-04-09T22:00:00.000+00:00", "number": "7", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-04-10T22:00:00.000+00:00", "number": "8", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-04-13T22:00:00.000+00:00", "number": "9", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2025-04-14T22:00:00.000+00:00", "number": "10", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-04-15T22:00:00.000+00:00", "number": "11", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-04-16T22:00:00.000+00:00", "number": "12", "summary": "Neue Updates von Amazon aufgenommen" }, { "date": "2025-04-23T22:00:00.000+00:00", "number": "13", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-04-24T22:00:00.000+00:00", "number": "14", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-04-28T22:00:00.000+00:00", "number": "15", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-05-06T22:00:00.000+00:00", "number": "16", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-05-13T22:00:00.000+00:00", "number": "17", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2025-05-18T22:00:00.000+00:00", "number": "18", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-05-19T22:00:00.000+00:00", "number": "19", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-05-20T22:00:00.000+00:00", "number": "20", "summary": "Neue Updates von SUSE und Ubuntu aufgenommen" }, { "date": "2025-05-21T22:00:00.000+00:00", "number": "21", "summary": "Neue Updates von SUSE und Ubuntu aufgenommen" }, { "date": "2025-05-22T22:00:00.000+00:00", "number": "22", "summary": "Neue Updates von Oracle Linux und Ubuntu aufgenommen" }, { "date": "2025-05-25T22:00:00.000+00:00", "number": "23", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2025-05-26T22:00:00.000+00:00", "number": "24", "summary": "Neue Updates von Ubuntu, SUSE und Debian aufgenommen" }, { "date": "2025-05-27T22:00:00.000+00:00", "number": "25", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-05-29T22:00:00.000+00:00", "number": "26", "summary": "Neue Updates von SUSE, Ubuntu, Debian und Amazon aufgenommen" }, { "date": "2025-06-02T22:00:00.000+00:00", "number": "27", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-06-03T22:00:00.000+00:00", "number": "28", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-06-09T22:00:00.000+00:00", "number": "29", "summary": "Neue Updates von Amazon aufgenommen" }, { "date": "2025-06-11T22:00:00.000+00:00", "number": "30", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-06-15T22:00:00.000+00:00", "number": "31", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-06-16T22:00:00.000+00:00", "number": "32", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-06-17T22:00:00.000+00:00", "number": "33", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-06-23T22:00:00.000+00:00", "number": "34", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-06-25T22:00:00.000+00:00", "number": "35", "summary": "Neue Updates von Oracle Linux aufgenommen" }, { "date": "2025-06-26T22:00:00.000+00:00", "number": "36", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-07-01T22:00:00.000+00:00", "number": "37", "summary": "Neue Updates aufgenommen" }, { "date": "2025-07-08T22:00:00.000+00:00", "number": "38", "summary": "Neue Updates von SUSE und Oracle Linux aufgenommen" }, { "date": "2025-07-14T22:00:00.000+00:00", "number": "39", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-07-15T22:00:00.000+00:00", "number": "40", "summary": "Neue Updates von Oracle Linux aufgenommen" }, { "date": "2025-07-16T22:00:00.000+00:00", "number": "41", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-07-17T22:00:00.000+00:00", "number": "42", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-07-21T22:00:00.000+00:00", "number": "43", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-07-22T22:00:00.000+00:00", "number": "44", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-07-23T22:00:00.000+00:00", "number": "45", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-07-24T22:00:00.000+00:00", "number": "46", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-07-27T22:00:00.000+00:00", "number": "47", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-07-28T22:00:00.000+00:00", "number": "48", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-07-29T22:00:00.000+00:00", "number": "49", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-07-31T22:00:00.000+00:00", "number": "50", "summary": "Referenz(en) aufgenommen:" }, { "date": "2025-08-05T22:00:00.000+00:00", "number": "51", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-08-12T22:00:00.000+00:00", "number": "52", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2025-08-18T22:00:00.000+00:00", "number": "53", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-08-19T22:00:00.000+00:00", "number": "54", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-08-20T22:00:00.000+00:00", "number": "55", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-08-21T22:00:00.000+00:00", "number": "56", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-08-24T22:00:00.000+00:00", "number": "57", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-08-26T22:00:00.000+00:00", "number": "58", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2025-08-27T22:00:00.000+00:00", "number": "59", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-08-28T22:00:00.000+00:00", "number": "60", "summary": "Neue Updates von SUSE und Ubuntu aufgenommen" }, { "date": "2025-08-31T22:00:00.000+00:00", "number": "61", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2025-09-02T22:00:00.000+00:00", "number": "62", "summary": "Neue Updates von Ubuntu aufgenommen" } ], "status": "final", "version": "62" } }, "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": "Google Container-Optimized OS", "product": { "name": "Google Container-Optimized OS", "product_id": "1607324", "product_identification_helper": { "cpe": "cpe:/o:google:container-optimized_os:-" } } } ], "category": "vendor", "name": "Google" }, { "branches": [ { "category": "product_name", "name": "Open Source Linux Kernel", "product": { "name": "Open Source Linux Kernel", "product_id": "T008144", "product_identification_helper": { "cpe": "cpe:/a: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": "Red Hat Enterprise Linux", "product": { "name": "Red Hat Enterprise Linux", "product_id": "67646", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:-" } } } ], "category": "vendor", "name": "Red Hat" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux", "product": { "name": "SUSE Linux", "product_id": "T002207", "product_identification_helper": { "cpe": "cpe:/o:suse:suse_linux:-" } } } ], "category": "vendor", "name": "SUSE" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003c2025.2.1", "product": { "name": "SolarWinds Security Event Manager \u003c2025.2.1", "product_id": "T044986" } }, { "category": "product_version", "name": "2025.2.1", "product": { "name": "SolarWinds Security Event Manager 2025.2.1", "product_id": "T044986-fixed", "product_identification_helper": { "cpe": "cpe:/a:solarwinds:security_event_manager:2025.2.1" } } } ], "category": "product_name", "name": "Security Event Manager" } ], "category": "vendor", "name": "SolarWinds" }, { "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-2022-49623", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2022-49623" }, { "cve": "CVE-2024-58051", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58051" }, { "cve": "CVE-2024-58052", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58052" }, { "cve": "CVE-2024-58053", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58053" }, { "cve": "CVE-2024-58054", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58054" }, { "cve": "CVE-2024-58055", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58055" }, { "cve": "CVE-2024-58056", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58056" }, { "cve": "CVE-2024-58057", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58057" }, { "cve": "CVE-2024-58058", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58058" }, { "cve": "CVE-2024-58059", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58059" }, { "cve": "CVE-2024-58060", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58060" }, { "cve": "CVE-2024-58061", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58061" }, { "cve": "CVE-2024-58062", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58062" }, { "cve": "CVE-2024-58063", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58063" }, { "cve": "CVE-2024-58064", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58064" }, { "cve": "CVE-2024-58065", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58065" }, { "cve": "CVE-2024-58066", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58066" }, { "cve": "CVE-2024-58067", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58067" }, { "cve": "CVE-2024-58068", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58068" }, { "cve": "CVE-2024-58069", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58069" }, { "cve": "CVE-2024-58070", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58070" }, { "cve": "CVE-2024-58071", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58071" }, { "cve": "CVE-2024-58072", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58072" }, { "cve": "CVE-2024-58073", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58073" }, { "cve": "CVE-2024-58074", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58074" }, { "cve": "CVE-2024-58075", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58075" }, { "cve": "CVE-2024-58076", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58076" }, { "cve": "CVE-2024-58077", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58077" }, { "cve": "CVE-2024-58078", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58078" }, { "cve": "CVE-2024-58079", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58079" }, { "cve": "CVE-2024-58080", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58080" }, { "cve": "CVE-2024-58081", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58081" }, { "cve": "CVE-2024-58082", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58082" }, { "cve": "CVE-2024-58083", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58083" }, { "cve": "CVE-2024-58084", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58084" }, { "cve": "CVE-2024-58085", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58085" }, { "cve": "CVE-2024-58086", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2024-58086" }, { "cve": "CVE-2025-21825", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21825" }, { "cve": "CVE-2025-21826", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21826" }, { "cve": "CVE-2025-21827", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21827" }, { "cve": "CVE-2025-21828", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21828" }, { "cve": "CVE-2025-21829", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21829" }, { "cve": "CVE-2025-21830", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21830" }, { "cve": "CVE-2025-21831", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21831" }, { "cve": "CVE-2025-21832", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21832" }, { "cve": "CVE-2025-21833", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21833" }, { "cve": "CVE-2025-21834", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21834" }, { "cve": "CVE-2025-21835", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21835" }, { "cve": "CVE-2025-21836", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21836" }, { "cve": "CVE-2025-21837", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21837" }, { "cve": "CVE-2025-21838", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21838" }, { "cve": "CVE-2025-21839", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21839" }, { "cve": "CVE-2025-21840", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21840" }, { "cve": "CVE-2025-21841", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21841" }, { "cve": "CVE-2025-21842", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21842" }, { "cve": "CVE-2025-21843", "product_status": { "known_affected": [ "T044986", "2951", "T002207", "67646", "T000126", "398363", "T004914", "1607324", "T008144" ] }, "release_date": "2025-03-06T23:00:00.000+00:00", "title": "CVE-2025-21843" } ] }
fkie_cve-2024-58057
Vulnerability from fkie_nvd
URL | Tags | ||
---|---|---|---|
416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/66bf9b3d9e1658333741f075320dc8e7cd6f8d09 | ||
416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/868202ec3854e13de1164e4a3e25521194c5af72 | ||
416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/9a5b021cb8186f1854bac2812bd4f396bb1e881c |
Vendor | Product | Version |
---|
{ "cveTags": [], "descriptions": [ { "lang": "en", "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nidpf: convert workqueues to unbound\n\nWhen a workqueue is created with `WQ_UNBOUND`, its work items are\nserved by special worker-pools, whose host workers are not bound to\nany specific CPU. In the default configuration (i.e. when\n`queue_delayed_work` and friends do not specify which CPU to run the\nwork item on), `WQ_UNBOUND` allows the work item to be executed on any\nCPU in the same node of the CPU it was enqueued on. While this\nsolution potentially sacrifices locality, it avoids contention with\nother processes that might dominate the CPU time of the processor the\nwork item was scheduled on.\n\nThis is not just a theoretical problem: in a particular scenario\nmisconfigured process was hogging most of the time from CPU0, leaving\nless than 0.5% of its CPU time to the kworker. The IDPF workqueues\nthat were using the kworker on CPU0 suffered large completion delays\nas a result, causing performance degradation, timeouts and eventual\nsystem crash.\n\n\n* I have also run a manual test to gauge the performance\n improvement. The test consists of an antagonist process\n (`./stress --cpu 2`) consuming as much of CPU 0 as possible. This\n process is run under `taskset 01` to bind it to CPU0, and its\n priority is changed with `chrt -pQ 9900 10000 ${pid}` and\n `renice -n -20 ${pid}` after start.\n\n Then, the IDPF driver is forced to prefer CPU0 by editing all calls\n to `queue_delayed_work`, `mod_delayed_work`, etc... to use CPU 0.\n\n Finally, `ktraces` for the workqueue events are collected.\n\n Without the current patch, the antagonist process can force\n arbitrary delays between `workqueue_queue_work` and\n `workqueue_execute_start`, that in my tests were as high as\n `30ms`. With the current patch applied, the workqueue can be\n migrated to another unloaded CPU in the same node, and, keeping\n everything else equal, the maximum delay I could see was `6us`." }, { "lang": "es", "value": "En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: idpf: convertir colas de trabajo en no vinculadas Cuando se crea una cola de trabajo con `WQ_UNBOUND`, sus elementos de trabajo son atendidos por grupos de trabajadores especiales, cuyos trabajadores host no est\u00e1n vinculados a ninguna CPU espec\u00edfica. En la configuraci\u00f3n predeterminada (es decir, cuando `queue_delayed_work` y amigos no especifican en qu\u00e9 CPU ejecutar el elemento de trabajo), `WQ_UNBOUND` permite que el elemento de trabajo se ejecute en cualquier CPU en el mismo nodo de la CPU en la que se puso en cola. Si bien esta soluci\u00f3n potencialmente sacrifica la localidad, evita la contenci\u00f3n con otros procesos que podr\u00edan dominar el tiempo de CPU del procesador en el que se program\u00f3 el elemento de trabajo. Este no es solo un problema te\u00f3rico: en un escenario particular, el proceso mal configurado acaparaba la mayor parte del tiempo de la CPU0, dejando menos del 0,5% de su tiempo de CPU al kworker. Las colas de trabajo IDPF que estaban usando el kworker en CPU0 sufrieron grandes retrasos en la finalizaci\u00f3n como resultado, causando degradaci\u00f3n del rendimiento, tiempos de espera y eventualmente falla del sistema. * Tambi\u00e9n he ejecutado una prueba manual para medir la mejora del rendimiento. La prueba consiste en un proceso antagonista (`./stress --cpu 2`) que consume la mayor cantidad posible de CPU 0. Este proceso se ejecuta bajo `taskset 01` para vincularlo a CPU0, y su prioridad se cambia con `chrt -pQ 9900 10000 ${pid}` y `renice -n -20 ${pid}` despu\u00e9s del inicio. Luego, el controlador IDPF se ve obligado a preferir CPU0 editando todas las llamadas a `queue_delayed_work`, `mod_delayed_work`, etc... para usar CPU 0. Finalmente, se recopilan `ktraces` para los eventos de la cola de trabajo. Sin el parche actual, el proceso antagonista puede forzar demoras arbitrarias entre `workqueue_queue_work` y `workqueue_execute_start`, que en mis pruebas fueron tan altas como `30ms`. Con el parche actual aplicado, la cola de trabajo se puede migrar a otra CPU sin carga en el mismo nodo y, manteniendo todo lo dem\u00e1s igual, la demora m\u00e1xima que pude ver fue `6us`." } ], "id": "CVE-2024-58057", "lastModified": "2025-03-06T16:15:51.940", "metrics": {}, "published": "2025-03-06T16:15:51.940", "references": [ { "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "url": "https://git.kernel.org/stable/c/66bf9b3d9e1658333741f075320dc8e7cd6f8d09" }, { "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "url": "https://git.kernel.org/stable/c/868202ec3854e13de1164e4a3e25521194c5af72" }, { "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "url": "https://git.kernel.org/stable/c/9a5b021cb8186f1854bac2812bd4f396bb1e881c" } ], "sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "vulnStatus": "Awaiting Analysis" }
ghsa-25vp-mqrr-hv87
Vulnerability from github
In the Linux kernel, the following vulnerability has been resolved:
idpf: convert workqueues to unbound
When a workqueue is created with WQ_UNBOUND
, its work items are
served by special worker-pools, whose host workers are not bound to
any specific CPU. In the default configuration (i.e. when
queue_delayed_work
and friends do not specify which CPU to run the
work item on), WQ_UNBOUND
allows the work item to be executed on any
CPU in the same node of the CPU it was enqueued on. While this
solution potentially sacrifices locality, it avoids contention with
other processes that might dominate the CPU time of the processor the
work item was scheduled on.
This is not just a theoretical problem: in a particular scenario misconfigured process was hogging most of the time from CPU0, leaving less than 0.5% of its CPU time to the kworker. The IDPF workqueues that were using the kworker on CPU0 suffered large completion delays as a result, causing performance degradation, timeouts and eventual system crash.
- I have also run a manual test to gauge the performance
improvement. The test consists of an antagonist process
(
./stress --cpu 2
) consuming as much of CPU 0 as possible. This process is run undertaskset 01
to bind it to CPU0, and its priority is changed withchrt -pQ 9900 10000 ${pid}
andrenice -n -20 ${pid}
after start.
Then, the IDPF driver is forced to prefer CPU0 by editing all calls
to queue_delayed_work
, mod_delayed_work
, etc... to use CPU 0.
Finally, ktraces
for the workqueue events are collected.
Without the current patch, the antagonist process can force
arbitrary delays between workqueue_queue_work
and
workqueue_execute_start
, that in my tests were as high as
30ms
. With the current patch applied, the workqueue can be
migrated to another unloaded CPU in the same node, and, keeping
everything else equal, the maximum delay I could see was 6us
.
{ "affected": [], "aliases": [ "CVE-2024-58057" ], "database_specific": { "cwe_ids": [], "github_reviewed": false, "github_reviewed_at": null, "nvd_published_at": "2025-03-06T16:15:51Z", "severity": null }, "details": "In the Linux kernel, the following vulnerability has been resolved:\n\nidpf: convert workqueues to unbound\n\nWhen a workqueue is created with `WQ_UNBOUND`, its work items are\nserved by special worker-pools, whose host workers are not bound to\nany specific CPU. In the default configuration (i.e. when\n`queue_delayed_work` and friends do not specify which CPU to run the\nwork item on), `WQ_UNBOUND` allows the work item to be executed on any\nCPU in the same node of the CPU it was enqueued on. While this\nsolution potentially sacrifices locality, it avoids contention with\nother processes that might dominate the CPU time of the processor the\nwork item was scheduled on.\n\nThis is not just a theoretical problem: in a particular scenario\nmisconfigured process was hogging most of the time from CPU0, leaving\nless than 0.5% of its CPU time to the kworker. The IDPF workqueues\nthat were using the kworker on CPU0 suffered large completion delays\nas a result, causing performance degradation, timeouts and eventual\nsystem crash.\n\n\n* I have also run a manual test to gauge the performance\n improvement. The test consists of an antagonist process\n (`./stress --cpu 2`) consuming as much of CPU 0 as possible. This\n process is run under `taskset 01` to bind it to CPU0, and its\n priority is changed with `chrt -pQ 9900 10000 ${pid}` and\n `renice -n -20 ${pid}` after start.\n\n Then, the IDPF driver is forced to prefer CPU0 by editing all calls\n to `queue_delayed_work`, `mod_delayed_work`, etc... to use CPU 0.\n\n Finally, `ktraces` for the workqueue events are collected.\n\n Without the current patch, the antagonist process can force\n arbitrary delays between `workqueue_queue_work` and\n `workqueue_execute_start`, that in my tests were as high as\n `30ms`. With the current patch applied, the workqueue can be\n migrated to another unloaded CPU in the same node, and, keeping\n everything else equal, the maximum delay I could see was `6us`.", "id": "GHSA-25vp-mqrr-hv87", "modified": "2025-03-06T18:31:09Z", "published": "2025-03-06T18:31:09Z", "references": [ { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-58057" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/66bf9b3d9e1658333741f075320dc8e7cd6f8d09" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/868202ec3854e13de1164e4a3e25521194c5af72" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/9a5b021cb8186f1854bac2812bd4f396bb1e881c" } ], "schema_version": "1.4.0", "severity": [] }
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.