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

Dependencies

(8 total, 1 possibly insecure)

CrateRequiredLatestStatus
 compio-buf^0.8.20.8.3up to date
 compio-io^0.10.00.10.1up to date
 compio-py-dynamic-openssl^0.5.00.5.0up to date
 futures-rustls^0.26.00.26.0up to date
 futures-util^0.3.290.3.32up to date
 native-tls^0.2.130.2.18up to date
 pin-project-lite^0.2.160.2.17up to date
 rustls ⚠️^0.23.10.23.41maybe insecure

Dev dependencies

(10 total, 1 insecure, 1 possibly insecure)

CrateRequiredLatestStatus
 compio-macros^0.2.00.2.0up to date
 compio-net^0.12.00.12.1up to date
 compio-runtime^0.12.00.12.2up to date
 futures-rustls^0.26.00.26.0up to date
 rand^0.10.00.10.1up to date
 rcgen^0.14.10.14.8up to date
 rsa ⚠️^0.10.0-rc.170.9.10insecure
 rustls ⚠️^0.23.10.23.41maybe insecure
 rustls-native-certs^0.8.00.8.4up to date
 tempfile^3.8.13.27.0up to date

Security Vulnerabilities

rsa: Marvin Attack: potential key recovery through timing sidechannels

RUSTSEC-2023-0071

Impact

Due to a non-constant-time implementation, information about the private key is leaked through timing information which is observable over the network. An attacker may be able to use that information to recover the key.

Patches

No patch is yet available, however work is underway to migrate to a fully constant-time implementation.

Workarounds

The only currently available workaround is to avoid using the rsa crate in settings where attackers are able to observe timing information, e.g. local use on a non-compromised computer is fine.

References

This vulnerability was discovered as part of the "Marvin Attack", which revealed several implementations of RSA including OpenSSL had not properly mitigated timing sidechannel attacks.

rustls: rustls network-reachable panic in `Acceptor::accept`

RUSTSEC-2024-0399

A bug introduced in rustls 0.23.13 leads to a panic if the received TLS ClientHello is fragmented. Only servers that use rustls::server::Acceptor::accept() are affected.

Servers that use tokio-rustls's LazyConfigAcceptor API are affected.

Servers that use tokio-rustls's TlsAcceptor API are not affected.

Servers that use rustls-ffi's rustls_acceptor_accept API are affected.