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 zenoh-link-commons

Dependencies

(26 total, 3 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.1.890.1.89up to date
 base64^0.22.10.22.1up to date
 flume^0.11.10.12.0out of date
 futures^0.3.310.3.32up to date
 quinn^0.11.50.11.9up to date
 rustls^0.23.310.23.37up to date
 rustls-pemfile^2.2.02.2.0up to date
 rustls-pki-types^1.12.01.14.0up to date
 rustls-webpki ⚠️^0.103.80.103.10maybe insecure
 secrecy^0.8.00.10.3out of date
 serde^1.0.2251.0.228up to date
 socket2^0.5.70.6.3out of date
 time ⚠️^0.3.410.3.47maybe insecure
 tokio^1.47.11.51.0up to date
 tokio-util^0.7.160.7.18up to date
 tracing^0.1.410.1.44up to date
 webpki-roots^1.0.41.0.6up to date
 x509-parser^0.18.00.18.1up to date
 zenoh-buffers=1.8.01.8.0up to date
 zenoh-codec=1.8.01.8.0up to date
 zenoh-config=1.8.01.8.0up to date
 zenoh-core=1.8.01.8.0up to date
 zenoh-protocol=1.8.01.8.0up to date
 zenoh-result=1.8.01.8.0up to date
 zenoh-runtime=1.8.01.8.0up to date
 zenoh-util=1.8.01.8.0up to date

Security Vulnerabilities

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.

rustls-webpki: CRLs not considered authoritative by Distribution Point due to faulty matching logic

RUSTSEC-2026-0049

If a certificate had more than one distributionPoint, then only the first distributionPoint would be considered against each CRL's IssuingDistributionPoint distributionPoint, and then the certificate's subsequent distributionPoints would be ignored.

The impact was that correctly provided CRLs would not be consulted to check revocation. With UnknownStatusPolicy::Deny (the default) this would lead to incorrect but safe Error::UnknownRevocationStatus. With UnknownStatusPolicy::Allow this would lead to inappropriate acceptance of revoked certificates.

This vulnerability is thought to be of limited impact. This is because both the certificate and CRL are signed -- an attacker would need to compromise a trusted issuing authority to trigger this bug. An attacker with such capabilities could likely bypass revocation checking through other more impactful means (such as publishing a valid, empty CRL.)

More likely, this bug would be latent in normal use, and an attacker could leverage faulty revocation checking to continue using a revoked credential.

This vulnerability is identified as GHSA-pwjx-qhcg-rvj4. Thank you to @1seal for the report.