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 yew

Dependencies

(10 total, 5 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 failure^0.10.1.8up to date
 http ⚠️^0.11.1.0out of date
 log^0.40.4.21up to date
 rmp-serde^0.13.71.2.0out of date
 serde^11.0.199up to date
 serde_cbor ⚠️^0.8.20.11.2out of date
 serde_json^11.0.116up to date
 serde_yaml ⚠️^0.70.9.34+deprecatedout of date
 stdweb^0.40.4.20up to date
 toml^0.40.8.12out of date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 serde_derive^11.0.199up to date

Security Vulnerabilities

serde_yaml: Uncontrolled recursion leads to abort in deserialization

RUSTSEC-2018-0005

Affected versions of this crate did not properly check for recursion while deserializing aliases.

This allows an attacker to make a YAML file with an alias referring to itself causing an abort.

The flaw was corrected by checking the recursion depth.

serde_cbor: Flaw in CBOR deserializer allows stack overflow

RUSTSEC-2019-0025

Affected versions of this crate did not properly check if semantic tags were nested excessively during deserialization.

This allows an attacker to craft small (< 1 kB) CBOR documents that cause a stack overflow.

The flaw was corrected by limiting the allowed number of nested tags.

http: Integer Overflow in HeaderMap::reserve() can cause Denial of Service

RUSTSEC-2019-0033

HeaderMap::reserve() used usize::next_power_of_two() to calculate the increased capacity. However, next_power_of_two() silently overflows to 0 if given a sufficiently large number in release mode.

If the map was not empty when the overflow happens, the library will invoke self.grow(0) and start infinite probing. This allows an attacker who controls the argument to reserve() to cause a potential denial of service (DoS).

The flaw was corrected in 0.1.20 release of http crate.

http: HeaderMap::Drain API is unsound

RUSTSEC-2019-0034