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 ascom-alpaca

Dependencies

(33 total, 13 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 async-fn-stream^0.2.00.3.2out of date
 async-trait^0.1.770.1.89up to date
 axum^0.7.40.8.8out of date
 bytemuck^1.14.01.25.0up to date
 bytes ⚠️^1.5.01.11.1maybe insecure
 custom_debug^0.5.10.6.2out of date
 default-net^0.21.00.22.0out of date
 eyre ⚠️^0.6.110.6.12maybe insecure
 futures^0.3.300.3.32up to date
 http^1.0.01.4.0up to date
 indexmap^2.1.02.13.0up to date
 macro_rules_attribute^0.2.00.2.2up to date
 mediatype^0.19.170.21.0out of date
 mime^0.3.170.3.17up to date
 ndarray^0.15.60.17.2out of date
 net-literals^0.2.00.2.0up to date
 num_enum^0.7.20.7.5up to date
 once_cell^1.19.01.21.3up to date
 rand^0.8.50.10.0out of date
 reqwest^0.11.230.13.2out of date
 sailfish^0.8.30.10.1out of date
 serde^1.0.1951.0.228up to date
 serde-ndim^1.1.02.2.0out of date
 serde_json^1.0.1111.0.149up to date
 serde_plain^1.0.21.0.2up to date
 serde_repr^0.1.180.1.20up to date
 socket2^0.5.50.6.2out of date
 thiserror^1.0.562.0.18out of date
 time ⚠️^0.3.310.3.47maybe insecure
 tokio^1.35.11.49.0up to date
 tracing^0.1.400.1.44up to date
 tracing-futures^0.2.50.2.5up to date
 windows-sys^0.52.00.61.2out of date

Dev dependencies

(13 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 bayer^0.1.50.1.5up to date
 color-eyre^0.6.20.6.5up to date
 criterion^0.5.10.8.2out of date
 ctor^0.2.60.6.3out of date
 eframe^0.25.00.33.3out of date
 ndarray^0.15.60.17.2out of date
 nokhwa^0.10.40.10.10up to date
 parking_lot^0.12.10.12.5up to date
 serial_test^3.0.03.3.1up to date
 time ⚠️^0.3.310.3.47maybe insecure
 tracing-error^0.2.00.2.1up to date
 tracing-forest^0.1.60.3.1out of date
 tracing-subscriber ⚠️^0.3.180.3.22maybe insecure

Security Vulnerabilities

eyre: Parts of Report are dropped as the wrong type during downcast

RUSTSEC-2024-0021

In affected versions, after a Report is constructed using wrap_err or wrap_err_with to attach a message of type D onto an error of type E, then using downcast to recover ownership of either the value of type D or the value of type E, one of two things can go wrong:

  • If downcasting to E, there remains a value of type D to be dropped. It is incorrectly "dropped" by running E's drop behavior, rather than D's. For example if D is &str and E is std::io::Error, there would be a call of std::io::Error::drop in which the reference received by the Drop impl does not refer to a valid value of type std::io::Error, but instead to &str.

  • If downcasting to D, there remains a value of type E to be dropped. When D and E do not happen to be the same size, E's drop behavior is incorrectly executed in the wrong location. The reference received by the Drop impl may point left or right of the real E value that is meant to be getting dropped.

In both cases, when the Report contains an error E that has nontrivial drop behavior, the most likely outcome is memory corruption.

When the Report contains an error E that has trivial drop behavior (for example a Utf8Error) but where D has nontrivial drop behavior (such as String), the most likely outcome is that downcasting to E would leak D.

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.

time: Denial of Service via Stack Exhaustion

RUSTSEC-2026-0009

Impact

When user-provided input is provided to any type that parses with the RFC 2822 format, a denial of service attack via stack exhaustion is possible. The attack relies on formally deprecated and rarely-used features that are part of the RFC 2822 format used in a malicious manner. Ordinary, non-malicious input will never encounter this scenario.

Patches

A limit to the depth of recursion was added in v0.3.47. From this version, an error will be returned rather than exhausting the stack.

Workarounds

Limiting the length of user input is the simplest way to avoid stack exhaustion, as the amount of the stack consumed would be at most a factor of the length of the input.