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

Crate waxosuit-guest

Dependencies

(7 total, 3 outdated, 2 insecure)

CrateRequiredLatestStatus
 prost ⚠️^0.5.00.14.4insecure
 prost-types ⚠️^0.5.00.14.4insecure
 serde^1.0.1011.0.229up to date
 serde_derive^1.0.1011.0.229up to date
 serde_json^1.0.411.0.151up to date
 wapc-guest^0.1.11.2.0out of date
 waxosuit-codec^0.2.30.2.4up to date

Security Vulnerabilities

prost: Parsing a specially crafted message can result in a stack overflow

RUSTSEC-2020-0002

Affected versions of this crate contained a bug in which decoding untrusted input could overflow the stack.

On architectures with stack probes (like x86), this can be used for denial of service attacks, while on architectures without stack probes (like ARM) overflowing the stack is unsound and can result in potential memory corruption (or even RCE).

The flaw was quickly corrected by @danburkert and released in version 0.6.1.

prost-types: Conversion from `prost_types::Timestamp` to `SystemTime` can cause an overflow and panic

RUSTSEC-2021-0073

Affected versions of this crate contained a bug in which untrusted input could cause an overflow and panic when converting a Timestamp to SystemTime.

It is recommended to upgrade to prost-types v0.8 and switch the usage of From<Timestamp> for SystemTime to TryFrom<Timestamp> for SystemTime.

See #438 for more information.