This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate reqsign

Dependencies

(25 total, 4 outdated, 1 insecure, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^11.0.83up to date
 async-trait^0.10.1.80up to date
 base64^0.210.22.1out of date
 chrono^0.4.240.4.38up to date
 form_urlencoded^11.2.1up to date
 getrandom^0.20.2.15up to date
 hex^0.40.4.3up to date
 hmac^0.120.12.1up to date
 home^0.50.5.9up to date
 http^0.21.1.0out of date
 jsonwebtoken^9.29.3.0up to date
 log^0.40.4.21up to date
 once_cell^11.19.0up to date
 percent-encoding^22.3.1up to date
 quick-xml^0.310.31.0up to date
 rand^0.8.50.8.5up to date
 reqwest^0.110.12.4out of date
 rsa ⚠️^0.9.20.9.6insecure
 rust-ini^0.200.21.0out of date
 serde^11.0.200up to date
 serde_json^11.0.116up to date
 sha1^0.100.10.6up to date
 sha2^0.100.10.8up to date
 tokio ⚠️^11.37.0maybe insecure
 toml^0.8.90.8.12up to date

Dev dependencies

(10 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 aws-sigv4^0.561.2.1out of date
 criterion^0.50.5.1up to date
 dotenv^0.150.15.0up to date
 env_logger^0.110.11.3up to date
 once_cell^11.19.0up to date
 pretty_assertions^1.31.4.0up to date
 reqwest^0.110.12.4out of date
 temp-env^0.30.3.6up to date
 tempfile^3.83.10.1up to date
 tokio ⚠️^11.37.0maybe insecure

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);

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.