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 ntex

Dependencies

(36 total, 8 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 base64^0.220.22.1up to date
 bitflags^22.6.0up to date
 brotli2^0.3.20.3.2up to date
 cookie^0.180.18.1up to date
 encoding_rs^0.80.8.35up to date
 flate2^1.0.221.0.35up to date
 httparse^1.81.9.5up to date
 httpdate^1.01.0.3up to date
 log^0.40.4.22up to date
 mime^0.30.3.17up to date
 nanorand^0.70.7.0up to date
 ntex-bytes^0.1.240.1.27up to date
 ntex-codec^0.6.20.6.2up to date
 ntex-h2^0.5.21.4.2out of date
 ntex-http^0.1.120.1.12up to date
 ntex-io^1.0.12.8.3out of date
 ntex-macros^0.1.30.1.3up to date
 ntex-net^1.0.02.4.0out of date
 ntex-router^0.5.30.5.3up to date
 ntex-rt^0.4.120.4.20up to date
 ntex-server^1.0.02.5.0out of date
 ntex-service^2.0.13.3.3out of date
 ntex-tls^1.1.02.3.0out of date
 ntex-util^1.0.12.5.0out of date
 percent-encoding^2.32.3.1up to date
 pin-project-lite^0.20.2.15up to date
 regex^1.101.11.1up to date
 serde^1.01.0.215up to date
 serde_json^1.01.0.132up to date
 serde_urlencoded^0.70.7.1up to date
 sha-1^0.100.10.1up to date
 thiserror^1.02.0.3out of date
 openssl ⚠️^0.100.10.68maybe insecure
 rustls ⚠️^0.230.23.16maybe insecure
 url^2.42.5.3up to date
 webpki-roots^0.260.26.6up to date

Dev dependencies

(8 total, 2 possibly insecure)

CrateRequiredLatestStatus
 env_logger^0.110.11.5up to date
 futures-util^0.30.3.31up to date
 rand^0.80.8.5up to date
 rustls-pemfile^22.2.0up to date
 time^0.30.3.36up to date
 openssl ⚠️^0.100.10.68maybe insecure
 rustls ⚠️^0.230.23.16maybe insecure
 webpki-roots^0.260.26.6up to date

Security Vulnerabilities

rustls: `rustls::ConnectionCommon::complete_io` could fall into an infinite loop based on network input

RUSTSEC-2024-0336

If a close_notify alert is received during a handshake, complete_io does not terminate.

Callers which do not call complete_io are not affected.

rustls-tokio and rustls-ffi do not call complete_io and are not affected.

rustls::Stream and rustls::StreamOwned types use complete_io and are affected.

openssl: `MemBio::get_buf` has undefined behavior with empty buffers

RUSTSEC-2024-0357

Previously, MemBio::get_buf called slice::from_raw_parts with a null-pointer, which violates the functions invariants, leading to undefined behavior. In debug builds this would produce an assertion failure. This is now fixed.