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 applicationsThere is no fixed version for signal-simple
.
signal-simple is a Library to handle and send system signals.
Affected versions of this package are vulnerable to Memory Corruption. Affected versions of this crate unconditionally implement Send/Sync for SyncChannel<T>
. SyncChannel<T>
doesn't provide access to &T
but merely serves as a channel that consumes and returns owned T
. Users can create UB in safe Rust by sending T: !Send
to other threads with SyncChannel::send/recv
APIs. Using T = Arc<Cell<_>
allows to create data races (which can lead to memory corruption), and using T = MutexGuard<T>
allows to unlock a mutex from a thread that didn't lock the mutex.