Incorrect Access Control Affecting simple_form package, versions <5.0.0


0.0
high

Snyk CVSS

    Attack Complexity Low

    Threat Intelligence

    Exploit Maturity Proof of concept
    EPSS 0.62% (79th percentile)
Expand this section
NVD
9.8 critical

Do your applications use this vulnerable package?

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 applications
  • Snyk ID SNYK-RUBY-SIMPLEFORM-469443
  • published 30 Sep 2019
  • disclosed 27 Sep 2019
  • credit Unknown

How to fix?

Upgrade simple_form to version 5.0.0 or higher.

Overview

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.

PoC

<%= simple_form_for @user do |f| %>
  <%= f.label @user_supplied_string %>
  ...
<% end %>