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-tls

Dependencies

(8 total, 4 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 log^0.40.4.22up to date
 ntex-bytes^0.1.210.1.27up to date
 ntex-io^1.02.8.3out of date
 ntex-net^1.02.4.0out of date
 ntex-service^2.03.3.3out of date
 ntex-util^1.02.5.0out of date
 openssl ⚠️^0.100.10.68maybe insecure
 rustls ⚠️^0.230.23.16maybe insecure

Dev dependencies

(4 total, 1 outdated)

CrateRequiredLatestStatus
 env_logger^0.110.11.5up to date
 ntex^12.8.0out of date
 rustls-pemfile^22.2.0up to date
 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.