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 foxy-io

Dependencies

(41 total, 11 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.1.880.1.92up to date
 base64^0.22.10.23.1out of date
 bytes ⚠️^1.5.01.12.1maybe insecure
 chrono^0.4.350.4.45up to date
 env_logger^0.11.80.11.11up to date
 futures-util^0.3.310.3.34up to date
 globset^0.40.4.20up to date
 hostname^0.4.10.4.2up to date
 http-body-util^0.1.00.1.5up to date
 hyper^1.6.01.11.0up to date
 hyper-util^0.1.30.1.20up to date
 jsonwebtoken^911.0.0out of date
 log^0.4.270.4.33up to date
 once_cell^1.21.31.21.4up to date
 openssl^0.10.720.10.81up to date
 opentelemetry^0.290.32.0out of date
 opentelemetry-http^0.290.32.0out of date
 opentelemetry-otlp^0.290.32.0out of date
 opentelemetry-semantic-conventions^0.290.32.1out of date
 opentelemetry_sdk^0.290.32.1out of date
 regex^1.11.11.13.1up to date
 reqwest^0.12.150.13.4out of date
 serde^1.01.0.229up to date
 serde_json^1.01.0.151up to date
 serde_yaml^0.90.9.34+deprecatedup to date
 slog^2.7.02.8.2up to date
 slog-async^2.8.02.8.0up to date
 slog-json^2.6.12.6.1up to date
 slog-scope^4.4.04.4.1up to date
 slog-stdlog^4.1.14.1.1up to date
 slog-term^2.9.02.9.2up to date
 subtle^2.62.6.1up to date
 thiserror^2.0.122.0.20up to date
 tokio^1.281.53.1up to date
 toml^0.8.231.1.4+spec-1.1.0out of date
 tonic^0.12.30.14.6out of date
 tracing^0.10.1.44up to date
 tracing-opentelemetry^0.290.33.0out of date
 tracing-subscriber ⚠️^0.30.3.23maybe insecure
 urlencoding^2.12.1.3up to date
 uuid^1.7.01.24.0up to date

Dev dependencies

(5 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 hyper^1.6.01.11.0up to date
 serial_test^3.14.0.1out of date
 tempfile^3.63.27.0up to date
 warp ⚠️^0.30.4.3out of date
 wiremock^0.60.6.5up to date

Security Vulnerabilities

warp: Improper validation of Windows paths could lead to directory traversal attack

RUSTSEC-2022-0082

Path resolution in warp::filters::fs::dir didn't correctly validate Windows paths meaning paths like /foo/bar/c:/windows/web/screen/img101.png would be allowed and respond with the contents of c:/windows/web/screen/img101.png. Thus users could potentially read files anywhere on the filesystem.

This only impacts Windows. Linux and other unix likes are not impacted by this.

tracing-subscriber: Logging user input may result in poisoning logs with ANSI escape sequences

RUSTSEC-2025-0055

Previous versions of tracing-subscriber were vulnerable to ANSI escape sequence injection attacks. Untrusted user input containing ANSI escape sequences could be injected into terminal output when logged, potentially allowing attackers to:

  • Manipulate terminal title bars
  • Clear screens or modify terminal display
  • Potentially mislead users through terminal manipulation

In isolation, impact is minimal, however security issues have been found in terminal emulators that enabled an attacker to use ANSI escape sequences via logs to exploit vulnerabilities in the terminal emulator.

This was patched in PR #3368 to escape ANSI control characters from user input.

bytes: Integer overflow in `BytesMut::reserve`

RUSTSEC-2026-0007

In the unique reclaim path of BytesMut::reserve, the condition

if v_capacity >= new_cap + offset

uses an unchecked addition. When new_cap + offset overflows usize in release builds, this condition may incorrectly pass, causing self.cap to be set to a value that exceeds the actual allocated capacity. Subsequent APIs such as spare_capacity_mut() then trust this corrupted cap value and may create out-of-bounds slices, leading to UB.

This behavior is observable in release builds (integer overflow wraps), whereas debug builds panic due to overflow checks.

PoC

use bytes::*;

fn main() {
    let mut a = BytesMut::from(&b"hello world"[..]);
    let mut b = a.split_off(5);

    // Ensure b becomes the unique owner of the backing storage
    drop(a);

    // Trigger overflow in new_cap + offset inside reserve
    b.reserve(usize::MAX - 6);

    // This call relies on the corrupted cap and may cause UB & HBO
    b.put_u8(b'h');
}

Workarounds

Users of BytesMut::reserve are only affected if integer overflow checks are configured to wrap. When integer overflow is configured to panic, this issue does not apply.