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 672190 Details for
Bug 889649
CVE-2012-6496 rubygem-activerecord: find_by_* SQL Injection
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]
CVE-2012-5664-3-0-dynamic_finder_injection.patch
CVE-2012-5664-3-0-dynamic_finder_injection.patch (text/plain), 2.15 KB, created by
Kurt Seifried
on 2013-01-03 20:24:34 UTC
(
hide
)
Description:
CVE-2012-5664-3-0-dynamic_finder_injection.patch
Filename:
MIME Type:
Creator:
Kurt Seifried
Created:
2013-01-03 20:24:34 UTC
Size:
2.15 KB
patch
obsolete
>From 3542641ebd83a31f6b633b7af30ae6f37e563a1b Mon Sep 17 00:00:00 2001 >From: Aaron Patterson <aaron.patterson@gmail.com> >Date: Sun, 23 Dec 2012 11:07:07 -0800 >Subject: [PATCH] CVE-2012-5664 options hashes should only be extracted if > there are extra parameters > >--- > activerecord/lib/active_record/base.rb | 6 +++++- > activerecord/test/cases/finder_test.rb | 12 ++++++++++++ > 2 files changed, 17 insertions(+), 1 deletion(-) > >diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb >index f89b949..a05623d 100644 >--- a/activerecord/lib/active_record/base.rb >+++ b/activerecord/lib/active_record/base.rb >@@ -988,7 +988,11 @@ module ActiveRecord #:nodoc: > attribute_names = match.attribute_names > super unless all_attributes_exists?(attribute_names) > if match.finder? >- options = arguments.extract_options! >+ options = if arguments.length > attribute_names.size >+ arguments.extract_options! >+ else >+ {} >+ end > relation = options.any? ? construct_finder_arel(options, current_scoped_methods) : scoped > relation.send :find_by_attributes, match, attribute_names, *arguments > elsif match.instantiator? >diff --git a/activerecord/test/cases/finder_test.rb b/activerecord/test/cases/finder_test.rb >index 68b03a4..0705f15 100644 >--- a/activerecord/test/cases/finder_test.rb >+++ b/activerecord/test/cases/finder_test.rb >@@ -65,6 +65,18 @@ end > class FinderTest < ActiveRecord::TestCase > fixtures :companies, :topics, :entrants, :developers, :developers_projects, :posts, :comments, :accounts, :authors, :customers, :categories, :categorizations > >+ def test_find_by_id_with_hash >+ assert_raises(ActiveRecord::StatementInvalid) do >+ Post.find_by_id(:limit => 1) >+ end >+ end >+ >+ def test_find_by_title_and_id_with_hash >+ assert_raises(ActiveRecord::StatementInvalid) do >+ Post.find_by_title_and_id('foo', :limit => 1) >+ end >+ end >+ > def test_find > assert_equal(topics(:first).title, Topic.find(1).title) > end >-- >1.7.10.2 (Apple Git-33) >
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 889649
:
672189
| 672190 |
672191
|
672192