Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [day] [month] [year] [list]
Date: Tue, 09 Apr 2024 18:00:26 +0100
From: "Pietro Albini" <pietro@...troalbini.org>
To: oss-security@...ts.openwall.com
Subject: CVE-2024-24576: Rust 1.77.1 and earlier did not properly escape arguments of
 batch files on Windows

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

The Rust Security Response WG was notified that the Rust standard library did
not properly escape arguments when invoking batch files (with the `bat` and
`cmd` extensions) on Windows using the [`Command`][1] API. An attacker able to
control the arguments passed to the spawned process could execute arbitrary
shell commands by bypassing the escaping.

The severity of this vulnerability is **critical** if you are invoking batch
files on Windows with untrusted arguments. No other platform or use is
affected.

This vulnerability is identified by CVE-2024-24576.

## Overview

The [`Command::arg`][2] and [`Command::args`][3] APIs state in their
documentation that the arguments will be passed to the spawned process as-is,
regardless of the content of the arguments, and will not be evaluated by a
shell. This means it should be safe to pass untrusted input as an argument.

On Windows, the implementation of this is more complex than other platforms,
because the Windows API only provides a single string containing all the
arguments to the spawned process, and it's up to the spawned process to split
them. Most programs use the standard C run-time argv, which in practice results
in a mostly consistent way arguments are splitted.

One exception though is `cmd.exe` (used among other things to execute batch
files), which has its own argument splitting logic. That forces the standard
library to implement custom escaping for arguments passed to batch files.
Unfortunately it was reported that our escaping logic was not thorough enough,
and it was possible to pass malicious arguments that would result in arbitrary
shell execution.

## Mitigations

Due to the complexity of `cmd.exe`, we didn't identify a solution that would
correctly escape arguments in all cases. To maintain our API guarantees, we
improved the robustness of the escaping code, and changed the `Command` API to
return an [`InvalidInput`][4] error when it cannot safely escape an argument.
This error will be emitted when spawning the process.

The fix will be included in Rust 1.77.2, to be released later today.

If you implement the escaping yourself or only handle trusted inputs, on
Windows you can also use the [`CommandExt::raw_arg`][5] method to bypass the
standard library's escaping logic. 

## Affected Versions

All Rust versions before 1.77.2 on Windows are affected, if your code or one of
your dependencies executes batch files with untrusted arguments. Other
platforms or other uses on Windows are not affected.

## Acknowledgments

We want to thank RyotaK for responsibly disclosing this to us according to the
[Rust security policy][6], and Simon Sawicki (Grub4K) for identifying some of
the escaping rules we adopted in our fix.

We also want to thank the members of the Rust project who helped us disclose
the vulnerability: Chris Denton for developing the fix; Mara Bos for reviewing
the fix; Pietro Albini for writing this advisory; Pietro Albini, Manish
Goregaokar and Josh Stone for coordinating this disclosure; Amanieu d'Antras
for advising during the disclosure.

[1]: https://doc.rust-lang.org/std/process/struct.Command.html
[2]: https://doc.rust-lang.org/std/process/struct.Command.html#method.arg
[3]: https://doc.rust-lang.org/std/process/struct.Command.html#method.args
[4]: https://doc.rust-lang.org/std/io/enum.ErrorKind.html#variant.InvalidInput
[5]: https://doc.rust-lang.org/std/os/windows/process/trait.CommandExt.html#tymethod.raw_arg
[6]: https://www.rust-lang.org/policies/security
-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEV2nIi/XdPRSiNKes77mGCudSDawFAmYUdNIACgkQ77mGCudS
DaxcXQ//Zar/RHbbjT9A322z74STJx2lJyzpn1dRfgya0+9DoeSgXrFoXgeOIWoI
IigWX8lhmMB28ZDRfbCXJZ23FLkIOGFwE/b6NFBByWBIzMuHWyU00LB/FiJJLTKW
Ss1FtS1LSAAI9Mu/W4nja+xuCoppkIHVfqAVQVgxyCA4SA9cgUeAJyqjbd+EqD2p
TTkGeH4cuxJAMz+O9nfeFI5eVwi6dYrl7LRUjKEauykSLxFpAlZdNtv0FOGL+9IH
3gFk/U7kxG3YMfgbOeXHjf7SOluyxBHqEG/jS28K7Q16zwZhEogGqDDURuPdP2vD
k27alPjNrFwlwDLH42v5sj3X797M3C8XinbvcSjJIRscPVllJy3/PoQ4b6+idsVd
VhO/N7NMzTJmX6EVbbjfR66L3uUBpjqZg+tFU1vbsbE/9upk1KhsMT5sPDLOjR99
0Lp9ikZHzYqtReTbXv0j3XtYdgR0+5RR3BHOTbz5ba9/N4YsWghOeZ4Wu69Qo4xc
c/HAwg8xRGGvfELFHctu039EuT5d1BXP4zLaRmnRSCUCVJ0huHiWrB1c33PO0l+j
VNEloYJn5OzZ5ESWEuLSVOdWFEw0qwi6XTvb4YhV1AH6ABKuc25+h0EBKmTaFdez
YeTNJTgIomw4zGKYhLl3BQdsfpcrktbZxTLyUpuWbbqJjycvRXA=
=w9G7
-----END PGP SIGNATURE-----

Powered by blists - more mailing lists

Please check out the Open Source Software Security Wiki, which is counterpart to this mailing list.

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.