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 nyx-space

Dependencies

(12 total, 8 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 bytes^0.4.121.6.0out of date
 csv^11.3.0up to date
 flate2^1.01.0.28up to date
 hifitime^1.0.53.9.0out of date
 hyperdual^0.3.21.2.0out of date
 log^0.40.4.21up to date
 nalgebra ⚠️^0.180.32.5out of date
 petgraph^0.40.6.4out of date
 prost ⚠️^0.50.12.4out of date
 prost-derive^0.50.12.4out of date
 rand^0.60.8.5out of date
 serde^1.01.0.198up to date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 pretty_env_logger^0.30.5.0out of 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.

nalgebra: VecStorage Deserialize Allows Violation of Length Invariant

RUSTSEC-2021-0070

The Deserialize implementation for VecStorage did not maintain the invariant that the number of elements must equal nrows * ncols. Deserialization of specially crafted inputs could allow memory access beyond allocation of the vector.

This flaw was introduced in v0.11.0 (086e6e) due to the addition of an automatically derived implementation of Deserialize for MatrixVec. MatrixVec was later renamed to VecStorage in v0.16.13 (0f66403) and continued to use the automatically derived implementation of Deserialize.

This flaw was corrected in commit 5bff536 by returning an error during deserialization if the number of elements does not exactly match the expected size.