This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate beamcli

Dependencies

(18 total, 8 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.471.0.97up to date
 clearscreen^1.0.74.0.1out of date
 colored^2.0.03.0.0out of date
 dialoguer^0.10.10.11.0out of date
 home^0.5.30.5.11up to date
 indicatif^0.16.20.17.11out of date
 itertools^0.10.30.14.0out of date
 lazy_static^1.4.01.5.0up to date
 regex^1.5.61.11.1up to date
 reqwest^0.11.70.12.15out of date
 semver^1.0.41.0.26up to date
 serde^1.0.1301.0.219up to date
 serde_json^1.0.711.0.140up to date
 skim^0.9.40.16.1out of date
 structopt^0.3.250.3.26up to date
 tokio ⚠️^1.14.01.44.1maybe insecure
 toml^0.5.80.8.20out of date
 whoami ⚠️^1.2.01.6.0maybe insecure

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 httpmock^0.60.7.0out of date

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);

whoami: Stack buffer overflow with whoami on several Unix platforms

RUSTSEC-2024-0020

With versions of the whoami crate >= 0.5.3 and < 1.5.0, calling any of these functions leads to an immediate stack buffer overflow on illumos and Solaris:

  • whoami::username
  • whoami::realname
  • whoami::username_os
  • whoami::realname_os

With versions of the whoami crate >= 0.5.3 and < 1.0.1, calling any of the above functions also leads to a stack buffer overflow on these platforms:

  • Bitrig
  • DragonFlyBSD
  • FreeBSD
  • NetBSD
  • OpenBSD

This occurs because of an incorrect definition of the passwd struct on those platforms.

As a result of this issue, denial of service and data corruption have both been observed in the wild. The issue is possibly exploitable as well.

This vulnerability also affects other Unix platforms that aren't Linux or macOS.

This issue has been addressed in whoami 1.5.0.

For more information, see this GitHub issue.