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

Crate reqsign

Dependencies

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

CrateRequiredLatestStatus
 anyhow^11.0.98up to date
 async-trait^0.10.1.88up to date
 base64^0.220.22.1up to date
 chrono^0.4.350.4.40up to date
 form_urlencoded^11.2.1up to date
 getrandom^0.20.3.2out of date
 hex^0.40.4.3up to date
 hmac^0.120.12.1up to date
 home^0.50.5.11up to date
 http^1.11.3.1up to date
 jsonwebtoken^9.29.3.1up to date
 log^0.40.4.27up to date
 once_cell^11.21.3up to date
 percent-encoding^22.3.1up to date
 quick-xml^0.370.37.4up to date
 rand^0.8.50.9.0out of date
 reqwest^0.120.12.15up to date
 rsa ⚠️^0.9.20.9.8insecure
 rust-ini^0.210.21.1up to date
 serde^11.0.219up to date
 serde_json^11.0.140up to date
 sha1^0.100.10.6up to date
 sha2^0.100.10.8up to date
 tokio ⚠️^11.44.2maybe insecure
 toml^0.8.90.8.20up to date

Dev dependencies

(13 total, 1 possibly insecure)

CrateRequiredLatestStatus
 aws-credential-types^1.1.81.2.2up to date
 aws-sigv4^1.2.01.3.0up to date
 criterion^0.50.5.1up to date
 dotenv^0.150.15.0up to date
 env_logger^0.110.11.8up to date
 macro_rules_attribute^0.2.00.2.0up to date
 once_cell^11.21.3up to date
 pretty_assertions^1.31.4.1up to date
 reqwest^0.120.12.15up to date
 temp-env^0.30.3.6up to date
 tempfile^3.83.19.1up to date
 test-case^3.3.13.3.1up to date
 tokio ⚠️^11.44.2maybe 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.