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 applicationsLearn about Incorrect Access Control vulnerabilities in an interactive lesson.
Start learningUpgrade simple_form
to version 5.0.0 or higher.
simple_form is a Forms made easy gem for Rails with simple DSL.
Affected versions of this package are vulnerable to Incorrect Access Control. For pages that build a form using user input, it is possible for an attacker to manipulate the input and send any method present in the form object. This is due to the file_method?
in lib/simple_form/form_builder.rb
treating a user-supplied string as a method call. The vulnerability is only applicable for pages that build forms based on user input.
<%= simple_form_for @user do |f| %>
<%= f.label @user_supplied_string %>
...
<% end %>