Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correctly escape PostgreSQL arrays.
Thanks Godfrey Chan for reporting this!

Fixes: CVE-2014-0080
  • Loading branch information
tenderlove authored and rafaelfranca committed Feb 18, 2014
1 parent 08d0a11 commit 6256b1d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Expand Up @@ -142,12 +142,16 @@ def escape_hstore(value)
end
end

ARRAY_ESCAPE = "\\" * 2 * 2 # escape the backslash twice for PG arrays

def quote_and_escape(value)
case value
when "NULL"
value
else
"\"#{value.gsub(/"/,"\\\"")}\""
value = value.gsub(/\\/, ARRAY_ESCAPE)
value.gsub!(/"/,"\\\"")
"\"#{value}\""
end
end

Expand Down
8 changes: 8 additions & 0 deletions activerecord/test/cases/adapters/postgresql/datatype_test.rb
Expand Up @@ -78,6 +78,14 @@ def teardown
PostgresqlBitString, PostgresqlOid, PostgresqlTimestampWithZone, PostgresqlUUID].each(&:delete_all)
end

def test_array_escaping
unknown = %(foo\\",bar,baz,\\)
nicknames = ["hello_#{unknown}"]
ar = PostgresqlArray.create!(nicknames: nicknames, id: 100)
ar.reload
assert_equal nicknames, ar.nicknames
end

def test_data_type_of_array_types
assert_equal :integer, @first_array.column_for_attribute(:commission_by_quarter).type
assert_equal :text, @first_array.column_for_attribute(:nicknames).type
Expand Down

0 comments on commit 6256b1d

Please sign in to comment.