Latest CVE Feed

Vulnerabilities published in the last 30 days. Filter by severity, exploit status, or attack vector.

Score
Vulnerability
Published
4.4 MEDIUM
CVE-2026-35358 — uutils coreutils cp Semantic Loss and Potential Denial of Service with -R via Device Node…

The cp utility in uutils coreutils, when performing recursive copies (-R), incorrectly treats character and block device nodes as stream sources rather than preserving them. Because the implementatio…

| Denial of Service
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
4.7 MEDIUM
CVE-2026-35357 — uutils coreutils cp Information Disclosure via Permission Handling Race

The cp utility in uutils coreutils is vulnerable to an information disclosure race condition. Destination files are initially created with umask-derived permissions (e.g., 0644) before being restrict…

| Race Condition
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
6.3 MEDIUM
CVE-2026-35356 — uutils coreutils install Arbitrary File Overwrite with -D via Path Component Symlink Race

A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the install utility of uutils coreutils when using the -D flag. The command creates parent directories and subsequently performs a seco…

| Race Condition
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
6.3 MEDIUM
CVE-2026-35355 — uutils coreutils install Arbitrary File Overwrite via Symlink TOCTOU Race

The install utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file installation. The implementation unlinks an existing destination file and t…

| Race Condition
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
4.7 MEDIUM
CVE-2026-35354 — uutils coreutils mv Security Xattr TOCTOU Race in Cross-Device

A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the mv utility of uutils coreutils during cross-device moves. The extended attribute (xattr) preservation logic uses multiple path-base…

| Race Condition
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
3.3 LOW
CVE-2026-35353 — uutils coreutils mkdir Permission Exposure Race Condition with -m

The mkdir utility in uutils coreutils incorrectly applies permissions when using the -m flag by creating a directory with umask-derived permissions (typically 0755) before subsequently changing them …

| Race Condition
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
7.0 HIGH
CVE-2026-35352 — uutils coreutils mkfifo Privilege Escalation via TOCTOU Race Condition

A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mkfifo utility of uutils coreutils. The utility creates a FIFO and then performs a path-based chmod to set permissions. A local at…

| Race Condition
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
4.2 MEDIUM
CVE-2026-35351 — uutils coreutils mv Silent Ownership Loss in Cross-Device Operations

The mv utility in uutils coreutils fails to preserve file ownership during moves across different filesystem boundaries. The utility falls back to a copy-and-delete routine that creates the destinati…

| Misconfiguration
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
6.6 MEDIUM
CVE-2026-35350 — uutils coreutils cp Unexpected Privileged Executable Creation with -p

The cp utility in uutils coreutils fails to properly handle setuid and setgid bits when ownership preservation fails. When copying with the -p (preserve) flag, the utility applies the source mode bit…

| Misconfiguration
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
6.7 MEDIUM
CVE-2026-35349 — uutils coreutils Path-Based Safety Bypass with --preserve-root

A vulnerability in the rm utility of uutils coreutils allows a bypass of the --preserve-root protection. The implementation uses a path-string check rather than comparing device and inode numbers to …

| Path Traversal
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
5.5 MEDIUM
CVE-2026-35348 — uutils coreutils sort Local Denial of Service via Forced UTF-8 Parsing

The sort utility in uutils coreutils is vulnerable to a process panic when using the --files0-from option with inputs containing non-UTF-8 filenames. The implementation enforces UTF-8 encoding and ut…

| Misconfiguration
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
4.4 MEDIUM
CVE-2026-35347 — uutils coreutils comm Silent Data Loss or Denial of Service via Improper Input Validation

The comm utility in uutils coreutils incorrectly consumes data from non-regular file inputs before performing comparison operations. The are_files_identical function opens and reads from both input p…

| Denial of Service
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
3.3 LOW
CVE-2026-35346 — uutils coreutils comm Silent Data Corruption via Lossy UTF-8 Normalization

The comm utility in uutils coreutils silently corrupts data by performing lossy UTF-8 conversion on all output lines. The implementation uses String::from_utf8_lossy(), which replaces invalid UTF-8 b…

| Information Disclosure
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
5.3 MEDIUM
CVE-2026-35345 — uutils coreutils tail Privileged Information Disclosure via Symlink Replacement Race

A vulnerability in the tail utility of uutils coreutils allows for the exfiltration of sensitive file contents when using the --follow=name option. Unlike GNU tail, the uutils implementation continue…

| Path Traversal
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
3.3 LOW
CVE-2026-35344 — uutils coreutils dd Silent Data Corruption via Unconditional Truncation Error Suppression

The dd utility in uutils coreutils suppresses errors during file truncation operations by unconditionally calling Result::ok() on truncation attempts. While intended to mimic GNU behavior for special…

| Misconfiguration
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
3.3 LOW
CVE-2026-35343 — uutils coreutils cut Inconsistent Output Suppression with Newline Delimiters

The cut utility in uutils coreutils incorrectly handles the -s (only-delimited) option when a newline character is specified as the delimiter. The implementation fails to verify the only_delimited fl…

| Misconfiguration
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
3.3 LOW
CVE-2026-35342 — uutils coreutils mktemp Insecure Temporary File Placement via Empty TMPDIR

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 implementa…

| Misconfiguration
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
7.1 HIGH
CVE-2026-35341 — uutils coreutils mkfifo Unauthorized Permission Change on Existing Files

A vulnerability in uutils coreutils mkfifo allows for the unauthorized modification of permissions on existing files. When mkfifo fails to create a FIFO because a file already exists at the target pa…

| Authorization
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
5.5 MEDIUM
CVE-2026-35340 — uutils coreutils chown and chgrp False Success Exit Code in Recursive Mode

A flaw in the ChownExecutor used by uutils coreutils chown and chgrp causes the utilities to return an incorrect exit code during recursive operations. The final exit code is determined only by the l…

| Authorization
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
5.5 MEDIUM
CVE-2026-35339 — uutils coreutils chmod False Success Exit Code in Recursive Mode

The recursive mode (-R) of the chmod utility in uutils coreutils incorrectly handles exit codes when processing multiple files. The final return value is determined solely by the success or failure o…

| Misconfiguration
Apr 22, 2026 Apr 22, 2026
Apr 22, 2026
Apr 22, 2026
Showing 20 of 6466 Results