This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate rustls

Dependencies

(12 total, 5 outdated, 1 insecure)

CrateRequiredLatestStatus
 aws-lc-rs^1.121.18.1up to date
 brotli^79.0.0out of date
 brotli-decompressor^4.0.16.0.1out of date
 hashbrown^0.150.17.1out of date
 log^0.4.80.4.34up to date
 once_cell^1.161.21.4up to date
 rustls-pki-types^1.101.15.1up to date
 ring^0.170.17.14up to date
 subtle^2.5.02.6.1up to date
 rustls-webpki ⚠️^0.102.80.103.15insecure
 zeroize^1.71.9.0up to date
 zlib-rs^0.40.6.8out of date

Dev dependencies

(13 total, 5 outdated)

CrateRequiredLatestStatus
 base64^0.220.23.1out of date
 bencher^0.1.50.1.5up to date
 env_logger^0.110.11.11up to date
 hex^0.40.4.3up to date
 log^0.4.80.4.34up to date
 macro_rules_attribute^0.20.2.3up to date
 num-bigint^0.4.40.5.1out of date
 rcgen^0.130.14.10out of date
 serde^11.0.229up to date
 serde_json^11.0.151up to date
 time^0.3.60.3.55up to date
 webpki-roots^0.261.0.9out of date
 x509-parser^0.160.18.1out of date

Security Vulnerabilities

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.

rustls-webpki: Name constraints for URI names were incorrectly accepted

RUSTSEC-2026-0098

Name constraints for URI names were ignored and therefore accepted.

Note this library does not provide an API for asserting URI names, and URI name constraints are otherwise not implemented. URI name constraints are now rejected unconditionally.

Since name constraints are restrictions on otherwise properly-issued certificates, this bug is reachable only after signature verification and requires misissuance to exploit.

This vulnerability is identified as GHSA-965h-392x-2mh5. Thank you to @1seal for the report.

rustls-webpki: Name constraints were accepted for certificates asserting a wildcard name

RUSTSEC-2026-0099

Permitted subtree name constraints for DNS names were accepted for certificates asserting a wildcard name.

This was incorrect because, given a name constraint of accept.example.com, *.example.com could feasibly allow a name of reject.example.com which is outside the constraint. This is very similar to CVE-2025-61727.

Since name constraints are restrictions on otherwise properly-issued certificates, this bug is reachable only after signature verification and requires misissuance to exploit.

This vulnerability is identified as GHSA-xgp8-3hg3-c2mh. Thank you to @1seal for the report.

rustls-webpki: Reachable panic in certificate revocation list parsing

RUSTSEC-2026-0104

A panic was reachable when parsing certificate revocation lists via [BorrowedCertRevocationList::from_der] or [OwnedCertRevocationList::from_der]. This was the result of mishandling a syntactically valid empty BIT STRING appearing in the onlySomeReasons element of a IssuingDistributionPoint CRL extension.

This panic is reachable prior to a CRL's signature being verified.

Applications that do not use CRLs are not affected.

Thank you to @tynus3 for the report.