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 devise to version 5.0.3 or higher.
devise is a flexible authentication solution for Rails with Warden.
Affected versions of this package are vulnerable to Race Condition in the Confirmable module, when the reconfirmable option is enabled (which it is by default). An attacker can confirm an email address they don't own by sending two concurrent "change email" requests, causing a desynchronization between the confirmation_token and unconfirmed_email fields.
This vulnerability can be avoided by overriding the method responsible for postponing email changes in the application's user model to ensure unconfirmed_email is persisted, or by manually setting changed_attributes["unconfirmed_email"] = nil for Mongoid-based applications.