Skip to content

Commit

Permalink
* Strip nils from collections on JSON and XML posts. [CVE-2013-0155] …
Browse files Browse the repository at this point in the history
…* dealing with empty hashes. Thanks Damien Mathieu
  • Loading branch information
tenderlove committed Jan 8, 2013
1 parent 95fe9ef commit d5cd97b
Show file tree
Hide file tree
Showing 8 changed files with 67 additions and 10 deletions.
4 changes: 4 additions & 0 deletions actionpack/CHANGELOG.md
@@ -1,3 +1,7 @@
## Rails 3.2.11 ##

* Strip nils from collections on JSON and XML posts. [CVE-2013-0155]

## Rails 3.2.10 ##

## Rails 3.2.9 (Nov 12, 2012) ##
Expand Down
10 changes: 4 additions & 6 deletions actionpack/lib/action_dispatch/http/request.rb
Expand Up @@ -247,18 +247,14 @@ def local?
LOCALHOST.any? { |local_ip| local_ip === remote_addr && local_ip === remote_ip }
end

protected

# Remove nils from the params hash
def deep_munge(hash)
keys = hash.keys.find_all { |k| hash[k] == [nil] }
keys.each { |k| hash[k] = nil }

hash.each_value do |v|
hash.each do |k, v|
case v
when Array
v.grep(Hash) { |x| deep_munge(x) }
v.compact!
hash[k] = nil if v.empty?
when Hash
deep_munge(v)
end
Expand All @@ -267,6 +263,8 @@ def deep_munge(hash)
hash
end

protected

def parse_query(qs)
deep_munge(super)
end
Expand Down
4 changes: 2 additions & 2 deletions actionpack/lib/action_dispatch/middleware/params_parser.rb
Expand Up @@ -38,13 +38,13 @@ def parse_formatted_parameters(env)
when Proc
strategy.call(request.raw_post)
when :xml_simple, :xml_node
data = Hash.from_xml(request.body.read) || {}
data = request.deep_munge(Hash.from_xml(request.body.read) || {})
request.body.rewind if request.body.respond_to?(:rewind)
data.with_indifferent_access
when :yaml
YAML.load(request.raw_post)
when :json
data = ActiveSupport::JSON.decode(request.body)
data = request.deep_munge ActiveSupport::JSON.decode(request.body)
request.body.rewind if request.body.respond_to?(:rewind)
data = {:_json => data} unless data.is_a?(Hash)
data.with_indifferent_access
Expand Down
15 changes: 15 additions & 0 deletions actionpack/test/dispatch/request/json_params_parsing_test.rb
Expand Up @@ -30,6 +30,21 @@ def teardown
)
end

test "nils are stripped from collections" do
assert_parses(
{"person" => nil},
"{\"person\":[null]}", { 'CONTENT_TYPE' => 'application/json' }
)
assert_parses(
{"person" => ['foo']},
"{\"person\":[\"foo\",null]}", { 'CONTENT_TYPE' => 'application/json' }
)
assert_parses(
{"person" => nil},
"{\"person\":[null, null]}", { 'CONTENT_TYPE' => 'application/json' }
)
end

test "logs error if parsing unsuccessful" do
with_test_routing do
output = StringIO.new
Expand Down
17 changes: 17 additions & 0 deletions actionpack/test/dispatch/request/xml_params_parsing_test.rb
Expand Up @@ -30,6 +30,23 @@ def call(env)
assert_equal "<ok>bar</ok>", resp.body
end

def assert_parses(expected, xml)
with_test_routing do
post "/parse", xml, default_headers
assert_response :ok
assert_equal(expected, TestController.last_request_parameters)
end
end

test "nils are stripped from collections" do
assert_parses(
{"hash" => { "person" => nil} },
"<hash><person type=\"array\"><person nil=\"true\"/></person></hash>")
assert_parses(
{"hash" => { "person" => ['foo']} },
"<hash><person type=\"array\"><person>foo</person><person nil=\"true\"/></person>\n</hash>")
end

test "parses hash params" do
with_test_routing do
xml = "<person><name>David</name></person>"
Expand Down
4 changes: 4 additions & 0 deletions activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
## Rails 3.2.11 ##

* Fix querying with an empty hash *Damien Mathieu* [CVE-2013-0155]

## Rails 3.2.10 ##

* CVE-2012-5664 options hashes should only be extracted if there are extra
Expand Down
7 changes: 6 additions & 1 deletion activerecord/lib/active_record/relation/predicate_builder.rb
Expand Up @@ -6,7 +6,12 @@ def self.build_from_hash(engine, attributes, default_table, allow_table_name = t

if allow_table_name && value.is_a?(Hash)
table = Arel::Table.new(column, engine)
build_from_hash(engine, value, table, false)

if value.empty?
'1 = 2'
else
build_from_hash(engine, value, table, false)
end
else
column = column.to_s

Expand Down
16 changes: 15 additions & 1 deletion activerecord/test/cases/relation/where_test.rb
@@ -1,9 +1,11 @@
require "cases/helper"
require 'models/post'
require 'models/comment'
require 'models/edge'

module ActiveRecord
class WhereTest < ActiveRecord::TestCase
fixtures :posts
fixtures :posts, :edges

def test_where_error
assert_raises(ActiveRecord::StatementInvalid) do
Expand All @@ -21,5 +23,17 @@ def test_where_with_table_name
post = Post.first
assert_equal post, Post.where(:posts => { 'id' => post.id }).first
end

def test_where_with_table_name_and_empty_hash
assert_equal 0, Post.where(:posts => {}).count
end

def test_where_with_table_name_and_empty_array
assert_equal 0, Post.where(:id => []).count
end

def test_where_with_empty_hash_and_no_foreign_key
assert_equal 0, Edge.where(:sink => {}).count
end
end
end

0 comments on commit d5cd97b

Please sign in to comment.