BlackTreeIndependent security intelligence
← Back to the CVE catalogue
Full vulnerability report · 2021
CVE-2021-37701High confidence

Arbitrary File Creation/Overwrite via insufficient symlink protection due to directory cache poisoning using symbolic links

npm · node-tar

8.2HighCVSS 3.1
Recommended action
Within 7 days

High technical severity; prioritise exposed affected systems while verifying vendor guidance.

Patch available
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.

1 current
SSA-389290 · CSAF 2.0 · revision 1 · finalSiemens ProductCERTSSA-389290: Third-Party Component Vulnerabilities in SINEC INS
1 known affected

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

  • SINEC INS
Summary
The npm package "tar" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both \ and / characters as path separators, however \ is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at FOO, followed by a symbolic link named foo, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the FOO directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.
Remediation
Update to V1.0.1.1 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-2021-1668

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 actionWithin 7 days

High technical severity; prioritise exposed affected systems while verifying vendor guidance.

Patch available
01

What, why and how

The npm package "tar" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\` and `/` characters as path separators, however `\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.

What

The npm package "tar" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\` and `/` characters as path separators, however `\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.

Why

Attacker-controlled path data is not constrained to the intended directory before the application accesses a file.

How

An attacker operating through local access may attempt exploitation without authentication after a user interaction. If successful, the issue may execute code or commands in the affected security context.

What

The npm package "tar" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\` and `/` characters as path separators, however `\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.

Why

Attacker-controlled path data is not constrained to the intended directory before the application accesses a file.

How

An attacker operating through local access may attempt exploitation without authentication after a user interaction. If successful, the issue may execute code or commands in the affected security context.

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 → Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') → execute code or commands in the affected security context
Attack surface
Local
Privileges required
None: unauthenticated exploitation is possible
User interaction
Required interaction required
Attack complexity
Low: no specialised conditions are recorded
Security boundary
Changed: exploitation can affect a different security authority
Weakness
?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-22

CWE-22: Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal'). The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.

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:N/UI:R/S:C/C:H/I:H/A:N

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.PRNonePrivileges required: The attacker does not need an account or existing privileges.UIRequiredUser interaction: Another user must perform an action for exploitation to succeed.SChangedScope: The attack can affect a component governed by a different security authority.CHighConfidentiality impact: A successful attack can cause a major loss.IHighIntegrity impact: A successful attack can cause a major loss.ANoneAvailability impact: No direct loss is represented by this metric.
Post-exploitation / living off the land
After compromise, an attacker may use built-in shells, scripting engines, scheduled tasks and native network utilities for discovery, persistence or movement. This is a plausible LoTL path, not evidence that it has occurred for every attack.
UnauthenticatedRemote code executionCWE-22
A

Official authority intelligence

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

BSI · German · WID-SEC-W-2023-0809IBM QRadar SIEM: Mehrere Schwachstellen

Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in IBM QRadar SIEM ausnutzen, um beliebigen Programmcode auszuführen, Informationen offenzulegen, Informationen falsch darzustellen, einen Denial of Service Zustand herbeizuführen, Sicherheitsvorkehrungen zu umgehen, einen Cross-Site-Scripting-Angriff durchzuführen oder unbekannte Auswirkungen zu verursachen.

Official advisory
BSI · German · WID-SEC-W-2022-1603IBM Tivoli Netcool/OMNIbus: Mehrere Schwachstellen

Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in IBM Tivoli Netcool/OMNIbus ausnutzen, um beliebigen Programmcode auszuführen, Informationen offenzulegen, Dateien zu manipulieren oder einen Denial of Service Zustand herbeizuführen.

Official advisory
BSI · German · WID-SEC-W-2023-0856IBM QRadar SIEM: Mehrere Schwachstellen

Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in IBM QRadar SIEM ausnutzen, um die Vertraulichkeit, Integrität und Verfügbarkeit zu gefährden.

Official advisory
BSI · German · WID-SEC-W-2023-0857IBM QRadar SIEM: Mehrere Schwachstellen

Ein lokaler Angreifer kann mehrere Schwachstellen in IBM QRadar SIEM ausnutzen, um beliebigen Programmcode auszuführen, einen Denial of Service Zustand herbeizuführen, Dateien manipulieren oder Sicherheitsvorkehrungen zu umgehen.

Official advisory
BSI · German · WID-SEC-W-2022-0092Node.js: Mehrere Schwachstellen ermöglichen Manipulation von Dateien

Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in Node.js ausnutzen, um Dateien zu manipulieren.

Official advisory
BSI · German · WID-SEC-W-2024-1591Juniper JUNOS: Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in Juniper JUNOS ausnutzen, um einen Denial of Service zu verursachen, Informationen offenzulegen, Privilegien zu erweitern und Sicherheitsmechanismen inklusive zu umgehen.

Official advisory
CERT-FR · French · CERTFR-2024-AVI-0575Multiples vulnérabilités dans les produits Juniper Networks

ord?id=CVE-2021-33033 Référence CVE CVE-2021-33034 https://www.cve.org/CVERecord?id=CVE-2021-33034 Référence CVE CVE-2021-33193 https://www.cve.org/CVERecord?id=CVE-2021-33193 Référence CVE CVE-2021-3347 https://www.cve.org/CVERecord?id=CVE-2021-3347 Référence CVE CVE-2021-33909 https://www.cve.org/CVERecord?id=CVE-2021-33909 Référence CVE CVE-2021-34798 https://www.cve.org/CVERecord?id=CVE-2021-34798 Référence CVE CVE-2021-35604 https://www.cve.org/CVERecord?id=CVE-2021-35604 Référence CVE CVE-2021-35624 https://www.cve.org/CVERecord?id=CVE-2021-35624 Référence CVE CVE-2021-36160 https://www.cve.org/CVERecord?id=CVE-2021-36160 Référence CVE CVE-2021-37701 https://www.cve.org/CVERecord?id=CVE-2021-37701 Référence CVE CVE-2021-37712 https://www.cve.org/CVERecord?id=CVE-2021-37712 Référence CVE CVE-2021-37713 https://www.cve.org/CVERecord?id=CVE-2021-37713 Référence CVE CVE-2021-3803 https://www.cve.org/CVERecord?id=CVE-2021-3803 Référence CVE CVE-2021-39275 https://www.cve.org/CVERecord?id=CVE-2021-39275 Référence CVE CVE-2021-40438 https://www.cve.org/CVERecord?id=CVE-2021-40438 Référence CVE CVE-2021-41524 https://www.cve.org/CVERecord?id=CVE-2021-41524 Référence CVE CVE-2021-41773 https://www.cve.org/CVERecord?id=CVE-2021-41773 Référence CVE CVE-2021-42013 https://www.cve.org/CVERecord?id=CV

Official advisory
CERT-FR · French · CERTFR-2023-AVI-0976Multiples vulnérabilités dans les produits IBM

ecord?id=CVE-2021-32803 Référence CVE CVE-2021-32804 https://www.cve.org/CVERecord?id=CVE-2021-32804 Référence CVE CVE-2021-33195 https://www.cve.org/CVERecord?id=CVE-2021-33195 Référence CVE CVE-2021-33196 https://www.cve.org/CVERecord?id=CVE-2021-33196 Référence CVE CVE-2021-33197 https://www.cve.org/CVERecord?id=CVE-2021-33197 Référence CVE CVE-2021-33198 https://www.cve.org/CVERecord?id=CVE-2021-33198 Référence CVE CVE-2021-3426 https://www.cve.org/CVERecord?id=CVE-2021-3426 Référence CVE CVE-2021-36221 https://www.cve.org/CVERecord?id=CVE-2021-36221 Référence CVE CVE-2021-3737 https://www.cve.org/CVERecord?id=CVE-2021-3737 Référence CVE CVE-2021-37701 https://www.cve.org/CVERecord?id=CVE-2021-37701 Référence CVE CVE-2021-37712 https://www.cve.org/CVERecord?id=CVE-2021-37712 Référence CVE CVE-2021-37713 https://www.cve.org/CVERecord?id=CVE-2021-37713 Référence CVE CVE-2021-38297 https://www.cve.org/CVERecord?id=CVE-2021-38297 Référence CVE CVE-2021-39008 https://www.cve.org/CVERecord?id=CVE-2021-39008 Référence CVE CVE-2021-39293 https://www.cve.org/CVERecord?id=CVE-2021-39293 Référence CVE CVE-2021-41771 https://www.cve.org/CVERecord?id=CVE-2021-41771 Référence CVE CVE-2021-41772 https://www.cve.org/CVERecord?id=CVE-2021-41772 Référence CVE CVE-2021-4189 https://www.cve.org/CVERecord?id=C

Official advisory
CERT-FR · French · CERTFR-2023-AVI-0276Multiples vulnérabilités dans les produits IBM

ecord?id=CVE-2021-25220 Référence CVE CVE-2021-26401 https://www.cve.org/CVERecord?id=CVE-2021-26401 Référence CVE CVE-2021-29060 https://www.cve.org/CVERecord?id=CVE-2021-29060 Référence CVE CVE-2021-32803 https://www.cve.org/CVERecord?id=CVE-2021-32803 Référence CVE CVE-2021-32804 https://www.cve.org/CVERecord?id=CVE-2021-32804 Référence CVE CVE-2021-3677 https://www.cve.org/CVERecord?id=CVE-2021-3677 Référence CVE CVE-2021-37136 https://www.cve.org/CVERecord?id=CVE-2021-37136 Référence CVE CVE-2021-37137 https://www.cve.org/CVERecord?id=CVE-2021-37137 Référence CVE CVE-2021-3765 https://www.cve.org/CVERecord?id=CVE-2021-3765 Référence CVE CVE-2021-37701 https://www.cve.org/CVERecord?id=CVE-2021-37701 Référence CVE CVE-2021-37712 https://www.cve.org/CVERecord?id=CVE-2021-37712 Référence CVE CVE-2021-37713 https://www.cve.org/CVERecord?id=CVE-2021-37713 Référence CVE CVE-2021-3807 https://www.cve.org/CVERecord?id=CVE-2021-3807 Référence CVE CVE-2021-3918 https://www.cve.org/CVERecord?id=CVE-2021-3918 Référence CVE CVE-2021-39227 https://www.cve.org/CVERecord?id=CVE-2021-39227 Référence CVE CVE-2021-42581 https://www.cve.org/CVERecord?id=CVE-2021-42581 Référence CVE CVE-2021-42740 https://www.cve.org/CVERecord?id=CVE-2021-42740 Référence CVE CVE-2021-43797 https://www.cve.org/CVERecord?id=CVE-

Official advisory
CERT-FR · French · CERTFR-2022-AVI-928Multiples vulnérabilités dans les produits IBM

g/CVERecord?id=CVE-2021-32803 Référence CVE CVE-2021-32804 https://www.cve.org/CVERecord?id=CVE-2021-32804 Référence CVE CVE-2021-33502 https://www.cve.org/CVERecord?id=CVE-2021-33502 Référence CVE CVE-2021-34538 https://www.cve.org/CVERecord?id=CVE-2021-34538 Référence CVE CVE-2021-3711 https://www.cve.org/CVERecord?id=CVE-2021-3711 Référence CVE CVE-2021-3712 https://www.cve.org/CVERecord?id=CVE-2021-3712 Référence CVE CVE-2021-3733 https://www.cve.org/CVERecord?id=CVE-2021-3733 Référence CVE CVE-2021-3737 https://www.cve.org/CVERecord?id=CVE-2021-3737 Référence CVE CVE-2021-3765 https://www.cve.org/CVERecord?id=CVE-2021-3765 Référence CVE CVE-2021-37701 https://www.cve.org/CVERecord?id=CVE-2021-37701 Référence CVE CVE-2021-37712 https://www.cve.org/CVERecord?id=CVE-2021-37712 Référence CVE CVE-2021-37713 https://www.cve.org/CVERecord?id=CVE-2021-37713 Référence CVE CVE-2021-3807 https://www.cve.org/CVERecord?id=CVE-2021-3807 Référence CVE CVE-2021-3918 https://www.cve.org/CVERecord?id=CVE-2021-3918 Référence CVE CVE-2021-4160 https://www.cve.org/CVERecord?id=CVE-2021-4160 Référence CVE CVE-2021-4189 https://www.cve.org/CVERecord?id=CVE-2021-4189 Référence CVE CVE-2021-43138 https://www.cve.org/CVERecord?id=CVE-2021-43138 Référence CVE CVE-2021-44906 https://www.cve.org/CVERecord?id=CVE-2021

Official advisory
CERT-FR · French · CERTFR-2022-AVI-924Multiples vulnérabilités dans IBM QRadar

ord?id=CVE-2021-22959 Référence CVE CVE-2021-22960 https://www.cve.org/CVERecord?id=CVE-2021-22960 Référence CVE CVE-2021-23337 https://www.cve.org/CVERecord?id=CVE-2021-23337 Référence CVE CVE-2021-23346 https://www.cve.org/CVERecord?id=CVE-2021-23346 Référence CVE CVE-2021-23566 https://www.cve.org/CVERecord?id=CVE-2021-23566 Référence CVE CVE-2021-32803 https://www.cve.org/CVERecord?id=CVE-2021-32803 Référence CVE CVE-2021-32804 https://www.cve.org/CVERecord?id=CVE-2021-32804 Référence CVE CVE-2021-33502 https://www.cve.org/CVERecord?id=CVE-2021-33502 Référence CVE CVE-2021-3765 https://www.cve.org/CVERecord?id=CVE-2021-3765 Référence CVE CVE-2021-37701 https://www.cve.org/CVERecord?id=CVE-2021-37701 Référence CVE CVE-2021-37712 https://www.cve.org/CVERecord?id=CVE-2021-37712 Référence CVE CVE-2021-37713 https://www.cve.org/CVERecord?id=CVE-2021-37713 Référence CVE CVE-2021-3807 https://www.cve.org/CVERecord?id=CVE-2021-3807 Référence CVE CVE-2021-3918 https://www.cve.org/CVERecord?id=CVE-2021-3918 Référence CVE CVE-2021-44906 https://www.cve.org/CVERecord?id=CVE-2021-44906 Référence CVE CVE-2021-44907 https://www.cve.org/CVERecord?id=CVE-2021-44907 Référence CVE CVE-2022-0155 https://www.cve.org/CVERecord?id=CVE-2022-0155 Référence CVE CVE-2022-0536 https://www.cve.org/CVERecord?id=CVE-202

Official advisory
CERT-FR · French · CERTFR-2022-AVI-510Multiples vulnérabilités dans IBM QRadar

ord?id=CVE-2021-22939 Référence CVE CVE-2021-22940 https://www.cve.org/CVERecord?id=CVE-2021-22940 Référence CVE CVE-2021-23343 https://www.cve.org/CVERecord?id=CVE-2021-23343 Référence CVE CVE-2021-23362 https://www.cve.org/CVERecord?id=CVE-2021-23362 Référence CVE CVE-2021-27290 https://www.cve.org/CVERecord?id=CVE-2021-27290 Référence CVE CVE-2021-32803 https://www.cve.org/CVERecord?id=CVE-2021-32803 Référence CVE CVE-2021-32804 https://www.cve.org/CVERecord?id=CVE-2021-32804 Référence CVE CVE-2021-33502 https://www.cve.org/CVERecord?id=CVE-2021-33502 Référence CVE CVE-2021-3672 https://www.cve.org/CVERecord?id=CVE-2021-3672 Référence CVE CVE-2021-37701 https://www.cve.org/CVERecord?id=CVE-2021-37701 Référence CVE CVE-2021-37712 https://www.cve.org/CVERecord?id=CVE-2021-37712 Référence CVE CVE-2021-37713 https://www.cve.org/CVERecord?id=CVE-2021-37713 Référence CVE CVE-2021-3807 https://www.cve.org/CVERecord?id=CVE-2021-3807 Référence CVE CVE-2021-3918 https://www.cve.org/CVERecord?id=CVE-2021-3918 Gestion détaillée du document le 01 juin 2022 Version initiale Alertes Avis Bulletins d’actualités Mentions légales Conditions générales À propos Contact cyber.gouv.fr service-public.fr legifrance.gouv.fr info.gouv.fr france.fr info.gouv.fr/risques Premier Ministre / Secrétariat Général de la Déf

Official advisory
CERT-FR · French · CERTFR-2022-AVI-494Multiples vulnérabilités dans les produits IBM

De multiples vulnérabilités ont été découvertes dans les produits IBM. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, un déni de service à distance et un contournement de la politique de sécurité.

Official advisory
CERT-FR · French · CERTFR-2022-AVI-413Multiples vulnérabilités dans Belden Provize Basic

De multiples vulnérabilités ont été découvertes dans Belden Provize Basic. Elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, un déni de service à distance et une atteinte à l'intégrité des données.

Official advisory
CERT-FR · French · CERTFR-2022-AVI-216Multiples vulnérabilités dans les produits Siemens

g/CVERecord?id=CVE-2021-32950 Référence CVE CVE-2021-32952 https://www.cve.org/CVERecord?id=CVE-2021-32952 Référence CVE CVE-2021-3449 https://www.cve.org/CVERecord?id=CVE-2021-3449 Référence CVE CVE-2021-3450 https://www.cve.org/CVERecord?id=CVE-2021-3450 Référence CVE CVE-2021-3672 https://www.cve.org/CVERecord?id=CVE-2021-3672 Référence CVE CVE-2021-3711 https://www.cve.org/CVERecord?id=CVE-2021-3711 Référence CVE CVE-2021-3712 https://www.cve.org/CVERecord?id=CVE-2021-3712 Référence CVE CVE-2021-37208 https://www.cve.org/CVERecord?id=CVE-2021-37208 Référence CVE CVE-2021-37209 https://www.cve.org/CVERecord?id=CVE-2021-37209 Référence CVE CVE-2021-37701 https://www.cve.org/CVERecord?id=CVE-2021-37701 Référence CVE CVE-2021-37712 https://www.cve.org/CVERecord?id=CVE-2021-37712 Référence CVE CVE-2021-37713 https://www.cve.org/CVERecord?id=CVE-2021-37713 Référence CVE CVE-2021-39134 https://www.cve.org/CVERecord?id=CVE-2021-39134 Référence CVE CVE-2021-39135 https://www.cve.org/CVERecord?id=CVE-2021-39135 Référence CVE CVE-2021-40366 https://www.cve.org/CVERecord?id=CVE-2021-40366 Référence CVE CVE-2021-41541 https://www.cve.org/CVERecord?id=CVE-2021-41541 Référence CVE CVE-2021-41542 https://www.cve.org/CVERecord?id=CVE-2021-41542 Référence CVE CVE-2021-41543 https://www.cve.org/CVERecord?id=

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
SINEC INS
Fixed
An authoritative update reference is available, but the fixed version is not recorded in the structured CVE fields. Check the linked vendor advisory for the applicable release.
Action
Update to V1.0.1.1 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 31 Aug 2021 · Last source change 4 Aug 2024, 01:23 UTC · CWE-22 · Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')

CVE recordCVE.org · 5.1
CVSS sourceCNA
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-1668
Product sourceVendor CSAF · Siemens ProductCERT
Remediation sourceVendor CSAF · Siemens ProductCERT
CWE sourceCNA
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-37701 · cve.blacktree.nl