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 mcaptcha

Dependencies

(34 total, 10 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 actix-web^4.0.14.5.1up to date
 actix^0.130.13.3up to date
 actix-identity^0.4.00.7.1out of date
 actix-http^3.0.43.6.0up to date
 actix-rt^22.9.0up to date
 actix-cors^0.6.10.7.0out of date
 actix-service^2.0.02.0.2up to date
 async-trait^0.1.510.1.80up to date
 mime_guess^2.0.32.0.4up to date
 rust-embed^6.4.08.3.0out of date
 libcachebust^0.3.00.3.0up to date
 futures^0.3.150.3.30up to date
 tokio ⚠️^1.141.37.0maybe insecure
 sqlx^0.70.7.4up to date
 config^0.130.14.0out of date
 validator^0.150.18.1out of date
 derive_builder^0.110.20.0out of date
 derive_more^0.990.99.17up to date
 serde^11.0.200up to date
 serde_json^11.0.116up to date
 url^2.22.5.0up to date
 urlencoding^2.1.02.1.3up to date
 pretty_env_logger^0.40.5.0out of date
 log^0.40.4.21up to date
 lazy_static^1.41.4.0up to date
 libmcaptcha^0.2.40.2.4up to date
 rand^0.80.8.5up to date
 sailfish^0.7.00.8.3out of date
 mime^0.3.160.3.17up to date
 num_cpus^1.13.11.16.0up to date
 lettre^0.10.0-rc.30.11.7out of date
 openssl ⚠️^0.10.480.10.64maybe insecure
 uuid^1.4.01.8.0up to date
 reqwest^0.11.180.12.4out of date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 mcaptcha_pow_sha256^0.40.5.0out of date
 awc^3.0.03.4.0up to date

Build dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 serde_json^11.0.116up to date
 sqlx^0.70.7.4up to date

Crate db-core

Dependencies

(5 total, all up-to-date)

CrateRequiredLatestStatus
 async-trait^0.1.510.1.80up to date
 thiserror^1.0.301.0.59up to date
 serde^11.0.200up to date
 url^2.2.22.5.0up to date
 libmcaptcha^0.2.40.2.4up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 serde_json^11.0.116up to date

Crate db-sqlx-postgres

Dependencies

(4 total, all up-to-date)

CrateRequiredLatestStatus
 async-trait^0.1.510.1.80up to date
 futures^0.3.150.3.30up to date
 sqlx^0.70.7.4up to date
 uuid^1.4.01.8.0up to date

Dev dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 actix-rt^22.9.0up to date
 sqlx^0.70.7.4up to date
 url^2.2.22.5.0up to date

Crate db-sqlx-maria

Dependencies

(4 total, all up-to-date)

CrateRequiredLatestStatus
 async-trait^0.1.510.1.80up to date
 futures^0.3.150.3.30up to date
 sqlx^0.70.7.4up to date
 uuid^1.4.01.8.0up to date

Dev dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 actix-rt^22.9.0up to date
 sqlx^0.70.7.4up to date
 url^2.2.22.5.0up to date

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);

openssl: `openssl` `X509VerifyParamRef::set_host` buffer over-read

RUSTSEC-2023-0044

When this function was passed an empty string, openssl would attempt to call strlen on it, reading arbitrary memory until it reached a NUL byte.