In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade autorand
to version 0.2.3 or higher.
autorand is an Automatic random generation for any struct or enum.
Affected versions of this package are vulnerable to Uninitialized Memory Exposure. Affected versions of this crate had a panic safety issue to drop partially uninitialized array of T
upon panic in a user provided function T::random()
. Dropping uninitialized T
can potentially cause memory corruption or undefined behavior. The flaw was corrected in commit 565d508 by using MaybeUninit<T>
to avoid possible dropping of uninitialized memory upon panic.