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 minreq

Dependencies

(13 total, 2 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 base64^0.220.22.1up to date
 log^0.4.00.4.32up to date
 native-tls^0.20.2.18up to date
 openssl ⚠️^0.10.290.10.81maybe insecure
 openssl-probe^0.10.2.1out of date
 punycode^0.4.10.4.1up to date
 rustls^0.23.350.23.40up to date
 rustls-platform-verifier^0.6.20.7.0out of date
 rustls-webpki ⚠️^0.103.80.103.13maybe insecure
 serde^1.0.1011.0.228up to date
 serde_json^1.0.01.0.150up to date
 urlencoding^2.1.02.1.3up to date
 webpki-roots^1.0.41.0.7up to date

Security Vulnerabilities

openssl: Use-After-Free in `Md::fetch` and `Cipher::fetch`

RUSTSEC-2025-0022

When a Some(...) value was passed to the properties argument of either of these functions, a use-after-free would result.

In practice this would nearly always result in OpenSSL treating the properties as an empty string (due to CString::drop's behavior).

The maintainers thank quitbug for reporting this vulnerability to us.

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.