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 salvo_core

Dependencies

(56 total, 8 outdated, 4 possibly insecure)

CrateRequiredLatestStatus
 anyhow^11.0.89up to date
 async-trait^0.10.1.83up to date
 base64^0.220.22.1up to date
 brotli^6.07.0.0out of date
 bytes^11.7.2up to date
 cookie^0.180.18.1up to date
 encoding_rs^0.80.8.34up to date
 enumflags2^0.70.7.10up to date
 eyre ⚠️^0.60.6.12maybe insecure
 flate2^1.01.0.34up to date
 form_urlencoded^11.2.1up to date
 futures-channel^0.30.3.31up to date
 futures-util^0.30.3.31up to date
 headers^0.40.4.0up to date
 http^11.1.0up to date
 http-body-util^0.10.1.2up to date
 hyper^11.5.0up to date
 hyper-rustls^0.270.27.3up to date
 hyper-util^0.1.20.1.9up to date
 indexmap^22.6.0up to date
 mime^0.30.3.17up to date
 mime-infer^33.0.0up to date
 multer^33.1.0up to date
 multimap^0.100.10.0up to date
 native-tls^0.20.2.12up to date
 nix^0.280.29.0out of date
 once_cell^11.20.2up to date
 openssl ⚠️^0.100.10.68maybe insecure
 parking_lot^0.120.12.3up to date
 percent-encoding^22.3.1up to date
 pin-project^11.1.6up to date
 quinn^0.100.11.5out of date
 rand^0.80.8.5up to date
 rcgen^0.130.13.1up to date
 regex ⚠️^11.11.0maybe insecure
 ring^0.170.17.8up to date
 rustls-pemfile^12.2.0out of date
 salvo-http3^0.0.100.3.1out of date
 salvo_macros^0.67.20.73.0out of date
 serde^11.0.210up to date
 serde-xml-rs^0.60.6.0up to date
 serde_json^11.0.129up to date
 serde_urlencoded^0.70.7.1up to date
 sync_wrapper^1.01.0.1up to date
 tempfile^33.13.0up to date
 thiserror^11.0.64up to date
 tokio ⚠️^11.40.0maybe insecure
 tokio-native-tls^0.30.3.1up to date
 tokio-openssl^0.60.6.5up to date
 tokio-rustls^0.240.26.0out of date
 tokio-util^0.70.7.12up to date
 tower^0.40.5.1out of date
 tracing^0.10.1.40up to date
 url^22.5.2up to date
 x509-parser^0.160.16.0up to date
 zstd^0.130.13.2up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 fastrand^22.1.1up to date

Security Vulnerabilities

regex: Regexes with large repetitions on empty sub-expressions take a very long time to parse

RUSTSEC-2022-0013

The Rust Security Response WG was notified that the regex crate did not properly limit the complexity of the regular expressions (regex) it parses. An attacker could use this security issue to perform a denial of service, by sending a specially crafted regex to a service accepting untrusted regexes. No known vulnerability is present when parsing untrusted input with trusted regexes.

This issue has been assigned CVE-2022-24713. The severity of this vulnerability is "high" when the regex crate is used to parse untrusted regexes. Other uses of the regex crate are not affected by this vulnerability.

Overview

The regex crate features built-in mitigations to prevent denial of service attacks caused by untrusted regexes, or untrusted input matched by trusted regexes. Those (tunable) mitigations already provide sane defaults to prevent attacks. This guarantee is documented and it's considered part of the crate's API.

Unfortunately a bug was discovered in the mitigations designed to prevent untrusted regexes to take an arbitrary amount of time during parsing, and it's possible to craft regexes that bypass such mitigations. This makes it possible to perform denial of service attacks by sending specially crafted regexes to services accepting user-controlled, untrusted regexes.

Affected versions

All versions of the regex crate before or equal to 1.5.4 are affected by this issue. The fix is include starting from regex 1.5.5.

Mitigations

We recommend everyone accepting user-controlled regexes to upgrade immediately to the latest version of the regex crate.

Unfortunately there is no fixed set of problematic regexes, as there are practically infinite regexes that could be crafted to exploit this vulnerability. Because of this, we do not recommend denying known problematic regexes.

Acknowledgements

We want to thank Addison Crump for responsibly disclosing this to us according to the Rust security policy, and for helping review the fix.

We also want to thank Andrew Gallant for developing the fix, and Pietro Albini for coordinating the disclosure and writing this advisory.

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

eyre: Parts of Report are dropped as the wrong type during downcast

RUSTSEC-2024-0021

In affected versions, after a Report is constructed using wrap_err or wrap_err_with to attach a message of type D onto an error of type E, then using downcast to recover ownership of either the value of type D or the value of type E, one of two things can go wrong:

  • If downcasting to E, there remains a value of type D to be dropped. It is incorrectly "dropped" by running E's drop behavior, rather than D's. For example if D is &str and E is std::io::Error, there would be a call of std::io::Error::drop in which the reference received by the Drop impl does not refer to a valid value of type std::io::Error, but instead to &str.

  • If downcasting to D, there remains a value of type E to be dropped. When D and E do not happen to be the same size, E's drop behavior is incorrectly executed in the wrong location. The reference received by the Drop impl may point left or right of the real E value that is meant to be getting dropped.

In both cases, when the Report contains an error E that has nontrivial drop behavior, the most likely outcome is memory corruption.

When the Report contains an error E that has trivial drop behavior (for example a Utf8Error) but where D has nontrivial drop behavior (such as String), the most likely outcome is that downcasting to E would leak D.

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.