Skip to content

Command substitution output can trigger shell expansion

Low
zanchey published GHSA-2j9r-pm96-wp4f Dec 4, 2023

Package

fish-shell

Affected versions

< 3.6.2

Patched versions

3.6.2

Description

Impact

fish shell uses certain Unicode non-characters internally for marking wildcards and expansions. It will incorrectly allow these markers to be read on command substitution output, rather than transforming them into a safe internal representation.

While this may cause unexpected behavior with direct input (for example, echo \UFDD2HOME has the same output as echo $HOME), this may become a minor security problem if the output is being fed from an external program into a command substitution where this output may not be expected.

Consider the following:

In foo.py:

print("\ufdd2HOME") # Perhaps this value is retrieved from a database or external source

At the shell:

> echo $(python3 foo.py)
/home/fishuser

This design flaw was introduced in very early versions of fish, predating the version control system, and is thought to be present in every version of fish released in the last 15 years or more, although with different characters.

Code execution does not appear to be possible, but denial of service (through large brace expansion) or information disclosure (such as variable expansion) is potentially possible under certain circumstances.

Patches

fish shell 3.6.2 has been released to correct this issue.

Severity

Low
3.9
/ 10

CVSS base metrics

Attack vector
Local
Attack complexity
Low
Privileges required
Low
User interaction
Required
Scope
Unchanged
Confidentiality
Low
Integrity
None
Availability
Low
CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:L

CVE ID

CVE-2023-49284

Weaknesses

No CWEs

Credits