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

Crate skeletal_animation

Dependencies

(10 total, 6 outdated, 1 insecure)

CrateRequiredLatestStatus
 collada^0.12.00.15.0out of date
 dual_quaternion^0.1.00.2.0out of date
 gfx^0.18.10.18.3up to date
 gfx_debug_draw^0.26.00.33.0out of date
 interpolation^0.2.00.3.0out of date
 piston-float^1.0.01.0.1up to date
 piston-gfx_texture^0.40.00.44.0out of date
 quaternion^0.4.01.0.0out of date
 rustc-serialize ⚠️^0.3.160.3.25insecure
 vecmath^1.0.01.0.0up to date

Security Vulnerabilities

rustc-serialize: Stack overflow in rustc_serialize when parsing deeply nested JSON

RUSTSEC-2022-0004

When parsing JSON using json::Json::from_str, there is no limit to the depth of the stack, therefore deeply nested objects can cause a stack overflow, which aborts the process.

Example code that triggers the vulnerability is

fn main() {
    let _ = rustc_serialize::json::Json::from_str(&"[0,[".repeat(10000));
}

serde is recommended as a replacement to rustc_serialize.