Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
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 ruspiro-singleton
to version 0.4.1 or higher.
ruspiro-singleton is a Singleton lacks bounds on Send and Sync.
Affected versions of this package are vulnerable to Race Condition. Singleton<T>
is meant to be a static object that can be initialized lazily. In order to satisfy the requirement that static
items must implement Sync
, Singleton
implemented both Sync
and Send
unconditionally. This allows for a bug where non-Sync
types such as Cell
can be used in singletons and cause data races in concurrent programs. The flaw was corrected in commit b0d2bd20e
by adding trait bounds, requiring the contaiend type to implement Sync
.