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 nphysics3d

Dependencies

(16 total, 6 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 alga^0.90.9.3up to date
 approx^0.30.5.1out of date
 bitflags^1.02.5.0out of date
 downcast-rs^1.01.2.0up to date
 either^1.01.10.0up to date
 generational-arena^0.20.2.9up to date
 instant^0.10.1.12up to date
 lazy_static^1.01.4.0up to date
 nalgebra ⚠️^0.190.32.4out of date
 ncollide3d^0.210.33.0out of date
 num-traits^0.20.2.18up to date
 slotmap^0.41.0.7out of date
 smallvec ⚠️^0.61.13.2out of date
 stdweb^0.40.4.20up to date
 wasm-bindgen^0.2.210.2.92up to date
 web-sys^0.3.270.3.69up to date

Security Vulnerabilities

smallvec: Buffer overflow in SmallVec::insert_many

RUSTSEC-2021-0003

A bug in the SmallVec::insert_many method caused it to allocate a buffer that was smaller than needed. It then wrote past the end of the buffer, causing a buffer overflow and memory corruption on the heap.

This bug was only triggered if the iterator passed to insert_many yielded more items than the lower bound returned from its size_hint method.

The flaw was corrected in smallvec 0.6.14 and 1.6.1, by ensuring that additional space is always reserved for each item inserted. The fix also simplified the implementation of insert_many to use less unsafe code, so it is easier to verify its correctness.

Thank you to Yechan Bae (@Qwaz) and the Rust group at Georgia Tech’s SSLab for finding and reporting this bug.

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.