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 multipart

Dependencies

(17 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 buf_redux^0.80.8.4up to date
 clippy>=0.0, <0.10.0.302up to date
 httparse^1.21.8.0up to date
 hyper ⚠️>=0.9, <0.111.2.0out of date
 iron>=0.4, <0.70.6.1up to date
 lazy_static^1.2.01.4.0up to date
 log^0.40.4.21up to date
 mime^0.3.140.3.17up to date
 mime_guess^2.0.12.0.4up to date
 nickel>=0.10.10.11.0up to date
 quick-error^1.22.0.1out of date
 rand^0.80.8.5up to date
 rocket^0.40.5.0out of date
 safemem^0.30.3.3up to date
 tempfile^33.10.1up to date
 tiny_http ⚠️^0.60.12.0out of date
 twoway^0.10.2.2out of date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 env_logger^0.50.11.3out of date

Security Vulnerabilities

tiny_http: HTTP Request smuggling through malformed Transfer Encoding headers

RUSTSEC-2020-0031

HTTP pipelining issues and request smuggling attacks are possible due to incorrect Transfer encoding header parsing.

It is possible conduct HTTP request smuggling attacks (CL:TE/TE:TE) by sending invalid Transfer Encoding headers.

By manipulating the HTTP response the attacker could poison a web-cache, perform an XSS attack, or obtain sensitive information from requests other than their own.

hyper: Lenient `hyper` header parsing of `Content-Length` could allow request smuggling

RUSTSEC-2021-0078

hyper's HTTP header parser accepted, according to RFC 7230, illegal contents inside Content-Length headers. Due to this, upstream HTTP proxies that ignore the header may still forward them along if it chooses to ignore the error.

To be vulnerable, hyper must be used as an HTTP/1 server and using an HTTP proxy upstream that ignores the header's contents but still forwards it. Due to all the factors that must line up, an attack exploiting this vulnerability is unlikely.

hyper: Integer overflow in `hyper`'s parsing of the `Transfer-Encoding` header leads to data loss

RUSTSEC-2021-0079

When decoding chunk sizes that are too large, hyper's code would encounter an integer overflow. Depending on the situation, this could lead to data loss from an incorrect total size, or in rarer cases, a request smuggling attack.

To be vulnerable, you must be using hyper for any HTTP/1 purpose, including as a client or server, and consumers must send requests or responses that specify a chunk size greater than 18 exabytes. For a possible request smuggling attack to be possible, any upstream proxies must accept a chunk size greater than 64 bits.