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

btrfs: use latest_dev in btrfs_show_devname

Linux · Linux

4.7MediumCVSS 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-raspi-realtimeAffected, 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
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-2021-34601

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: btrfs: use latest_dev in btrfs_show_devname The test case btrfs/238 reports the warning below: WARNING: CPU: 3 PID: 481 at fs/btrfs/super.c:2509 btrfs_show_devname+0x104/0x1e8 [btrfs] CPU: 2 PID: 1 Comm: systemd Tainted: G W O 5.14.0-rc1-custom #72 Hardware name: QEMU QEMU Virtual Machine, BIOS 0.0.0 02/06/2015 Call trace: btrfs_show_devname+0x108/0x1b4 [btrfs] show_mountinfo+0x234/0x2c4 m_show+0x28/0x34 seq_read_iter+0x12c/0x3c4 vfs_read+0x29c/0x2c8 ksys_read+0x80/0xec __arm64_sys_read+0x28/0x34 invoke_syscall+0x50/0xf8 do_el0_svc+0x88/0x138 el0_svc+0x2c/0x8c el0t_64_sync_handler+0x84/0xe4 el0t_64_sync+0x198/0x19c Reason: While btrfs_prepare_sprout() moves the fs_devices::devices into fs_devices::seed_list, the btrfs_show_devname() searches for the devices and found none, leading to the warning as in above. Fix: latest_dev is updated according to the changes to the device list. That means we could use the latest_dev->name to show the device name in /proc/self/mounts, the pointer will be always valid as it's assigned before the device is deleted from the list in remove or replace. The RCU protection is sufficient as the device structure is freed after synchronization.

What

In the Linux kernel, the following vulnerability has been resolved: btrfs: use latest_dev in btrfs_show_devname The test case btrfs/238 reports the warning below: WARNING: CPU: 3 PID: 481 at fs/btrfs/super.c:2509 btrfs_show_devname+0x104/0x1e8 [btrfs] CPU: 2 PID: 1 Comm: systemd Tainted: G W O 5.14.0-rc1-custom #72 Hardware name: QEMU QEMU Virtual Machine, BIOS 0.0.0 02/06/2015 Call trace: btrfs_show_devname+0x108/0x1b4 [btrfs] show_mountinfo+0x234/0x2c4 m_show+0x28/0x34 seq_read_iter+0x12c/0x3c4 vfs_read+0x29c/0x2c8 ksys_read+0x80/0xec __arm64_sys_read+0x28/0x34 invoke_syscall+0x50/0xf8 do_el0_svc+0x88/0x138 el0_svc+0x2c/0x8c el0t_64_sync_handler+0x84/0xe4 el0t_64_sync+0x198/0x19c Reason: While btrfs_prepare_sprout() moves the fs_devices::devices into fs_devices::seed_list, the btrfs_show_devname() searches for the devices and found none, leading to the warning as in above. Fix: latest_dev is updated according to the changes to the device list. That means we could use the latest_dev->name to show the device name in /proc/self/mounts, the pointer will be always valid as it's assigned before the device is deleted from the list in remove or replace. The RCU protection is sufficient as the device structure is freed after synchronization.

Why

The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently.

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: btrfs: use latest_dev in btrfs_show_devname The test case btrfs/238 reports the warning below: WARNING: CPU: 3 PID: 481 at fs/btrfs/super.c:2509 btrfs_show_devname+0x104/0x1e8 [btrfs] CPU: 2 PID: 1 Comm: systemd Tainted: G W O 5.14.0-rc1-custom #72 Hardware name: QEMU QEMU Virtual Machine, BIOS 0.0.0 02/06/2015 Call trace: btrfs_show_devname+0x108/0x1b4 [btrfs] show_mountinfo+0x234/0x2c4 m_show+0x28/0x34 seq_read_iter+0x12c/0x3c4 vfs_read+0x29c/0x2c8 ksys_read+0x80/0xec __arm64_sys_read+0x28/0x34 invoke_syscall+0x50/0xf8 do_el0_svc+0x88/0x138 el0_svc+0x2c/0x8c el0t_64_sync_handler+0x84/0xe4 el0t_64_sync+0x198/0x19c Reason: While btrfs_prepare_sprout() moves the fs_devices::devices into fs_devices::seed_list, the btrfs_show_devname() searches for the devices and found none, leading to the warning as in above. Fix: latest_dev is updated according to the changes to the device list. That means we could use the latest_dev->name to show the device name in /proc/self/mounts, the pointer will be always valid as it's assigned before the device is deleted from the list in remove or replace. The RCU protection is sufficient as the device structure is freed after synchronization.

Why

The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently.

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 → Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition') → 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
High: exploitation depends on specific conditions
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-362

CWE-362: Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition'). The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently.

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:H/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.ACHighAttack complexity: Successful exploitation depends on specific conditions outside the attacker's direct control.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-362
A

Official authority intelligence

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

BSI · German · WID-SEC-2024-1418Linux Kernel: Mehrere Schwachstellen ermöglichen nicht spezifizierten Angriff

Ein lokaler Angreifer kann mehrere Schwachstellen im Linux Kernel ausnutzen, um einen nicht näher spezifizierten Angriff durchzuführen.

Official advisory ↗
Cyber Security Agency of Singapore · English · CSA-SB-20240626Security Bulletin 26 Jun 2024

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

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

ntu 20.04 ESM Ubuntu 24.04 LTS Résumé 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 élévation de privilèges, une atteinte à la confidentialité des données et une atteinte à l'intégrité des données. Solutions Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation). Documentation Bulletin de sécurité Ubuntu USN-8185-2 du 28 avril 2026 https://ubuntu.com/security/notices/USN-8185-2 Bulletin de sécurité Ubuntu USN-8224-1 du 29 avril 2026 https://ubuntu.com/security/notices/USN-8224-1 Référence CVE CVE-2021-47599 https://www.cve.org/CVERecord?id=CVE-2021-47599 Référence CVE CVE-2022-48875 https://www.cve.org/CVERecord?id=CVE-2022-48875 Référence CVE CVE-2022-49046 https://www.cve.org/CVERecord?id=CVE-2022-49046 Référence CVE CVE-2022-49698 https://www.cve.org/CVERecord?id=CVE-2022-49698 Référence CVE CVE-2024-36347 https://www.cve.org/CVERecord?id=CVE-2024-36347 Référence CVE CVE-2024-46816 https://www.cve.org/CVERecord?id=CVE-2024-46816 Référence CVE CVE-2024-49927 https://www.cve.org/CVERecord?id=CVE-2024-49927 Référence CVE CVE-2024-56640 https://www.cve.org/CVERecord?id=CVE-2024-56640 Référence CVE CVE-2024-57795 https://www.cve.org/CVERecord?id=

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

otices/USN-8179-3 Bulletin de sécurité Ubuntu USN-8180-3 du 23 avril 2026 https://ubuntu.com/security/notices/USN-8180-3 Bulletin de sécurité Ubuntu USN-8180-4 du 23 avril 2026 https://ubuntu.com/security/notices/USN-8180-4 Bulletin de sécurité Ubuntu USN-8183-2 du 23 avril 2026 https://ubuntu.com/security/notices/USN-8183-2 Bulletin de sécurité Ubuntu USN-8203-1 du 23 avril 2026 https://ubuntu.com/security/notices/USN-8203-1 Bulletin de sécurité Ubuntu USN-8204-1 du 23 avril 2026 https://ubuntu.com/security/notices/USN-8204-1 Bulletin de sécurité Ubuntu USN-8180-5 du 24 avril 2026 https://ubuntu.com/security/notices/USN-8180-5 Référence CVE CVE-2021-47599 https://www.cve.org/CVERecord?id=CVE-2021-47599 Référence CVE CVE-2022-48875 https://www.cve.org/CVERecord?id=CVE-2022-48875 Référence CVE CVE-2022-49046 https://www.cve.org/CVERecord?id=CVE-2022-49046 Référence CVE CVE-2022-49072 https://www.cve.org/CVERecord?id=CVE-2022-49072 Référence CVE CVE-2023-53421 https://www.cve.org/CVERecord?id=CVE-2023-53421 Référence CVE CVE-2023-53520 https://www.cve.org/CVERecord?id=CVE-2023-53520 Référence CVE CVE-2023-53662 https://www.cve.org/CVERecord?id=CVE-2023-53662 Référence CVE CVE-2023-54207 https://www.cve.org/CVERecord?id=CVE-2023-54207 Référence CVE CVE-2024-36347 https://www.cve.org/CVERecord?id=

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

rity/notices/USN-8121-1 Bulletin de sécurité Ubuntu USN-8094-4 du 25 mars 2026 https://ubuntu.com/security/notices/USN-8094-4 Bulletin de sécurité Ubuntu USN-8098-7 du 25 mars 2026 https://ubuntu.com/security/notices/USN-8098-7 Bulletin de sécurité Ubuntu USN-8098-8 du 25 mars 2026 https://ubuntu.com/security/notices/USN-8098-8 Bulletin de sécurité Ubuntu USN-8125-1 du 25 mars 2026 https://ubuntu.com/security/notices/USN-8125-1 Bulletin de sécurité Ubuntu USN-8126-1 du 25 mars 2026 https://ubuntu.com/security/notices/USN-8126-1 Bulletin de sécurité Ubuntu USN-8098-9 du 27 mars 2026 https://ubuntu.com/security/notices/USN-8098-9 Référence CVE CVE-2021-47599 https://www.cve.org/CVERecord?id=CVE-2021-47599 Référence CVE CVE-2022-48875 https://www.cve.org/CVERecord?id=CVE-2022-48875 Référence CVE CVE-2022-49072 https://www.cve.org/CVERecord?id=CVE-2022-49072 Référence CVE CVE-2022-49267 https://www.cve.org/CVERecord?id=CVE-2022-49267 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2024-36903 https://www.cve.org/CVERecord?id=CVE-2024-36903 Référence CVE CVE-2024-36927 https://www.cve.org/CVERecord?id=CVE-2024-36927 Référence CVE CVE-2024-37354 https://www.cve.org/CVERecord?id=CVE-2024-37354 Référence CVE CVE-2024-41014 https://www.cve.org/CVERecord?id=

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

rity/notices/USN-8094-2 Bulletin de sécurité Ubuntu USN-8095-3 du 17 mars 2026 https://ubuntu.com/security/notices/USN-8095-3 Bulletin de sécurité Ubuntu USN-8096-3 du 17 mars 2026 https://ubuntu.com/security/notices/USN-8096-3 Bulletin de sécurité Ubuntu USN-8096-4 du 17 mars 2026 https://ubuntu.com/security/notices/USN-8096-4 Bulletin de sécurité Ubuntu USN-8098-2 du 17 mars 2026 https://ubuntu.com/security/notices/USN-8098-2 Bulletin de sécurité Ubuntu USN-8098-3 du 18 mars 2026 https://ubuntu.com/security/notices/USN-8098-3 Bulletin de sécurité Ubuntu USN-8107-1 du 18 mars 2026 https://ubuntu.com/security/notices/USN-8107-1 Référence CVE CVE-2021-47599 https://www.cve.org/CVERecord?id=CVE-2021-47599 Référence CVE CVE-2022-48875 https://www.cve.org/CVERecord?id=CVE-2022-48875 Référence CVE CVE-2022-49072 https://www.cve.org/CVERecord?id=CVE-2022-49072 Référence CVE CVE-2022-49267 https://www.cve.org/CVERecord?id=CVE-2022-49267 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2024-36903 https://www.cve.org/CVERecord?id=CVE-2024-36903 Référence CVE CVE-2024-36927 https://www.cve.org/CVERecord?id=CVE-2024-36927 Référence CVE CVE-2024-37354 https://www.cve.org/CVERecord?id=CVE-2024-37354 Référence CVE CVE-2024-41014 https://www.cve.org/CVERecord?id=

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

rity/notices/USN-8060-5 Bulletin de sécurité Ubuntu USN-8060-6 du 04 mars 2026 https://ubuntu.com/security/notices/USN-8060-6 Bulletin de sécurité Ubuntu USN-8070-1 du 04 mars 2026 https://ubuntu.com/security/notices/USN-8070-1 Bulletin de sécurité Ubuntu USN-8070-2 du 04 mars 2026 https://ubuntu.com/security/notices/USN-8070-2 Bulletin de sécurité Ubuntu USN-8070-3 du 04 mars 2026 https://ubuntu.com/security/notices/USN-8070-3 Bulletin de sécurité Ubuntu USN-8074-1 du 04 mars 2026 https://ubuntu.com/security/notices/USN-8074-1 Bulletin de sécurité Ubuntu USN-8074-2 du 04 mars 2026 https://ubuntu.com/security/notices/USN-8074-2 Référence CVE CVE-2021-47599 https://www.cve.org/CVERecord?id=CVE-2021-47599 Référence CVE CVE-2022-48875 https://www.cve.org/CVERecord?id=CVE-2022-48875 Référence CVE CVE-2022-49267 https://www.cve.org/CVERecord?id=CVE-2022-49267 Référence CVE CVE-2022-49698 https://www.cve.org/CVERecord?id=CVE-2022-49698 Référence CVE CVE-2024-36331 https://www.cve.org/CVERecord?id=CVE-2024-36331 Référence CVE CVE-2024-36350 https://www.cve.org/CVERecord?id=CVE-2024-36350 Référence CVE CVE-2024-36357 https://www.cve.org/CVERecord?id=CVE-2024-36357 Référence CVE CVE-2024-47659 https://www.cve.org/CVERecord?id=CVE-2024-47659 Référence CVE CVE-2024-49927 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-2021-47559 Référence CVE CVE-2021-47580 https://www.cve.org/CVERecord?id=CVE-2021-47580 Référence CVE CVE-2021-47582 https://www.cve.org/CVERecord?id=CVE-2021-47582 Référence CVE CVE-2021-47588 https://www.cve.org/CVERecord?id=CVE-2021-47588 Référence CVE CVE-2021-47590 https://www.cve.org/CVERecord?id=CVE-2021-47590 Référence CVE CVE-2021-47591 https://www.cve.org/CVERecord?id=CVE-2021-47591 Référence CVE CVE-2021-47593 https://www.cve.org/CVERecord?id=CVE-2021-47593 Référence CVE CVE-2021-47597 https://www.cve.org/CVERecord?id=CVE-2021-47597 Référence CVE CVE-2021-47598 https://www.cve.org/CVERecord?id=CVE-2021-47598 Référence CVE CVE-2021-47599 https://www.cve.org/CVERecord?id=CVE-2021-47599 Référence CVE CVE-2021-47600 https://www.cve.org/CVERecord?id=CVE-2021-47600 Référence CVE CVE-2021-47606 https://www.cve.org/CVERecord?id=CVE-2021-47606 Référence CVE CVE-2021-47619 https://www.cve.org/CVERecord?id=CVE-2021-47619 Référence CVE CVE-2021-47622 https://www.cve.org/CVERecord?id=CVE-2021-47622 Référence CVE CVE-2021-47623 https://www.cve.org/CVERecord?id=CVE-2021-47623 Référence CVE CVE-2021-47624 https://www.cve.org/CVERecord?id=CVE-2021-47624 Référence CVE CVE-2022-20368 https://www.cve.org/CVERecord?id=CVE-2022-20368 Référence CVE CVE-2022-28748 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-2021-47589 Référence CVE CVE-2021-47590 https://www.cve.org/CVERecord?id=CVE-2021-47590 Référence CVE CVE-2021-47591 https://www.cve.org/CVERecord?id=CVE-2021-47591 Référence CVE CVE-2021-47592 https://www.cve.org/CVERecord?id=CVE-2021-47592 Référence CVE CVE-2021-47593 https://www.cve.org/CVERecord?id=CVE-2021-47593 Référence CVE CVE-2021-47595 https://www.cve.org/CVERecord?id=CVE-2021-47595 Référence CVE CVE-2021-47596 https://www.cve.org/CVERecord?id=CVE-2021-47596 Référence CVE CVE-2021-47597 https://www.cve.org/CVERecord?id=CVE-2021-47597 Référence CVE CVE-2021-47598 https://www.cve.org/CVERecord?id=CVE-2021-47598 Référence CVE CVE-2021-47599 https://www.cve.org/CVERecord?id=CVE-2021-47599 Référence CVE CVE-2021-47600 https://www.cve.org/CVERecord?id=CVE-2021-47600 Référence CVE CVE-2021-47601 https://www.cve.org/CVERecord?id=CVE-2021-47601 Référence CVE CVE-2021-47602 https://www.cve.org/CVERecord?id=CVE-2021-47602 Référence CVE CVE-2021-47603 https://www.cve.org/CVERecord?id=CVE-2021-47603 Référence CVE CVE-2021-47604 https://www.cve.org/CVERecord?id=CVE-2021-47604 Référence CVE CVE-2021-47605 https://www.cve.org/CVERecord?id=CVE-2021-47605 Référence CVE CVE-2021-47606 https://www.cve.org/CVERecord?id=CVE-2021-47606 Référence CVE CVE-2021-47607 https://www.cve.org/CVERecord?id=

Official advisory ↗
JVN iPedia · Japanese · JVNDB-2021-021299Linux の 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
Linux: 4faf55b03823e96c44dc4e364520000ed3b12fdb < e342c2558016ead462f376b6c6c2ac5efc17f3b1, 4faf55b03823e96c44dc4e364520000ed3b12fdb < 6605fd2f394bba0a0059df2b6cfc87b0b6d393a2, fa511954694cbea4d0cb59c81c8670276920c08c, 3d3452920cacc3a46444ecca26af5d181410ff19, ca21728e18d34fd5f449bb0581160e0eaee498a6, 1c986b7e8c1bf8fabbc294036b003286cc3a8c7e, 4.19.141 < 4.20, 5.4.60 < 5.5, 5.7.17 < 5.8, 5.8.3 < 5.9, 5.9
Fixed
Linux: < 5.9, 5.15.11 ≤ 5.15.*, 5.16 ≤ *
Action
Review the linked authoritative reference and apply the recorded fixed release appropriate to the affected product branch.
Workaround
No verified workaround is recorded. Limit untrusted access and use least privilege until authoritative guidance is available.
04

Evidence and provenance

Published 19 Jun 2024 · Last source change 23 May 2026, 15:20 UTC · CWE-362 · Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')

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-2021-34601
Product sourceCNA
Remediation sourceCVE/CNA references
CWE sourceNIST NVD
NVD statusNVD modified after enrichment

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-2021-47599 · cve.blacktree.nl