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 rustfulapi

Dependencies

(45 total, 1 possibly insecure)

CrateRequiredLatestStatus
 axum^0.8.10.8.1up to date
 axum-extra^0.10.00.10.0up to date
 sea-orm^1.1.21.1.7up to date
 sea-orm-migration^1.1.21.1.7up to date
 anyhow^1.0.941.0.97up to date
 argon2^0.5.30.5.3up to date
 base64^0.22.10.22.1up to date
 chrono^0.4.390.4.40up to date
 config^0.15.80.15.11up to date
 fake^4.0.04.2.0up to date
 futures^0.3.310.3.31up to date
 itertools^0.14.00.14.0up to date
 jsonwebtoken^9.3.09.3.1up to date
 lettre^0.11.110.11.15up to date
 log^0.4.220.4.26up to date
 log-derive^0.4.10.4.1up to date
 openssl ⚠️^0.10.680.10.71maybe insecure
 rand^0.9.00.9.0up to date
 rand_core^0.9.20.9.3up to date
 redis^0.29.00.29.2up to date
 reqwest^0.12.90.12.15up to date
 scraper^0.23.10.23.1up to date
 sentry^0.36.00.36.0up to date
 serde^1.0.2151.0.219up to date
 serde_json^1.0.1331.0.140up to date
 sha2^0.10.80.10.8up to date
 strum^0.27.10.27.1up to date
 tera^1.20.01.20.0up to date
 test-context^0.4.10.4.1up to date
 thiserror^2.0.112.0.12up to date
 tokio^1.42.01.44.1up to date
 tracing^0.1.410.1.41up to date
 tracing-appender^0.2.30.2.3up to date
 tracing-bunyan-formatter^0.3.100.3.10up to date
 tracing-log^0.2.00.2.0up to date
 tracing-subscriber^0.3.190.3.19up to date
 url^2.5.22.5.4up to date
 utoipa^5.2.05.3.1up to date
 utoipa-swagger-ui^9.0.09.0.0up to date
 utoipa-axum^0.2.00.2.0up to date
 uuid^1.11.01.16.0up to date
 tokio-tungstenite^0.26.20.26.2up to date
 garde^0.22.00.22.0up to date
 regex^1.11.11.11.1up to date
 wiremock^0.6.20.6.3up to date

Security Vulnerabilities

openssl: ssl::select_next_proto use after free

RUSTSEC-2025-0004

In openssl versions before 0.10.70, ssl::select_next_proto can return a slice pointing into the server argument's buffer but with a lifetime bound to the client argument. In situations where the server buffer's lifetime is shorter than the client buffer's, this can cause a use after free. This could cause the server to crash or to return arbitrary memory contents to the client.

openssl 0.10.70 fixes the signature of ssl::select_next_proto to properly constrain the output buffer's lifetime to that of both input buffers.

In standard usage of ssl::select_next_proto in the callback passed to SslContextBuilder::set_alpn_select_callback, code is only affected if the server buffer is constructed within the callback. For example:

Not vulnerable - the server buffer has a 'static lifetime:

builder.set_alpn_select_callback(|_, client_protos| {
    ssl::select_next_proto(b"\x02h2", client_protos).ok_or_else(AlpnError::NOACK)
});

Not vulnerable - the server buffer outlives the handshake:

let server_protos = b"\x02h2".to_vec();
builder.set_alpn_select_callback(|_, client_protos| {
    ssl::select_next_proto(&server_protos, client_protos).ok_or_else(AlpnError::NOACK)
});

Vulnerable - the server buffer is freed when the callback returns:

builder.set_alpn_select_callback(|_, client_protos| {
    let server_protos = b"\x02h2".to_vec();
    ssl::select_next_proto(&server_protos, client_protos).ok_or_else(AlpnError::NOACK)
});