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 applicationsLearn about Nested Attributes Rejection Bypass vulnerabilities in an interactive lesson.
Start learningUpgrade ActiveRecord
to version 5.0.0.beta1.1, 4.2.5.1, 4.1.14.1, 3.2.22.1 or higher.
ActiveRecord is the Object-Relational Mapping (ORM) that comes out-of-the-box with Rails. It plays the role of Model in the MVC architecture employed by Rails.
Affected versions of this package are vulnerable to Nested Attributes Rejection Bypass. ActiveRecord handles updates in combination with destroy flags when destroying records is disabled. Attackers could use this do things like set attributes to invalid values and to clear all of the attributes amongst other things.
When using the nested attributes feature in ActiveRecord you can prevent the destruction of associated records by passing the allow_destroy: false
option to the accepts_nested_attributes_for
method. However due to a change in the commit a9b4b5d the _destroy
flag prevents the :reject_if
proc from being called because it assumes that the record will be destroyed anyway.
However this isn't true if :allow_destroy
is false so this leads to changes that would have been rejected being applied to the record.