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 rodio

Dependencies

(7 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 cgmath^0.140.18.0out of date
 claxon ⚠️^0.3.00.4.3out of date
 cpal^0.80.15.3out of date
 hound^3.3.13.5.1up to date
 lazy_static^1.0.01.4.0up to date
 lewton^0.50.10.2out of date
 minimp3^0.3.00.5.1out of date

Security Vulnerabilities

claxon: Malicious input could cause uninitialized memory to be exposed

RUSTSEC-2018-0004

Affected versions of Claxon made an invalid assumption about the decode buffer size being a multiple of a value read from the bitstream. This could cause parts of the decode buffer to not be overwritten. If the decode buffer was newly allocated and uninitialized, this uninitialized memory could be exposed.

This allows an attacker to observe parts of the uninitialized memory in the decoded audio stream.

The flaw was corrected by checking that the value read from the bitstream divides the decode buffer size, and returning a format error if it does not. If an error is returned, the decode buffer is not exposed. Regression tests and an additional fuzzer have been added to prevent similar flaws in the future.