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 audrey

Dependencies

(6 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 alac^0.30.5.0out of date
 caf^0.10.1.0up to date
 claxon ⚠️^0.40.4.3maybe insecure
 hound^3.03.5.1up to date
 lewton^0.70.10.2out of date
 sample^0.90.11.0out of date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 cpal^0.50.15.3out 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.