Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 928054 Details for
Bug 1131240
CVE-2014-3514 rubygem-activerecord: Strong Parameter bypass with create_with
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh92 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
4-0-create_with.patch
4-0-create_with.patch (text/plain), 4.03 KB, created by
Kurt Seifried
on 2014-08-18 19:12:01 UTC
(
hide
)
Description:
4-0-create_with.patch
Filename:
MIME Type:
Creator:
Kurt Seifried
Created:
2014-08-18 19:12:01 UTC
Size:
4.03 KB
patch
obsolete
>From fa09fb592780efb23b4443bf548742ef41be1e30 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= > <rafaelmfranca@gmail.com> >Date: Wed, 6 Aug 2014 21:17:19 -0300 >Subject: [PATCH] Check attributes passed to create_with and where > >If the request parameters are passed to create_with and where they can >be used to do mass assignment when used in combination with >Relation#create. > >Fixes CVE-2014-3514 >--- > .../forbidden_attributes_protection.rb | 1 + > .../lib/active_record/relation/query_methods.rb | 16 ++++++++++-- > .../cases/forbidden_attributes_protection_test.rb | 30 ++++++++++++++++++++++ > 3 files changed, 45 insertions(+), 2 deletions(-) > >diff --git a/activemodel/lib/active_model/forbidden_attributes_protection.rb b/activemodel/lib/active_model/forbidden_attributes_protection.rb >index 7468f95..b4fa378 100644 >--- a/activemodel/lib/active_model/forbidden_attributes_protection.rb >+++ b/activemodel/lib/active_model/forbidden_attributes_protection.rb >@@ -23,5 +23,6 @@ module ActiveModel > attributes > end > end >+ alias :sanitize_forbidden_attributes :sanitize_for_mass_assignment > end > end >diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb >index c6695e0..adbbda9 100644 >--- a/activerecord/lib/active_record/relation/query_methods.rb >+++ b/activerecord/lib/active_record/relation/query_methods.rb >@@ -1,9 +1,12 @@ > require 'active_support/core_ext/array/wrap' >+require 'active_model/forbidden_attributes_protection' > > module ActiveRecord > module QueryMethods > extend ActiveSupport::Concern > >+ include ActiveModel::ForbiddenAttributesProtection >+ > # WhereChain objects act as placeholder for queries in which #where does not have any parameter. > # In this case, #where must be chained with #not to return a new relation. > class WhereChain >@@ -540,7 +543,10 @@ module ActiveRecord > if opts == :chain > WhereChain.new(self) > else >- references!(PredicateBuilder.references(opts)) if Hash === opts >+ if Hash === opts >+ opts = sanitize_forbidden_attributes(opts) >+ references!(PredicateBuilder.references(opts)) >+ end > > self.where_values += build_where(opts, rest) > self >@@ -678,7 +684,13 @@ module ActiveRecord > end > > def create_with!(value) # :nodoc: >- self.create_with_value = value ? create_with_value.merge(value) : {} >+ if value >+ value = sanitize_forbidden_attributes(value) >+ self.create_with_value = create_with_value.merge(value) >+ else >+ self.create_with_value = {} >+ end >+ > self > end > >diff --git a/activerecord/test/cases/forbidden_attributes_protection_test.rb b/activerecord/test/cases/forbidden_attributes_protection_test.rb >index 490b599..3e7f379 100644 >--- a/activerecord/test/cases/forbidden_attributes_protection_test.rb >+++ b/activerecord/test/cases/forbidden_attributes_protection_test.rb >@@ -61,4 +61,34 @@ class ForbiddenAttributesProtectionTest < ActiveRecord::TestCase > assert_equal 'Guille', person.first_name > assert_equal 'm', person.gender > end >+ >+ def test_create_with_checks_permitted >+ params = ProtectedParams.new(first_name: 'Guille', gender: 'm') >+ >+ assert_raises(ActiveModel::ForbiddenAttributesError) do >+ Person.create_with(params).create! >+ end >+ end >+ >+ def test_create_with_works_with_params_values >+ params = ProtectedParams.new(first_name: 'Guille') >+ >+ person = Person.create_with(first_name: params[:first_name]).create! >+ assert_equal 'Guille', person.first_name >+ end >+ >+ def test_where_checks_permitted >+ params = ProtectedParams.new(first_name: 'Guille', gender: 'm') >+ >+ assert_raises(ActiveModel::ForbiddenAttributesError) do >+ Person.where(params).create! >+ end >+ end >+ >+ def test_where_works_with_params_values >+ params = ProtectedParams.new(first_name: 'Guille') >+ >+ person = Person.where(first_name: params[:first_name]).create! >+ assert_equal 'Guille', person.first_name >+ end > end >-- >2.0.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1131240
: 928054 |
928055