BlackTreeCVE Intelligence
← Back to the CVE catalogue
Full vulnerability report · 2024
CVE-2023-52622High confidence

ext4: avoid online resizing failures due to oversized flex bg

Linux · Linux

5.5MediumCVSS 3.1
Recommended action
Scheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
Distribution package intelligence

Ubuntu vendor package status

Canonical’s release and source-package findings are shown separately from local repository availability.

1 package state
Repository candidate not checked

A published vendor fix does not prove that a matching update is enabled and installable on a particular asset. Confirm the local package candidate before scheduling remediation.

Ubuntu releaseSource packageVendor stateFixed versionEvidence
Ubuntu 24.04 LTSnoble · standard archivelinux-azure-fdeAffected, no fix publishedCanonical OVAL identifies this running kernel flavour as affected and does not publish a fixed package version in this definition.Not published in this feedCanonical record ↗Source updated 11 Sept 2026
Direct vendor intelligence

Authoritative vendor CSAF and VEX advisories

Structured product status and remediation from the issuing vendor. Product-state explanations are always visible; large lists can be searched or downloaded.

2 current
SSA-613116 · CSAF 2.0 · revision 3 · interimSiemens ProductCERTSSA-613116: Multiple Vulnerabilities in Third-Party Components in SINEC OS before V3.1
3 known not affected

The vendor explicitly states that these products are not affected by this CVE.

  • RUGGEDCOM RST2428P (6GK6242-6PA00)
  • SCALANCE XC-300/XR-300/XC-400/XR-500WG/XR-500 family
  • SCALANCE XCM-/XRM-/XCH-/XRH-300 family
Summary
In the Linux kernel, the following vulnerability has been resolved: ext4: avoid online resizing failures due to oversized flex bg.
Remediation
No remediation text is recorded.
SSA-398330 · CSAF 2.0 · revision 18 · interimSiemens ProductCERTSSA-398330: Vulnerabilities in the additional GNU/Linux subsystem of the SIMATIC S7-1500 CPU 1518(F)-4 PN/DP MFP >= V3.1.0 and < V3.1.5
5 known affected

The vendor explicitly identifies these products as affected by this CVE.

  • SIMATIC S7-1500 CPU 1518-4 PN/DP MFP (6ES7518-4AX00-1AB0)
  • SIMATIC S7-1500 CPU 1518-4 PN/DP MFP (6ES7518-4AX00-1AC0)
  • SIMATIC S7-1500 CPU 1518F-4 PN/DP MFP (6ES7518-4FX00-1AB0)
  • SIMATIC S7-1500 CPU 1518F-4 PN/DP MFP (6ES7518-4FX00-1AC0)
  • SIPLUS S7-1500 CPU 1518-4 PN/DP MFP (6AG1518-4AX00-4AC0)
Summary
In the Linux kernel, the following vulnerability has been resolved: ext4: avoid online resizing failures due to oversized flex bg.
Remediation
Update to V3.1.5 or later version
Optional official sources

National CERT insights
?CERT means Computer Emergency Response Team; CSIRT is the closely related term Computer Security Incident Response Team.

Select the national-authority views to include. The exact source language is shown on each matched advisory. Your choice is remembered on this device and encoded in the shareable URL.

Official European source

ENISA European Vulnerability Database

Official EUVD identifiers, advisory evidence and known-exploited context. Missing fields are not treated as evidence of low risk.

1 current
ENISA EUVD identifier

EUVD-2023-57246

No EUVD known-exploited evidence

ENISA has published the identifier mapping but no EUVD description has been stored yet.

EUVD state
Present in the current official mapping
Known exploitation
Not present in the current ENISA EUVD known-exploited dataset. This is not proof of no exploitation.
ENISA score
Not supplied in the stored EUVD record
Advisory evidence
No linked advisory details stored yet
Recommended actionScheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
01

What, why and how

In the Linux kernel, the following vulnerability has been resolved: ext4: avoid online resizing failures due to oversized flex bg When we online resize an ext4 filesystem with a oversized flexbg_size, mkfs.ext4 -F -G 67108864 $dev -b 4096 100M mount $dev $dir resize2fs $dev 16G the following WARN_ON is triggered: ================================================================== WARNING: CPU: 0 PID: 427 at mm/page_alloc.c:4402 __alloc_pages+0x411/0x550 Modules linked in: sg(E) CPU: 0 PID: 427 Comm: resize2fs Tainted: G E 6.6.0-rc5+ #314 RIP: 0010:__alloc_pages+0x411/0x550 Call Trace: <TASK> __kmalloc_large_node+0xa2/0x200 __kmalloc+0x16e/0x290 ext4_resize_fs+0x481/0xd80 __ext4_ioctl+0x1616/0x1d90 ext4_ioctl+0x12/0x20 __x64_sys_ioctl+0xf0/0x150 do_syscall_64+0x3b/0x90 ================================================================== This is because flexbg_size is too large and the size of the new_group_data array to be allocated exceeds MAX_ORDER. Currently, the minimum value of MAX_ORDER is 8, the minimum value of PAGE_SIZE is 4096, the corresponding maximum number of groups that can be allocated is: (PAGE_SIZE << MAX_ORDER) / sizeof(struct ext4_new_group_data) ≈ 21845 And the value that is down-aligned to the power of 2 is 16384. Therefore, this value is defined as MAX_RESIZE_BG, and the number of groups added each time does not exceed this value during resizing, and is added multiple times to complete the online resizing. The difference is that the metadata in a flex_bg may be more dispersed.

What

In the Linux kernel, the following vulnerability has been resolved: ext4: avoid online resizing failures due to oversized flex bg When we online resize an ext4 filesystem with a oversized flexbg_size, mkfs.ext4 -F -G 67108864 $dev -b 4096 100M mount $dev $dir resize2fs $dev 16G the following WARN_ON is triggered: ================================================================== WARNING: CPU: 0 PID: 427 at mm/page_alloc.c:4402 __alloc_pages+0x411/0x550 Modules linked in: sg(E) CPU: 0 PID: 427 Comm: resize2fs Tainted: G E 6.6.0-rc5+ #314 RIP: 0010:__alloc_pages+0x411/0x550 Call Trace: <TASK> __kmalloc_large_node+0xa2/0x200 __kmalloc+0x16e/0x290 ext4_resize_fs+0x481/0xd80 __ext4_ioctl+0x1616/0x1d90 ext4_ioctl+0x12/0x20 __x64_sys_ioctl+0xf0/0x150 do_syscall_64+0x3b/0x90 ================================================================== This is because flexbg_size is too large and the size of the new_group_data array to be allocated exceeds MAX_ORDER. Currently, the minimum value of MAX_ORDER is 8, the minimum value of PAGE_SIZE is 4096, the corresponding maximum number of groups that can be allocated is: (PAGE_SIZE << MAX_ORDER) / sizeof(struct ext4_new_group_data) ≈ 21845 And the value that is down-aligned to the power of 2 is 16384. Therefore, this value is defined as MAX_RESIZE_BG, and the number of groups added each time does not exceed this value during resizing, and is added multiple times to complete the online resizing. The difference is that the metadata in a flex_bg may be more dispersed.

Why

The product allocates a reusable resource or group of resources on behalf of an actor without imposing any intended restrictions on the size or number of resources that can be allocated.

How

An attacker operating through local access may attempt exploitation with low privileges. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

What

In the Linux kernel, the following vulnerability has been resolved: ext4: avoid online resizing failures due to oversized flex bg When we online resize an ext4 filesystem with a oversized flexbg_size, mkfs.ext4 -F -G 67108864 $dev -b 4096 100M mount $dev $dir resize2fs $dev 16G the following WARN_ON is triggered: ================================================================== WARNING: CPU: 0 PID: 427 at mm/page_alloc.c:4402 __alloc_pages+0x411/0x550 Modules linked in: sg(E) CPU: 0 PID: 427 Comm: resize2fs Tainted: G E 6.6.0-rc5+ #314 RIP: 0010:__alloc_pages+0x411/0x550 Call Trace: <TASK> __kmalloc_large_node+0xa2/0x200 __kmalloc+0x16e/0x290 ext4_resize_fs+0x481/0xd80 __ext4_ioctl+0x1616/0x1d90 ext4_ioctl+0x12/0x20 __x64_sys_ioctl+0xf0/0x150 do_syscall_64+0x3b/0x90 ================================================================== This is because flexbg_size is too large and the size of the new_group_data array to be allocated exceeds MAX_ORDER. Currently, the minimum value of MAX_ORDER is 8, the minimum value of PAGE_SIZE is 4096, the corresponding maximum number of groups that can be allocated is: (PAGE_SIZE << MAX_ORDER) / sizeof(struct ext4_new_group_data) ≈ 21845 And the value that is down-aligned to the power of 2 is 16384. Therefore, this value is defined as MAX_RESIZE_BG, and the number of groups added each time does not exceed this value during resizing, and is added multiple times to complete the online resizing. The difference is that the metadata in a flex_bg may be more dispersed.

Why

The product allocates a reusable resource or group of resources on behalf of an actor without imposing any intended restrictions on the size or number of resources that can be allocated.

How

An attacker operating through local access may attempt exploitation with low privileges. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

02

Exploit reality and attack path

CVSS severity, EPSS forecast probability, public exploit material and CISA-confirmed exploitation are separate signals.

Observed exploitation
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
No confirmed evidence

No CISA KEV match was present at the last successful refresh. This means no confirmation from that source, not proof of no exploitation.

Public PoC / exploit material
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
None recorded

No exploit-tagged reference or CISA SSVC proof-of-concept state is currently recorded. Research may still exist outside the structured feeds.

Likely attack path
local access → Allocation of Resources Without Limits or Throttling → cause the confidentiality, integrity or availability impact described by the vendor
Attack surface
Local
Privileges required
Low: a basic authenticated account is required
User interaction
None
Attack complexity
Low: no specialised conditions are recorded
Security boundary
Unchanged: impact remains within the vulnerable component's security authority
Weakness
?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-770

CWE-770: Allocation of Resources Without Limits or Throttling. The product allocates a reusable resource or group of resources on behalf of an actor without imposing any intended restrictions on the size or number of resources that can be allocated.

CVSS vector
?CVSS means Common Vulnerability Scoring System. The vector records the metric values used to calculate technical severity.
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

Common Vulnerability Scoring System 3.1: the compact vector below is decoded into plain language.

AVLocalAttack vector: The attacker needs local access to the vulnerable system.ACLowAttack complexity: No specialised conditions are required beyond attacker-controlled input.PRLowPrivileges required: The attacker needs basic user-level privileges.UINoneUser interaction: No action by another user is required.SUnchangedScope: The security impact remains within the vulnerable component's authority.CNoneConfidentiality impact: No direct loss is represented by this metric.INoneIntegrity impact: No direct loss is represented by this metric.AHighAvailability impact: A successful attack can cause a major loss.
Post-exploitation / living off the land
The issue can support a local privilege or sandbox boundary transition; normal system utilities may then be available in the gained context.
CWE-770
A

Official authority intelligence

Only matched European and national findings are included. Language selectors and unavailable sources are omitted.

BSI · German · WID-SEC-2024-1913Red Hat OpenShift Container Platform: Mehrere Schwachstellen

Ein entfernter anonymer oder lokaler Angreifer kann mehrere Schwachstellen in Red Hat OpenShift Container Platform ausnutzen, um seine Privilegien zu erhöhen, beliebigen Code auszuführen, einen Denial-of-Service-Zustand zu erzeugen, vertrauliche Informationen offenzulegen, Dateien und Daten zu manipulieren oder Sicherheitsmaßnahmen zu umgehen.

Official advisory ↗
BSI · German · WID-SEC-2024-0722Linux Kernel: Mehrere Schwachstellen

Ein lokaler Angreifer kann mehrere Schwachstellen im Linux-Kernel ausnutzen, um Dateien zu manipulieren, unbekannte Effekte zu verursachen oder einen Denial-of-Service-Zustand auszulösen.

Official advisory ↗
Cyber Security Agency of Singapore · English · CSA-SB-20240327Security Bulletin 27 Mar 2024

The Cyber Security Agency of Singapore included this CVE in its official Security Bulletin 27 Mar 2024, published on 27 March 2024. Open the linked bulletin for the product, severity and reference information published in that issue.

Official advisory ↗
CERT-FR · French · CERTFR-2026-AVI-1165Multiples vulnérabilités dans les produits IBM

d?id=CVE-2023-52476 Référence CVE CVE-2023-52478 https://www.cve.org/CVERecord?id=CVE-2023-52478 Référence CVE CVE-2023-52486 https://www.cve.org/CVERecord?id=CVE-2023-52486 Référence CVE CVE-2023-52492 https://www.cve.org/CVERecord?id=CVE-2023-52492 Référence CVE CVE-2023-52522 https://www.cve.org/CVERecord?id=CVE-2023-52522 Référence CVE CVE-2023-52530 https://www.cve.org/CVERecord?id=CVE-2023-52530 Référence CVE CVE-2023-52560 https://www.cve.org/CVERecord?id=CVE-2023-52560 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52626 https://www.cve.org/CVERecord?id=CVE-2023-52626 Référence CVE CVE-2023-52648 https://www.cve.org/CVERecord?id=CVE-2023-52648 Référence CVE CVE-2023-52653 https://www.cve.org/CVERecord?id=CVE-2023-52653 Référence CVE CVE-2023-52658 https://www.cve.org/CVERecord?id=CVE-2023-52658 Référence CVE CVE-2023-52662 https://www.cve.org/CVERecord?id=CVE-2023-52662 Référence CVE CVE-2023-52667 https://www.cve.org/CVERecord?id=CVE-2023-52667 Référence CVE CVE-2023-52669 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2025-AVI-0677Multiples vulnérabilités dans les produits Siemens

d?id=CVE-2023-52601 Référence CVE CVE-2023-52602 https://www.cve.org/CVERecord?id=CVE-2023-52602 Référence CVE CVE-2023-52603 https://www.cve.org/CVERecord?id=CVE-2023-52603 Référence CVE CVE-2023-52604 https://www.cve.org/CVERecord?id=CVE-2023-52604 Référence CVE CVE-2023-52606 https://www.cve.org/CVERecord?id=CVE-2023-52606 Référence CVE CVE-2023-52607 https://www.cve.org/CVERecord?id=CVE-2023-52607 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52617 https://www.cve.org/CVERecord?id=CVE-2023-52617 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52637 https://www.cve.org/CVERecord?id=CVE-2023-52637 Référence CVE CVE-2023-52654 https://www.cve.org/CVERecord?id=CVE-2023-52654 Référence CVE CVE-2023-52655 https://www.cve.org/CVERecord?id=CVE-2023-52655 Référence CVE CVE-2023-52670 https://www.cve.org/CVERecord?id=CVE-2023-52670 Référence CVE CVE-2023-52753 https://www.cve.org/CVERecord?id=CVE-2023-52753 Référence CVE CVE-2023-52764 https://www.cve.org/CVERecord?id=CVE-2023-52764 Référence CVE CVE-2023-52774 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2025-AVI-0466Multiples vulnérabilités dans le noyau Linux de Red Hat

De multiples vulnérabilités ont été découvertes dans le noyau Linux de Red Hat. 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.

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0958Multiples vulnérabilités dans les produits IBM

d?id=CVE-2023-52584 Référence CVE CVE-2023-52590 https://www.cve.org/CVERecord?id=CVE-2023-52590 Référence CVE CVE-2023-52591 https://www.cve.org/CVERecord?id=CVE-2023-52591 Référence CVE CVE-2023-52596 https://www.cve.org/CVERecord?id=CVE-2023-52596 Référence CVE CVE-2023-52599 https://www.cve.org/CVERecord?id=CVE-2023-52599 Référence CVE CVE-2023-52600 https://www.cve.org/CVERecord?id=CVE-2023-52600 Référence CVE CVE-2023-52608 https://www.cve.org/CVERecord?id=CVE-2023-52608 Référence CVE CVE-2023-52609 https://www.cve.org/CVERecord?id=CVE-2023-52609 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52648 https://www.cve.org/CVERecord?id=CVE-2023-52648 Référence CVE CVE-2023-52653 https://www.cve.org/CVERecord?id=CVE-2023-52653 Référence CVE CVE-2023-52658 https://www.cve.org/CVERecord?id=CVE-2023-52658 Référence CVE CVE-2023-52662 https://www.cve.org/CVERecord?id=CVE-2023-52662 Référence CVE CVE-2023-52679 https://www.cve.org/CVERecord?id=CVE-2023-52679 Référence CVE CVE-2023-52707 https://www.cve.org/CVERecord?id=CVE-2023-52707 Référence CVE CVE-2023-52730 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0717Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2023-52573 Référence CVE CVE-2023-52580 https://www.cve.org/CVERecord?id=CVE-2023-52580 Référence CVE CVE-2023-52591 https://www.cve.org/CVERecord?id=CVE-2023-52591 Référence CVE CVE-2023-52594 https://www.cve.org/CVERecord?id=CVE-2023-52594 Référence CVE CVE-2023-52612 https://www.cve.org/CVERecord?id=CVE-2023-52612 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52616 https://www.cve.org/CVERecord?id=CVE-2023-52616 Référence CVE CVE-2023-52618 https://www.cve.org/CVERecord?id=CVE-2023-52618 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52631 https://www.cve.org/CVERecord?id=CVE-2023-52631 Référence CVE CVE-2023-52635 https://www.cve.org/CVERecord?id=CVE-2023-52635 Référence CVE CVE-2023-52640 https://www.cve.org/CVERecord?id=CVE-2023-52640 Référence CVE CVE-2023-52641 https://www.cve.org/CVERecord?id=CVE-2023-52641 Référence CVE CVE-2023-52645 https://www.cve.org/CVERecord?id=CVE-2023-52645 Référence CVE CVE-2023-52652 https://www.cve.org/CVERecord?id=CVE-2023-52652 Référence CVE CVE-2023-52653 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0693Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2023-52472 Référence CVE CVE-2023-52507 https://www.cve.org/CVERecord?id=CVE-2023-52507 Référence CVE CVE-2023-52573 https://www.cve.org/CVERecord?id=CVE-2023-52573 Référence CVE CVE-2023-52580 https://www.cve.org/CVERecord?id=CVE-2023-52580 Référence CVE CVE-2023-52591 https://www.cve.org/CVERecord?id=CVE-2023-52591 Référence CVE CVE-2023-52594 https://www.cve.org/CVERecord?id=CVE-2023-52594 Référence CVE CVE-2023-52612 https://www.cve.org/CVERecord?id=CVE-2023-52612 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52656 https://www.cve.org/CVERecord?id=CVE-2023-52656 Référence CVE CVE-2023-52658 https://www.cve.org/CVERecord?id=CVE-2023-52658 Référence CVE CVE-2023-52667 https://www.cve.org/CVERecord?id=CVE-2023-52667 Référence CVE CVE-2023-52669 https://www.cve.org/CVERecord?id=CVE-2023-52669 Référence CVE CVE-2023-52670 https://www.cve.org/CVERecord?id=CVE-2023-52670 Référence CVE CVE-2023-52672 https://www.cve.org/CVERecord?id=CVE-2023-52672 Référence CVE CVE-2023-52675 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0668Multiples vulnérabilités dans le noyau Linux de Red Hat

d?id=CVE-2023-28746 Référence CVE CVE-2023-52451 https://www.cve.org/CVERecord?id=CVE-2023-52451 Référence CVE CVE-2023-52458 https://www.cve.org/CVERecord?id=CVE-2023-52458 Référence CVE CVE-2023-52463 https://www.cve.org/CVERecord?id=CVE-2023-52463 Référence CVE CVE-2023-52469 https://www.cve.org/CVERecord?id=CVE-2023-52469 Référence CVE CVE-2023-52471 https://www.cve.org/CVERecord?id=CVE-2023-52471 Référence CVE CVE-2023-52486 https://www.cve.org/CVERecord?id=CVE-2023-52486 Référence CVE CVE-2023-52530 https://www.cve.org/CVERecord?id=CVE-2023-52530 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52635 https://www.cve.org/CVERecord?id=CVE-2023-52635 Référence CVE CVE-2023-52648 https://www.cve.org/CVERecord?id=CVE-2023-52648 Référence CVE CVE-2023-52653 https://www.cve.org/CVERecord?id=CVE-2023-52653 Référence CVE CVE-2023-52658 https://www.cve.org/CVERecord?id=CVE-2023-52658 Référence CVE CVE-2023-52662 https://www.cve.org/CVERecord?id=CVE-2023-52662 Référence CVE CVE-2023-52679 https://www.cve.org/CVERecord?id=CVE-2023-52679 Référence CVE CVE-2023-52707 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0632Multiples vulnérabilités dans le noyau Linux de SUSE

support/update/announcement/2024/suse-su-20242571-1 Bulletin de sécurité SUSE SUSE-SU-2024:2575-1 du 22 juillet 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20242575-1 Bulletin de sécurité SUSE SUSE-SU-2024:2585-1 du 22 juillet 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20242585-1 Référence CVE CVE-2021-47432 https://www.cve.org/CVERecord?id=CVE-2021-47432 Référence CVE CVE-2022-48772 https://www.cve.org/CVERecord?id=CVE-2022-48772 Référence CVE CVE-2023-38417 https://www.cve.org/CVERecord?id=CVE-2023-38417 Référence CVE CVE-2023-47210 https://www.cve.org/CVERecord?id=CVE-2023-47210 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52656 https://www.cve.org/CVERecord?id=CVE-2023-52656 Référence CVE CVE-2023-52672 https://www.cve.org/CVERecord?id=CVE-2023-52672 Référence CVE CVE-2023-52699 https://www.cve.org/CVERecord?id=CVE-2023-52699 Référence CVE CVE-2023-52735 https://www.cve.org/CVERecord?id=CVE-2023-52735 Référence CVE CVE-2023-52749 https://www.cve.org/CVERecord?id=CVE-2023-52749 Référence CVE CVE-2023-52750 https://www.cve.org/CVERecord?id=CVE-2023-52750 Référence CVE CVE-2023-52753 https://www.cve.org/CVERecord?id=CVE-2023-52753 Référence CVE CVE-2023-52754 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0610Multiples vulnérabilités dans le noyau Linux de SUSE

ecord?id=CVE-2022-48761 Référence CVE CVE-2022-48771 https://www.cve.org/CVERecord?id=CVE-2022-48771 Référence CVE CVE-2022-48772 https://www.cve.org/CVERecord?id=CVE-2022-48772 Référence CVE CVE-2023-1829 https://www.cve.org/CVERecord?id=CVE-2023-1829 Référence CVE CVE-2023-24023 https://www.cve.org/CVERecord?id=CVE-2023-24023 Référence CVE CVE-2023-4244 https://www.cve.org/CVERecord?id=CVE-2023-4244 Référence CVE CVE-2023-52340 https://www.cve.org/CVERecord?id=CVE-2023-52340 Référence CVE CVE-2023-52502 https://www.cve.org/CVERecord?id=CVE-2023-52502 Référence CVE CVE-2023-52507 https://www.cve.org/CVERecord?id=CVE-2023-52507 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52670 https://www.cve.org/CVERecord?id=CVE-2023-52670 Référence CVE CVE-2023-52675 https://www.cve.org/CVERecord?id=CVE-2023-52675 Référence CVE CVE-2023-52683 https://www.cve.org/CVERecord?id=CVE-2023-52683 Référence CVE CVE-2023-52693 https://www.cve.org/CVERecord?id=CVE-2023-52693 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=CVE-2023-52737 Référence CVE CVE-2023-52752 https://www.cve.org/CVERecord?id=CVE-2023-52752 Référence CVE CVE-2023-52753 https://www.cve.org/CVERecord?id=CVE-2023-52753 Référence CVE CVE-2023-52754 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0578Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2023-20519 Référence CVE CVE-2023-20521 https://www.cve.org/CVERecord?id=CVE-2023-20521 Référence CVE CVE-2023-20526 https://www.cve.org/CVERecord?id=CVE-2023-20526 Référence CVE CVE-2023-20533 https://www.cve.org/CVERecord?id=CVE-2023-20533 Référence CVE CVE-2023-20566 https://www.cve.org/CVERecord?id=CVE-2023-20566 Référence CVE CVE-2023-20592 https://www.cve.org/CVERecord?id=CVE-2023-20592 Référence CVE CVE-2023-24023 https://www.cve.org/CVERecord?id=CVE-2023-24023 Référence CVE CVE-2023-52340 https://www.cve.org/CVERecord?id=CVE-2023-52340 Référence CVE CVE-2023-52502 https://www.cve.org/CVERecord?id=CVE-2023-52502 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52658 https://www.cve.org/CVERecord?id=CVE-2023-52658 Référence CVE CVE-2023-52667 https://www.cve.org/CVERecord?id=CVE-2023-52667 Référence CVE CVE-2023-52670 https://www.cve.org/CVERecord?id=CVE-2023-52670 Référence CVE CVE-2023-52672 https://www.cve.org/CVERecord?id=CVE-2023-52672 Référence CVE CVE-2023-52675 https://www.cve.org/CVERecord?id=CVE-2023-52675 Référence CVE CVE-2023-52707 https://www.cve.org/CVERecord?id=CVE-2023-52707 Référence CVE CVE-2023-52735 https://www.cve.org/CVERecord?id=CVE-2023-52735 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0527Multiples vulnérabilités dans le noyau Linux de Debian LTS

d?id=CVE-2023-52609 Référence CVE CVE-2023-52612 https://www.cve.org/CVERecord?id=CVE-2023-52612 Référence CVE CVE-2023-52614 https://www.cve.org/CVERecord?id=CVE-2023-52614 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52616 https://www.cve.org/CVERecord?id=CVE-2023-52616 Référence CVE CVE-2023-52617 https://www.cve.org/CVERecord?id=CVE-2023-52617 Référence CVE CVE-2023-52618 https://www.cve.org/CVERecord?id=CVE-2023-52618 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52620 https://www.cve.org/CVERecord?id=CVE-2023-52620 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52627 https://www.cve.org/CVERecord?id=CVE-2023-52627 Référence CVE CVE-2023-52628 https://www.cve.org/CVERecord?id=CVE-2023-52628 Référence CVE CVE-2023-52635 https://www.cve.org/CVERecord?id=CVE-2023-52635 Référence CVE CVE-2023-52637 https://www.cve.org/CVERecord?id=CVE-2023-52637 Référence CVE CVE-2023-52642 https://www.cve.org/CVERecord?id=CVE-2023-52642 Référence CVE CVE-2023-52644 https://www.cve.org/CVERecord?id=CVE-2023-52644 Référence CVE CVE-2023-52650 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0456Multiples vulnérabilités dans le noyau Linux d'Ubuntu

d?id=CVE-2023-52606 Référence CVE CVE-2023-52607 https://www.cve.org/CVERecord?id=CVE-2023-52607 Référence CVE CVE-2023-52608 https://www.cve.org/CVERecord?id=CVE-2023-52608 Référence CVE CVE-2023-52614 https://www.cve.org/CVERecord?id=CVE-2023-52614 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52616 https://www.cve.org/CVERecord?id=CVE-2023-52616 Référence CVE CVE-2023-52617 https://www.cve.org/CVERecord?id=CVE-2023-52617 Référence CVE CVE-2023-52618 https://www.cve.org/CVERecord?id=CVE-2023-52618 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52627 https://www.cve.org/CVERecord?id=CVE-2023-52627 Référence CVE CVE-2023-52631 https://www.cve.org/CVERecord?id=CVE-2023-52631 Référence CVE CVE-2023-52633 https://www.cve.org/CVERecord?id=CVE-2023-52633 Référence CVE CVE-2023-52635 https://www.cve.org/CVERecord?id=CVE-2023-52635 Référence CVE CVE-2023-52637 https://www.cve.org/CVERecord?id=CVE-2023-52637 Référence CVE CVE-2023-52638 https://www.cve.org/CVERecord?id=CVE-2023-52638 Référence CVE CVE-2023-52642 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0439Multiples vulnérabilités dans le noyau Linux d'Ubuntu

d?id=CVE-2023-52606 Référence CVE CVE-2023-52607 https://www.cve.org/CVERecord?id=CVE-2023-52607 Référence CVE CVE-2023-52608 https://www.cve.org/CVERecord?id=CVE-2023-52608 Référence CVE CVE-2023-52614 https://www.cve.org/CVERecord?id=CVE-2023-52614 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52616 https://www.cve.org/CVERecord?id=CVE-2023-52616 Référence CVE CVE-2023-52617 https://www.cve.org/CVERecord?id=CVE-2023-52617 Référence CVE CVE-2023-52618 https://www.cve.org/CVERecord?id=CVE-2023-52618 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52627 https://www.cve.org/CVERecord?id=CVE-2023-52627 Référence CVE CVE-2023-52631 https://www.cve.org/CVERecord?id=CVE-2023-52631 Référence CVE CVE-2023-52633 https://www.cve.org/CVERecord?id=CVE-2023-52633 Référence CVE CVE-2023-52635 https://www.cve.org/CVERecord?id=CVE-2023-52635 Référence CVE CVE-2023-52637 https://www.cve.org/CVERecord?id=CVE-2023-52637 Référence CVE CVE-2023-52638 https://www.cve.org/CVERecord?id=CVE-2023-52638 Référence CVE CVE-2023-52642 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0422Multiples vulnérabilités dans le noyau Linux d'Ubuntu

d?id=CVE-2023-52606 Référence CVE CVE-2023-52607 https://www.cve.org/CVERecord?id=CVE-2023-52607 Référence CVE CVE-2023-52608 https://www.cve.org/CVERecord?id=CVE-2023-52608 Référence CVE CVE-2023-52614 https://www.cve.org/CVERecord?id=CVE-2023-52614 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52616 https://www.cve.org/CVERecord?id=CVE-2023-52616 Référence CVE CVE-2023-52617 https://www.cve.org/CVERecord?id=CVE-2023-52617 Référence CVE CVE-2023-52618 https://www.cve.org/CVERecord?id=CVE-2023-52618 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52627 https://www.cve.org/CVERecord?id=CVE-2023-52627 Référence CVE CVE-2023-52631 https://www.cve.org/CVERecord?id=CVE-2023-52631 Référence CVE CVE-2023-52633 https://www.cve.org/CVERecord?id=CVE-2023-52633 Référence CVE CVE-2023-52635 https://www.cve.org/CVERecord?id=CVE-2023-52635 Référence CVE CVE-2023-52637 https://www.cve.org/CVERecord?id=CVE-2023-52637 Référence CVE CVE-2023-52638 https://www.cve.org/CVERecord?id=CVE-2023-52638 Référence CVE CVE-2023-52642 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0383Multiples vulnérabilités dans le noyau Linux d'Ubuntu

d?id=CVE-2023-52611 Référence CVE CVE-2023-52612 https://www.cve.org/CVERecord?id=CVE-2023-52612 Référence CVE CVE-2023-52614 https://www.cve.org/CVERecord?id=CVE-2023-52614 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52616 https://www.cve.org/CVERecord?id=CVE-2023-52616 Référence CVE CVE-2023-52617 https://www.cve.org/CVERecord?id=CVE-2023-52617 Référence CVE CVE-2023-52618 https://www.cve.org/CVERecord?id=CVE-2023-52618 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52621 https://www.cve.org/CVERecord?id=CVE-2023-52621 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52626 https://www.cve.org/CVERecord?id=CVE-2023-52626 Référence CVE CVE-2023-52627 https://www.cve.org/CVERecord?id=CVE-2023-52627 Référence CVE CVE-2023-52631 https://www.cve.org/CVERecord?id=CVE-2023-52631 Référence CVE CVE-2023-52632 https://www.cve.org/CVERecord?id=CVE-2023-52632 Référence CVE CVE-2023-52633 https://www.cve.org/CVERecord?id=CVE-2023-52633 Référence CVE CVE-2023-52635 https://www.cve.org/CVERecord?id=CVE-2023-52635 Référence CVE CVE-2023-52637 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0381Multiples vulnérabilités dans le noyau Linux de Debian

d?id=CVE-2023-52606 Référence CVE CVE-2023-52607 https://www.cve.org/CVERecord?id=CVE-2023-52607 Référence CVE CVE-2023-52614 https://www.cve.org/CVERecord?id=CVE-2023-52614 Référence CVE CVE-2023-52615 https://www.cve.org/CVERecord?id=CVE-2023-52615 Référence CVE CVE-2023-52616 https://www.cve.org/CVERecord?id=CVE-2023-52616 Référence CVE CVE-2023-52617 https://www.cve.org/CVERecord?id=CVE-2023-52617 Référence CVE CVE-2023-52618 https://www.cve.org/CVERecord?id=CVE-2023-52618 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52620 https://www.cve.org/CVERecord?id=CVE-2023-52620 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52627 https://www.cve.org/CVERecord?id=CVE-2023-52627 Référence CVE CVE-2023-52635 https://www.cve.org/CVERecord?id=CVE-2023-52635 Référence CVE CVE-2023-52637 https://www.cve.org/CVERecord?id=CVE-2023-52637 Référence CVE CVE-2023-52642 https://www.cve.org/CVERecord?id=CVE-2023-52642 Référence CVE CVE-2023-52644 https://www.cve.org/CVERecord?id=CVE-2023-52644 Référence CVE CVE-2023-52650 https://www.cve.org/CVERecord?id=CVE-2023-52650 Référence CVE CVE-2023-6270 https://www.cve.org/CVERecord?id=C

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0334Multiples vulnérabilités dans le noyau Linux de Debian

d?id=CVE-2023-52604 Référence CVE CVE-2023-52606 https://www.cve.org/CVERecord?id=CVE-2023-52606 Référence CVE CVE-2023-52607 https://www.cve.org/CVERecord?id=CVE-2023-52607 Référence CVE CVE-2023-52616 https://www.cve.org/CVERecord?id=CVE-2023-52616 Référence CVE CVE-2023-52617 https://www.cve.org/CVERecord?id=CVE-2023-52617 Référence CVE CVE-2023-52618 https://www.cve.org/CVERecord?id=CVE-2023-52618 Référence CVE CVE-2023-52619 https://www.cve.org/CVERecord?id=CVE-2023-52619 Référence CVE CVE-2023-52620 https://www.cve.org/CVERecord?id=CVE-2023-52620 Référence CVE CVE-2023-52621 https://www.cve.org/CVERecord?id=CVE-2023-52621 Référence CVE CVE-2023-52622 https://www.cve.org/CVERecord?id=CVE-2023-52622 Référence CVE CVE-2023-52623 https://www.cve.org/CVERecord?id=CVE-2023-52623 Référence CVE CVE-2023-52630 https://www.cve.org/CVERecord?id=CVE-2023-52630 Référence CVE CVE-2023-52631 https://www.cve.org/CVERecord?id=CVE-2023-52631 Référence CVE CVE-2023-52632 https://www.cve.org/CVERecord?id=CVE-2023-52632 Référence CVE CVE-2023-52633 https://www.cve.org/CVERecord?id=CVE-2023-52633 Référence CVE CVE-2023-52635 https://www.cve.org/CVERecord?id=CVE-2023-52635 Référence CVE CVE-2023-52637 https://www.cve.org/CVERecord?id=CVE-2023-52637 Référence CVE CVE-2023-52638 https://www.cve.org/CVERecord?id=

Official advisory ↗
JVN iPedia · Japanese · JVNDB-2023-028423Linux の Linux Kernel 等複数ベンダの製品における制限またはスロットリング無しのリソースの割り当てに関する脆弱性

Linux の Linux Kernel 等複数ベンダの製品には、制限またはスロットリング無しのリソースの割り当てに関する脆弱性が存在します。

Official advisory ↗
03

Patch and workaround

Operational remediation based on structured source evidence.

Status
?Patch availability is based on structured fixed-version fields and authoritative update references. If no fix is verified, check the vendor advisory before making a change.
Patch available
Affected
Fixed
Linux: < 3.3, 4.19.307 ≤ 4.19.*, 5.4.269 ≤ 5.4.*, 5.10.210 ≤ 5.10.*, 5.15.149 ≤ 5.15.*, 6.1.77 ≤ 6.1.*, 6.6.16 ≤ 6.6.*, 6.7.4 ≤ 6.7.*, 6.8 ≤ *
Action
Update to V3.1.5 or later version
Workaround
No verified workaround is recorded. Limit untrusted access and use least privilege until authoritative guidance is available.
04

Evidence and provenance

Published 26 Mar 2024 · Last source change 11 May 2026, 19:30 UTC · CWE-770 · Allocation of Resources Without Limits or Throttling

CVE recordCVE.org · 5.2
CVSS sourceNIST NVD
EPSS source
?The date BlackTree first stored a score for this CVE from the daily FIRST EPSS feed.
FIRST · tracked since 2026-08-14
European sourceENISA EUVD · EUVD-2023-57246
Product sourceVendor CSAF · Siemens ProductCERT
Remediation sourceVendor CSAF · Siemens ProductCERT
CWE sourceNIST NVD
NVD statusNVD enriched

Core structured fields are present and their contributing authorities are shown above.

Material change intelligence

What changed after publication

View recent updates ↗

No material field changes have been recorded since change tracking began. Routine source refreshes and cosmetic edits are intentionally excluded.

Material fields only · duplicate refreshes suppressed · history retained for the configured operational retention period
Technical terms and abbreviations used in this report
CVE
Common Vulnerabilities and Exposures: the public identifier for one disclosed vulnerability.
CVSS
Common Vulnerability Scoring System: a technical severity framework; it is not patching priority by itself.
EPSS
Exploit Prediction Scoring System: FIRST's estimate of the probability that exploitation activity will be observed in the next 30 days; it is a forecast, not confirmation.
CWE
Common Weakness Enumeration: the standard category describing the underlying software or hardware weakness.
CNA
CVE Numbering Authority: an organisation authorised to assign and publish CVE records.
CISA ADP
Cybersecurity and Infrastructure Security Agency Authorized Data Publisher: structured enrichment added to a CVE record.
NVD
National Vulnerability Database: NIST's enrichment service for CVE records.
CERT / CSIRT
A computer security incident response team that publishes warnings or coordinates incident response.
PoC
Proof of concept: public material that demonstrates or helps reproduce exploitation.
CSAF
Common Security Advisory Framework: a machine-readable format for security advisories.
LoTL
Living off the land: abuse of legitimate tools or system functions during an attack.
Free version - for non-commercial use only.CVE-2023-52622 · cve.blacktree.nl