coreutils
Cross-platform Rust rewrite of the GNU coreutils
Activity
- Latest release
- 1w ago
- Total releases
- 41
- Cadence
- ~2 months
- Last 12 months
- 9
Reach
- Downloads
- 92.7k
- Stars
- 24.0k
Details
- License
- MIT
- First release
- Sep 28, 2019
| Version | Released | |
|---|---|---|
0.11.0
minor
|
0.11.0
minor
Dependencies (147)
+ 139 more
Changelog
Compare changes
|
|
0.10.0
minor
|
0.10.0
minor
Dependencies (147)
+ 139 more
Changelog
Compare changes
|
|
0.9.0
unknown
|
0.9.0
unknown
Dependencies (147)
+ 139 more
Changelog
Compare changes
|
|
0.8.0
unknown
16 CVEs
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.8.0
unknown
Dependencies (146)
+ 138 more
Changelog
Compare changes
|
|
0.7.0
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.7.0
unknown
Dependencies (142)
+ 134 more
Changelog
Compare changes
|
|
0.6.0
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.6.0
unknown
Dependencies (143)
+ 135 more
Changelog
Compare changes
|
|
0.5.0
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.5.0
unknown
Dependencies (136)
+ 128 more
Changelog
Compare changes
|
|
0.4.0
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.4.0
unknown
Dependencies (136)
+ 128 more
Changelog
Compare changes
|
|
0.3.0
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.3.0
unknown
Dependencies (136)
+ 128 more
Changelog
Compare changes
|
|
0.2.2
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.2.2
unknown
Dependencies (136)
+ 128 more
Changelog
Compare changes
|
|
0.2.0
unknown
yanked
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.2.0
unknown
yanked
Dependencies (136)
+ 128 more
Changelog
Compare changes
|
|
0.1.0
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.1.0
unknown
Dependencies (137)
+ 129 more
Changelog
Compare changes
|
|
0.0.30
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.30
unknown
Dependencies (135)
+ 127 more
Changelog
Compare changes
|
|
0.0.29
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.29
unknown
Dependencies (137)
+ 129 more
Changelog
Compare changes
|
|
0.0.28
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.28
unknown
Dependencies (137)
+ 129 more
Changelog
Compare changes
|
|
0.0.27
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.27
unknown
Dependencies (137)
+ 129 more
Changelog
Compare changes
|
|
0.0.26
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.26
unknown
Dependencies (134)
+ 126 more
Changelog
Compare changes
|
|
0.0.25
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.25
unknown
Dependencies (134)
+ 126 more
Changelog
Compare changes
|
|
0.0.24
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.24
unknown
Dependencies (134)
+ 126 more
Changelog
Compare changes
|
|
0.0.23
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.23
unknown
Dependencies (133)
+ 125 more
Changelog
Compare changes
|
|
0.0.22
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.22
unknown
Dependencies (133)
+ 125 more
Changelog
Compare changes
|
|
0.0.21
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.21
unknown
Dependencies (135)
+ 127 more
Changelog
Compare changes
|
|
0.0.20
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.20
unknown
Dependencies (135)
+ 127 more
Changelog
Compare changes
|
|
0.0.19
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.19
unknown
Dependencies (136)
+ 128 more
Changelog
Compare changes
|
|
0.0.18
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.18
unknown
Dependencies (135)
+ 127 more
Changelog
Compare changes
|
|
0.0.17
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.16
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.15
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.14
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.13
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.12
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.9
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.8
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.7
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.6
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.5
unknown
yanked
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev | ||
0.0.4
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.4
unknown
Dependencies (117)
+ 109 more
Changelog
Compare changes
|
|
0.0.3
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.3
unknown
Dependencies (117)
+ 109 more
Changelog
Compare changes
|
|
0.0.2
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.2
unknown
Dependencies (116)
+ 108 more
Changelog
Compare changes
|
|
0.0.1
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |
0.0.1
unknown
Dependencies (111)
+ 103 more
Changelog
Compare changes
|
|
0.0.0
unknown
21 CVEs
CVE-2026-35375
GHSA-vx9m-xjwf-8cqm
Apr 22, 2026
uutils coreutils has an Improper Handling of Unicode Encoding Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the split utility of uutils coreutils causes the corruption of output filenames when provided with non-UTF-8 prefix or suffix inputs. The implementation utilizes to_string_lossy() when constructing chunk filenames, which automatically rewrites invalid byte sequences into the UTF-8 replacement character (U+FFFD). This behavior diverges from GNU split, which preserves raw pathname bytes intact. In environments utilizing non-UTF-8 encodings, this vulnerability leads to the creation of files with incorrect names, potentially causing filename collisions, broken automation, or the misdirection of output data. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35376
GHSA-6g8r-74qp-6859
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.5
/ 10
Medium
Local
High
Low
None
Unchanged
Low
Low
Low
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the chcon utility of uutils coreutils during recursive operations. The implementation resolves recursive targets using a fresh path lookup (via fts_accpath) rather than binding the traversal and label application to the specific directory state encountered during traversal. Because these operations are not anchored to file descriptors, a local attacker with write access to a directory tree can exploit timing-sensitive rename or symbolic link races to redirect a privileged recursive relabeling operation to unintended files or directories. This vulnerability breaks the hardening expectations for SELinux administration workflows and can lead to the unauthorized modification of security labels on sensitive system objects. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35380
GHSA-m2pg-c7m6-77pj
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its cut Utility
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
High
None
A logic error in the cut utility of uutils coreutils causes the program to incorrectly interpret the literal two-byte string '' (two single quotes) as an empty delimiter. The implementation mistakenly maps this string to the NUL character for both the -d (delimiter) and --output-delimiter options. This vulnerability can lead to silent data corruption or logic errors in automated scripts and data pipelines that process strings containing these characters, as the utility may unintentionally split or join data on NUL bytes rather than the intended literal characters. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35372
GHSA-wq63-vh5h-pr5p
Apr 22, 2026
uutils coreutils has a UNIX Symbolic Link (Symlink) Following issue
5.0
/ 10
Medium
Local
Low
Low
Required
Unchanged
None
High
None
A logic error in the ln utility of uutils coreutils allows the utility to dereference a symbolic link target even when the --no-dereference (or -n) flag is explicitly provided. The implementation previously only honored the "no-dereference" intent if the --force (overwrite) mode was also enabled. This flaw causes ln to follow a symbolic link that points to a directory and create new links inside that target directory instead of treating the symbolic link itself as the destination. In environments where a privileged user or system script uses ln -n to update a symlink, a local attacker could manipulate existing symbolic links to redirect file creation into sensitive directories, potentially leading to unauthorized file creation or system misconfiguration. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35379
GHSA-fhr3-xh3q-69w6
Apr 22, 2026
uutils coreutils has an Incorrect Provision of Specified Functionality Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
A logic error in the tr utility of uutils coreutils causes the program to incorrectly define the [:graph:] and [:print:] character classes. The implementation mistakenly includes the ASCII space character (0x20) in the [:graph:] class and excludes it from the [:print:] class, effectively reversing the standard behavior established by POSIX and GNU coreutils. This vulnerability leads to unintended data modification or loss when the utility is used in automated scripts or data-cleaning pipelines that rely on standard character class semantics. For example, a command executed to delete all graphical characters while intending to preserve whitespace will incorrectly delete all ASCII spaces, potentially resulting in data corruption or logic failures in downstream processing. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35374
GHSA-4wrp-79m8-9m9p
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability exists in the split utility of uutils coreutils. The program attempts to prevent data loss by checking for identity between input and output files using their file paths before initiating the split operation. However, the utility subsequently opens the output file with truncation after this path-based validation is complete. A local attacker with write access to the directory can exploit this race window by manipulating mutable path components (e.g., swapping a path with a symbolic link). This can cause split to truncate and write to an unintended target file, potentially including the input file itself or other sensitive files accessible to the process, leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35378
GHSA-5pv5-xh52-hvrp
Apr 22, 2026
uutils coreutils has an Incorrect Short Circuit Evaluation Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the expr utility of uutils coreutils causes the program to evaluate parenthesized subexpressions during the parsing phase rather than at the execution phase. This implementation flaw prevents the utility from performing proper short-circuiting for logical OR (|) and AND (&) operations. As a result, arithmetic errors (such as division by zero) occurring within "dead" branches, branches that should be ignored due to short-circuiting, are raised as fatal errors. This divergence from GNU expr behavior can cause guarded expressions within shell scripts to fail with hard errors instead of returning expected boolean results, leading to premature script termination and breaking GNU-compatible shell control flow. Fixed in
0.8.0
References Updated May 05, 2026 · Source: OSV.dev
CVE-2026-35377
GHSA-5v4g-vw9x-h534
Apr 22, 2026
uutils coreutils has an Improper Input Validation Issue in its env Utility
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
None
Low
A logic error in the env utility of uutils coreutils causes a failure to correctly parse command-line arguments when utilizing the -S (split-string) option. In GNU env, backslashes within single quotes are treated literally (with the exceptions of \ and '). However, the uutils implementation incorrectly attempts to validate these sequences, resulting in an "invalid sequence" error and an immediate process termination with an exit status of 125 when encountering valid but unrecognized sequences like \a or \x. This divergence from GNU behavior breaks compatibility for automated scripts and administrative workflows that rely on standard split-string semantics, leading to a local denial of service for those operations. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35351
GHSA-957r-r8gc-vv3h
Apr 22, 2026
uutils coreutils doesn't preserve file ownership during moves across different filesystem boundaries
4.2
/ 10
Medium
Local
Low
High
None
Unchanged
Low
Low
Low
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 destination file using the caller's UID/GID rather than the source's metadata. This flaw breaks backups and migrations, causing files moved by a privileged user (e.g., root) to become root-owned unexpectedly, which can lead to information disclosure or restricted access for the intended owners. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35354
GHSA-x4mc-mqm7-gg39
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
None
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-based system calls that perform fresh path-to-inode lookups for each operation. A local attacker with write access to the directory can exploit this race to swap files between calls, causing the destination file to receive an inconsistent mix of security xattrs, such as SELinux labels or file capabilities. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35367
GHSA-5hgf-628x-mcqf
Apr 22, 2026
uutils coreutils has an Incorrect Permission Assignment for Critical Resource
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
Low
None
None
The nohup utility in uutils coreutils creates its default output file, nohup.out, without specifying explicit restricted permissions. This causes the file to inherit umask-based permissions, typically resulting in a world-readable file (0644). In multi-user environments, this allows any user on the system to read the captured stdout/stderr output of a command, potentially exposing sensitive information. This behavior diverges from GNU coreutils, which creates nohup.out with owner-only (0600) permissions. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35368
GHSA-mh5c-xrmh-m794
Apr 22, 2026
uutils coreutils has an Untrusted Search Path
7.8
/ 10
High
Local
High
Low
None
Changed
High
High
High
A vulnerability exists in the chroot utility of uutils coreutils when using the --userspec option. The utility resolves the user specification via getpwnam() after entering the chroot but before dropping root privileges. On glibc-based systems, this can trigger the Name Service Switch (NSS) to load shared libraries (e.g., libnss_*.so.2) from the new root directory. If the NEWROOT is writable by an attacker, they can inject a malicious NSS module to execute arbitrary code as root, facilitating a full container escape or privilege escalation. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35359
GHSA-hpfw-mqm3-33jh
Apr 22, 2026
uutils coreutils has a Link Following issue
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
A Time-of-Check to Time-of-Use (TOCTOU) vulnerability in the cp utility of uutils coreutils allows an attacker to bypass no-dereference intent. The utility checks if a source path is a symbolic link using path-based metadata but subsequently opens it without the O_NOFOLLOW flag. An attacker with concurrent write access can swap a regular file for a symbolic link during this window, causing a privileged cp process to copy the contents of arbitrary sensitive files into a destination controlled by the attacker. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35350
GHSA-x2wv-9p67-mh9w
Apr 22, 2026
uutils coreutils doesn't properly handle setuid and setgid bits when ownership preservation fails
6.6
/ 10
Medium
Local
Low
Low
None
Unchanged
Low
High
Low
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 bits even if the chown operation is unsuccessful. This can result in a user-owned copy retaining original privileged bits, creating unexpected privileged executables that violate local security policies. This differs from GNU cp, which clears these bits when ownership cannot be preserved. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35360
GHSA-q6m9-xj2w-xmrc
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
The touch utility in uutils coreutils is vulnerable to a Time-of-Check to Time-of-Use (TOCTOU) race condition during file creation. When the utility identifies a missing path, it later attempts creation using File::create(), which internally uses O_TRUNC. An attacker can exploit this window to create a file or swap a symlink at the target path, causing touch to truncate an existing file and leading to permanent data loss. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35348
GHSA-f2jv-wjjc-2c94
Apr 22, 2026
uutils coreutils has an Uncaught Exception When Encountering Valid but Non-UTF-8 Paths
5.5
/ 10
Medium
Local
Low
Low
None
Unchanged
None
None
High
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 utilizes expect(), causing an immediate crash when encountering valid but non-UTF-8 paths. This diverges from GNU sort, which treats filenames as raw bytes. A local attacker can exploit this to crash the utility and disrupt automated pipelines. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35364
GHSA-m976-87wm-48fm
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
6.3
/ 10
Medium
Local
High
Low
None
Unchanged
None
High
High
A Time-of-Check to Time-of-Use (TOCTOU) race condition exists in the mv utility of uutils coreutils during cross-device operations. The utility removes the destination path before recreating it through a copy operation. A local attacker with write access to the destination directory can exploit this window to replace the destination with a symbolic link. The subsequent privileged move operation will follow the symlink, allowing the attacker to redirect the write and overwrite an arbitrary target file with contents from the source. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35344
GHSA-wh8p-h9hw-x2mc
Apr 22, 2026
uutils coreutils has an Unchecked Return Value Issue
3.3
/ 10
Low
Local
Low
Low
None
Unchanged
None
Low
None
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 files like /dev/null, the uutils implementation also hides failures on regular files and directories caused by full disks or read-only file systems. This can lead to silent data corruption in backup or migration scripts, as the utility may report a successful operation even when the destination file contains old or garbage data. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35357
GHSA-2m8x-mvfx-gwgj
Apr 22, 2026
uutils coreutils has a Time-of-check Time-of-use (TOCTOU) Race Condition
4.7
/ 10
Medium
Local
High
Low
None
Unchanged
High
None
None
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 restricted to their final mode (e.g., 0600) later in the process. A local attacker can race to open the file during this window; once obtained, the file descriptor remains valid and readable even after the permissions are tightened, exposing sensitive or private file contents. References Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35352
GHSA-9gh9-hwpr-rvqq
Apr 22, 2026
uutils coreutils has a Time-of-Check to Time-of-Use (TOCTOU) race condition
7.0
/ 10
High
Local
High
Low
None
Unchanged
High
High
High
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 attacker with write access to the parent directory can swap the newly created FIFO for a symbolic link between these two operations. This redirects the chmod call to an arbitrary file, potentially enabling privilege escalation if the utility is run with elevated privileges. References
Updated Sep 10, 2026 · Source: OSV.dev
CVE-2026-35345
GHSA-xf75-659h-cgg5
Apr 22, 2026
uutils coreutils has a Link Following Issue
5.3
/ 10
Medium
Local
High
Low
None
Unchanged
High
Low
None
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 continues to monitor a path after it has been replaced by a symbolic link, subsequently outputting the contents of the link's target. In environments where a privileged user (e.g., root) monitors a log directory, a local attacker with write access to that directory can replace a log file with a symlink to a sensitive system file (such as /etc/shadow), causing tail to disclose the contents of the sensitive file. References Updated Sep 10, 2026 · Source: OSV.dev |