Cyber Resilience

CVE-2026-35342

Uutils Coreutils ≤ 0.6.0

Published
22 April 2026
Modified
04 May 2026
Patch / advisory
CVSS Score v3.1 3.3
Click a component to see what it means
Raw vectorCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
EPSS Score 0.0013 3th percentile
Risk Priority 15 floored blend · peak EPSS

Summary

CVE-2026-35342 is a low-severity Insecure Temporary File (CWE-377) vulnerability in Uutils Coreutils. Its CVSS base score is 3.3 (Low).

Operationally, exploitation aligns with the MITRE ATT&CK technique Data from Local System (T1005); ranked at the 3th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified map to SI-10 (Information Input Validation) and AC-6 (Least Privilege) — see the control section below for these in your framework.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

The mktemp utility in uutils coreutils fails to properly handle an empty TMPDIR environment variable. Unlike GNU mktemp, which falls back to /tmp when TMPDIR is an empty string, the uutils implementation treats the empty string as a valid path.…

more

This causes temporary files to be created in the current working directory (CWD) instead of the intended secure temporary directory. If the CWD is more permissive or accessible to other users than /tmp, it may lead to unintended information disclosure or unauthorized access to temporary data.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1005 Data from Local System Collection
Adversaries may search local system sources, such as file systems, configuration files, local databases, virtual machine files, or process memory, to find files of interest and sensitive data prior to Exfiltration.
Why these techniques?

Insecure temp file creation in CWD due to empty TMPDIR mishandling directly enables unauthorized local access to temporary data.

Confidence: MEDIUM · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-35367Same product: Uutils Coreutils
CVE-2026-35352Same product: Uutils Coreutils
CVE-2026-35355Same product: Uutils Coreutils
CVE-2026-35369Same product: Uutils Coreutils
CVE-2026-35349Same product: Uutils Coreutils
CVE-2026-35350Same product: Uutils Coreutils
CVE-2026-35371Same product: Uutils Coreutils
CVE-2026-35347Same product: Uutils Coreutils
CVE-2026-35370Same product: Uutils Coreutils
CVE-2026-35344Same product: Uutils Coreutils

Affected Assets

uutils
coreutils
≤ 0.6.0

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • SI-10 Information Input Validation
  • AC-6 Least Privilege
  • CM-6 Configuration Settings
Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires validation of environment variable inputs such as TMPDIR before use in temporary file operations, preventing the empty-string path from being accepted.

prevent

Limits privileges of processes using mktemp so that even if files land in the CWD the exposure or modification surface remains minimal.

prevent

Enforces secure baseline settings for TMPDIR and temporary-directory handling, ensuring the utility never receives an empty value that triggers CWD fallback.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices directly require avoiding insecure temp-file creation patterns.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

detects

Security testing can detect insecure temporary files but does not prevent their creation.

prevents

Secure development life cycle mandates secure handling of temporary files during design and coding.

prevents

Application security requirements can specify secure temporary-file creation and access controls.

prevents

Secure system architecture principles discourage insecure temporary-file patterns but do not directly address them.

prevents

Secure coding standards explicitly require safe temporary-file APIs and permissions.

none

Information deletion policies may cover secure removal of temporary files after use.

References