Ruby/activerecord/4.2.7.rc1
Databases on Rails. Build a persistent domain model by mapping database tables to Ruby classes. Strong conventions for associations, validations, aggregations, migrations, and testing come baked-in.
https://rubygems.org/gems/activerecord
MIT
8 Security Vulnerabilities
Active Record RCE bug with Serialized Columns
- https://nvd.nist.gov/vuln/detail/CVE-2022-32224
- https://github.com/rails/rails/commit/611990f1a6c137c2d56b1ba06b27e5d2434dcd6a
- https://discuss.rubyonrails.org/t/cve-2022-32224-possible-rce-escalation-bug-with-serialized-columns-in-active-record/81017
- https://github.com/advisories/GHSA-3hhc-qp5v-9p2j
- https://github.com/rubysec/ruby-advisory-db/blob/master/gems/activerecord/CVE-2022-32224.yml
- https://groups.google.com/g/rubyonrails-security/c/MmFO3LYQE8U
When serialized columns that use YAML (the default) are deserialized, Rails uses YAML.unsafe_load to convert the YAML data in to Ruby objects. If an attacker can manipulate data in the database (via means like SQL injection), then it may be possible for the attacker to escalate to an RCE.
There are no feasible workarounds for this issue, but other coders (such as JSON) are not impacted.
Denial of Service Vulnerability in ActiveRecord's PostgreSQL adapter
- https://github.com/rails/rails/releases/tag/v7.0.4.1
- https://github.com/advisories/GHSA-579w-22j4-4749
- https://github.com/rubysec/ruby-advisory-db/blob/master/gems/activerecord/CVE-2022-44566.yml
- https://rubyonrails.org/2023/1/17/Rails-Versions-6-0-6-1-6-1-7-1-7-0-4-1-have-been-released
- https://nvd.nist.gov/vuln/detail/CVE-2022-44566
- https://code.jeremyevans.net/2022-11-01-forcing-sequential-scans-on-postgresql.html
- https://discuss.rubyonrails.org/t/cve-2022-44566-possible-denial-of-service-vulnerability-in-activerecords-postgresql-adapter/82119
- https://github.com/rails/rails/commit/4f44aa9d514e701ada92b5cf08beccf566eeaebf
- https://github.com/rails/rails/commit/82bcdc011e2ff674e7dd8fd8cee3a831c908d29b
- https://github.com/rails/rails/releases/tag/v6.1.7.1
- https://makandracards.com/railslts/508019-rails-5-2-lts-changelog#section-jan-20th-2023-rails-version-5-2-8-15
There is a potential denial of service vulnerability present in ActiveRecord’s PostgreSQL adapter.
This has been assigned the CVE identifier CVE-2022-44566.
Versions Affected: All. Not affected: None. Fixed Versions: 5.2.8.15 (Rails LTS, which is a paid service and not part of the rubygem), 6.1.7.1, 7.0.4.1
Impact: In ActiveRecord <7.0.4.1 and <6.1.7.1, when a value outside the range for a 64bit signed integer is provided to the PostgreSQL connection adapter, it will treat the target column type as numeric. Comparing integer values against numeric values can result in a slow sequential scan resulting in potential Denial of Service. Releases
The fixed releases are available at the normal locations. Workarounds
Ensure that user supplied input which is provided to ActiveRecord clauses do not contain integers wider than a signed 64bit representation or floats. Patches
To aid users who aren’t able to upgrade immediately we have provided patches for the supported release series in accordance with our maintenance policy 1 regarding security issues. They are in git-am format and consist of a single changeset.
6-1-Added-integer-width-check-to-PostgreSQL-Quoting.patch - Patch for 6.1 series
7-0-Added-integer-width-check-to-PostgreSQL-Quoting.patch - Patch for 7.0 series
Moderate severity vulnerability that affects activerecord
Withdrawn, accidental duplicate publish.
Active Record in Ruby on Rails 4.2.x before 4.2.7.1 does not properly consider differences in parameter handling between the Active Record component and the JSON implementation, which allows remote attackers to bypass intended database-query restrictions and perform NULL checks or trigger missing WHERE clauses via a crafted request, as demonstrated by certain [nil]
values, a related issue to CVE-2012-2660, CVE-2012-2694, and CVE-2013-0155.
ActiveRecord in Ruby on Rails allows database-query bypass
- https://nvd.nist.gov/vuln/detail/CVE-2016-6317
- https://github.com/advisories/GHSA-pr3r-4wrp-r2pv
- https://groups.google.com/forum/#!topic/ruby-security-ann/WccgKSKiPZA
- http://rhn.redhat.com/errata/RHSA-2016-1855.html
- http://weblog.rubyonrails.org/2016/8/11/Rails-5-0-0-1-4-2-7-2-and-3-2-22-3-have-been-released/
- http://www.openwall.com/lists/oss-security/2016/08/11/4
- http://www.securityfocus.com/bid/92434
- https://github.com/rubysec/ruby-advisory-db/blob/master/gems/activerecord/CVE-2016-6317.yml
- https://groups.google.com/forum/#!topic/rubyonrails-security/rgO20zYW33s
Active Record in Ruby on Rails 4.2.x before 4.2.7.1 does not properly consider differences in parameter handling between the Active Record component and the JSON implementation, which allows remote attackers to bypass intended database-query restrictions and perform NULL checks or trigger missing WHERE clauses via a crafted request, as demonstrated by certain [nil]
values, a related issue to CVE-2012-2660, CVE-2012-2694, and CVE-2013-0155.
Unsafe Query Generation Risk in Active Record
There is a vulnerability when Active Record is used in conjunction with JSON parameter parsing. This vulnerability is similar to CVE-2012-2660, CVE-2012-2694 and CVE-2013-0155.
Impact
Due to the way Active Record interprets parameters in combination with the way
that JSON parameters are parsed, it is possible for an attacker to issue
unexpected database queries with IS NULL
or empty where clauses. This issue
does not let an attacker insert arbitrary values into an SQL query, however
they can cause the query to check for NULL or eliminate a WHERE clause when
most users wouldn't expect it.
For example, a system has password reset with token functionality:
unless params[:token].nil?
user = User.find_by_token(params[:token])
user.reset_password!
end
An attacker can craft a request such that params[:token]
will return
[nil]
. The [nil]
value will bypass the test for nil, but will still add
an IN ('xyz', NULL)
clause to the SQL query.
Similarly, an attacker can craft a request such that params[:token]
will
return an empty hash. An empty hash will eliminate the WHERE clause of the
query, but can bypass the nil?
check.
Note that this impacts not only dynamic finders (find_by_*
) but also
relations (User.where(:name => params[:name])
).
All users running an affected release should either upgrade or use one of the work arounds immediately. All users running an affected release should upgrade immediately. Please note, this vulnerability is a variant of CVE-2012-2660, CVE-2012-2694, and CVE-2013-0155. Even if you upgraded to address those issues, you must take action again.
If this chance in behavior impacts your application, you can manually decode the original values from the request like so:
`ActiveSupport::JSON.decode(request.body)`
Workarounds
This problem can be mitigated by casting the parameter to a string before passing it to Active Record. For example:
unless params[:token].nil? || params[:token].to_s.empty?
user = User.find_by_token(params[:token].to_s)
user.reset_password!
end
Possible DoS Vulnerability in Active Record PostgreSQL adapter
There is a possible DoS vulnerability in the PostgreSQL adapter in Active Record. This vulnerability has been assigned the CVE identifier CVE-2021-22880.
Versions Affected: >= 4.2.0 Not affected: < 4.2.0 Fixed Versions: 6.1.2.1, 6.0.3.5, 5.2.4.5
Impact
Carefully crafted input can cause the input validation in the money
type of
the PostgreSQL adapter in Active Record to spend too much time in a regular
expression, resulting in the potential for a DoS attack.
This only impacts Rails applications that are using PostgreSQL along with money type columns that take user input.
Workarounds
In the case a patch can't be applied, the following monkey patch can be used in an initializer:
module ActiveRecord
module ConnectionAdapters
module PostgreSQL
module OID # :nodoc:
class Money < Type::Decimal # :nodoc:
def cast_value(value)
return value unless ::String === value
value = value.sub(/^\((.+)\)$/, '-\1') # (4)
case value
when /^-?\D*+[\d,]+\.\d{2}$/ # (1)
value.gsub!(/[^-\d.]/, "")
when /^-?\D*+[\d.]+,\d{2}$/ # (2)
value.gsub!(/[^-\d,]/, "").sub!(/,/, ".")
end
super(value)
end
end
end
end
end
end
Possible RCE escalation bug with Serialized Columns in Active Record
There is a possible escalation to RCE when using YAML serialized columns in Active Record. This vulnerability has been assigned the CVE identifier CVE-2022-32224.
Versions Affected: All. Not affected: None Fixed Versions: 7.0.3.1, 6.1.6.1, 6.0.5.1, 5.2.8.1
Impact
When serialized columns that use YAML (the default) are deserialized, Rails
uses YAML.unsafe_load
to convert the YAML data in to Ruby objects. If an
attacker can manipulate data in the database (via means like SQL injection),
then it may be possible for the attacker to escalate to an RCE.
Impacted Active Record models will look something like this:
class User < ApplicationRecord
serialize :options # Vulnerable: Uses YAML for serialization
serialize :values, Array # Vulnerable: Uses YAML for serialization
serialize :values, JSON # Not vulnerable
end
All users running an affected release should either upgrade or use one of the workarounds immediately.
Releases
The FIXED releases are available at the normal locations.
The released versions change the default YAML deserializer to use
YAML.safe_load
, which prevents deserialization of possibly dangerous
objects. This may introduce backwards compatibility issues with existing
data.
In order to cope with that situation, the released version also contains two new Active Record configuration options. The configuration options are as follows:
config.active_record.use_yaml_unsafe_load
When set to true, this configuration option tells Rails to use the old
unsafe
YAML loading strategy, maintaining the existing behavior but leaving
the possible escalation vulnerability in place. Setting this option to true
is not recommended, but can aid in upgrading.
config.active_record.yaml_column_permitted_classes
The safe YAML
loading method does not allow all classes to be deserialized
by default. This option allows you to specify classes deemed safe
in your
application. For example, if your application uses Symbol and Time in
serialized data, you can add Symbol and Time to the allowed list as follows:
config.active_record.yaml_column_permitted_classes = [Symbol, Date, Time]
Workarounds
There are no feasible workarounds for this issue, but other coders (such as JSON) are not impacted.
Denial of Service Vulnerability in ActiveRecord’s PostgreSQL adapter
There is a potential denial of service vulnerability present in ActiveRecord’s PostgreSQL adapter.
This has been assigned the CVE identifier CVE-2022-44566.
Versions Affected: All. Not affected: None. Fixed Versions: 5.2.8.15 (Rails LTS), 6.1.7.1, 7.0.4.1
Impact
In ActiveRecord <7.0.4.1 and <6.1.7.1, when a value outside the range for a 64bit signed integer is provided to the PostgreSQL connection adapter, it will treat the target column type as numeric. Comparing integer values against numeric values can result in a slow sequential scan resulting in potential Denial of Service.
Workarounds
Ensure that user supplied input which is provided to ActiveRecord clauses do not contain integers wider than a signed 64bit representation or floats.
489 Other Versions
Version | License | Security | Released | |
---|---|---|---|---|
8.0.0 | MIT | 2024-11-07 - 22:30 | 5 days | |
8.0.0.rc2 | MIT | 2024-10-30 - 00:31 | 14 days | |
8.0.0.rc1 | MIT | 2024-10-19 - 01:43 | 25 days | |
8.0.0.beta1 | MIT | 2024-09-26 - 15:05 | about 2 months | |
7.2.2 | MIT | 2024-10-31 - 01:47 | 13 days | |
7.2.1.2 | MIT | 2024-10-23 - 22:34 | 20 days | |
7.2.1.1 | MIT | 2024-10-15 - 20:46 | 28 days | |
7.2.1 | MIT | 2024-08-22 - 19:45 | 3 months | |
7.2.0 | MIT | 2024-08-09 - 23:26 | 3 months | |
7.2.0.rc1 | MIT | 2024-08-06 - 17:01 | 3 months | |
7.2.0.beta3 | MIT | 2024-07-11 - 15:19 | 4 months | |
7.2.0.beta2 | MIT | 2024-06-04 - 18:14 | 5 months | |
7.2.0.beta1 | MIT | 2024-05-29 - 23:38 | 6 months | |
7.1.5 | MIT | 2024-10-31 - 01:34 | 13 days | |
7.1.4.2 | MIT | 2024-10-23 - 22:28 | 20 days | |
7.1.4.1 | MIT | 2024-10-15 - 20:40 | 28 days | |
7.1.4 | MIT | 2024-08-22 - 21:26 | 3 months | |
7.1.3.4 | MIT | 2024-06-04 - 18:00 | 5 months | |
7.1.3.3 | MIT | 2024-05-16 - 19:21 | 6 months | |
7.1.3.2 | MIT | 2024-02-21 - 21:45 | 9 months | |
7.1.3.1 | MIT | 2024-02-21 - 18:46 | 9 months | |
7.1.3 | MIT | 2024-01-16 - 22:53 | 10 months | |
7.1.2 | MIT | 2023-11-10 - 21:50 | about 1 year | |
7.1.1 | MIT | 2023-10-11 - 22:16 | about 1 year | |
7.1.0 | MIT | 2023-10-05 - 08:06 | about 1 year | |
7.1.0.rc2 | MIT | 2023-10-01 - 21:59 | about 1 year | |
7.1.0.rc1 | MIT | 2023-09-27 - 04:00 | about 1 year | |
7.1.0.beta1 | MIT | 2023-09-13 - 00:37 | about 1 year | |
7.0.8.6 | MIT | 2024-10-23 - 22:23 | 20 days | |
7.0.8.5 | MIT | 2024-10-15 - 20:23 | 28 days | |
7.0.8.4 | MIT | 2024-06-04 - 17:56 | 5 months | |
7.0.8.3 | MIT | 2024-05-17 - 19:52 | 6 months | |
7.0.8.2 | MIT | 2024-05-16 - 18:58 | 6 months | |
7.0.8.1 | MIT | 2024-02-21 - 18:42 | 9 months | |
7.0.8 | MIT | 2023-09-09 - 19:11 | about 1 year | |
7.0.7.2 | MIT | 2023-08-22 - 20:10 | about 1 year | |
7.0.7.1 | MIT | 2023-08-22 - 17:20 | about 1 year | |
7.0.7 | MIT | 2023-08-09 - 23:56 | over 1 year | |
7.0.6 | MIT | 2023-06-29 - 20:54 | over 1 year | |
7.0.5.1 | MIT | 2023-06-26 - 21:35 | over 1 year | |
7.0.5 | MIT | 2023-05-24 - 18:58 | over 1 year | |
7.0.4.3 | MIT | 2023-03-13 - 18:53 | over 1 year | |
7.0.4.2 | MIT | 2023-01-25 - 03:14 | almost 2 years | |
7.0.4.1 | MIT | 2023-01-17 - 18:55 | almost 2 years | |
7.0.4 | MIT | 4 | 2022-09-09 - 18:42 | about 2 years |
7.0.3.1 | MIT | 4 | 2022-07-12 - 17:31 | over 2 years |
7.0.3 | MIT | 6 | 2022-05-09 - 13:40 | over 2 years |
7.0.2.4 | MIT | 6 | 2022-04-26 - 19:33 | over 2 years |
7.0.2.3 | MIT | 6 | 2022-03-08 - 17:50 | over 2 years |
7.0.2.2 | MIT | 6 | 2022-02-11 - 19:43 | almost 3 years |
7.0.2.1 | MIT | 6 | 2022-02-11 - 18:18 | almost 3 years |
7.0.2 | MIT | 6 | 2022-02-08 - 23:11 | almost 3 years |
7.0.1 | MIT | 6 | 2022-01-06 - 21:53 | almost 3 years |
7.0.0 | MIT | 6 | 2021-12-15 - 23:43 | almost 3 years |
7.0.0.rc3 | MIT | 3 | 2021-12-14 - 23:04 | almost 3 years |
7.0.0.rc2 | MIT | 3 | 2021-12-14 - 19:39 | almost 3 years |
7.0.0.rc1 | MIT | 3 | 2021-12-06 - 21:28 | almost 3 years |
7.0.0.alpha2 | MIT | 3 | 2021-09-15 - 23:14 | about 3 years |
7.0.0.alpha1 | MIT | 3 | 2021-09-15 - 21:56 | about 3 years |
6.1.7.10 | MIT | 2024-10-23 - 21:58 | 20 days | |
6.1.7.9 | MIT | 2024-10-15 - 21:25 | 28 days | |
6.1.7.8 | MIT | 2024-06-04 - 17:55 | 5 months | |
6.1.7.7 | MIT | 2024-02-21 - 18:38 | 9 months | |
6.1.7.6 | MIT | 2023-08-22 - 20:07 | about 1 year | |
6.1.7.5 | MIT | 2023-08-22 - 17:15 | about 1 year | |
6.1.7.4 | MIT | 2023-06-26 - 21:31 | over 1 year | |
6.1.7.3 | MIT | 2023-03-13 - 18:48 | over 1 year | |
6.1.7.2 | MIT | 2023-01-25 - 03:23 | almost 2 years | |
6.1.7.1 | MIT | 2023-01-17 - 18:54 | almost 2 years | |
6.1.7 | MIT | 2 | 2022-09-09 - 18:38 | about 2 years |
6.1.6.1 | MIT | 2 | 2022-07-12 - 17:29 | over 2 years |
6.1.6 | MIT | 3 | 2022-05-09 - 13:44 | over 2 years |
6.1.5.1 | MIT | 3 | 2022-04-26 - 19:30 | over 2 years |
6.1.5 | MIT | 3 | 2022-03-10 - 21:12 | over 2 years |
6.1.4.7 | MIT | 3 | 2022-03-08 - 17:48 | over 2 years |
6.1.4.6 | MIT | 3 | 2022-02-11 - 19:41 | almost 3 years |
6.1.4.5 | MIT | 3 | 2022-02-11 - 18:22 | almost 3 years |
6.1.4.4 | MIT | 3 | 2021-12-15 - 22:52 | almost 3 years |
6.1.4.3 | MIT | 3 | 2021-12-14 - 23:02 | almost 3 years |
6.1.4.2 | MIT | 3 | 2021-12-14 - 19:45 | almost 3 years |
6.1.4.1 | MIT | 3 | 2021-08-19 - 16:25 | about 3 years |
6.1.4 | MIT | 3 | 2021-06-24 - 20:40 | over 3 years |
6.1.3.2 | MIT | 3 | 2021-05-05 - 15:34 | over 3 years |
6.1.3.1 | MIT | 3 | 2021-03-26 - 18:06 | over 3 years |
6.1.3 | MIT | 3 | 2021-02-17 - 18:41 | over 3 years |
6.1.2.1 | MIT | 3 | 2021-02-10 - 20:44 | almost 4 years |
6.1.2 | MIT | 5 | 2021-02-09 - 21:28 | almost 4 years |
6.1.1 | MIT | 5 | 2021-01-07 - 22:58 | almost 4 years |
6.1.0 | MIT | 5 | 2020-12-09 - 19:56 | almost 4 years |
6.1.0.rc2 | MIT | 2 | 2020-12-01 - 22:00 | almost 4 years |
6.1.0.rc1 | MIT | 2 | 2020-11-02 - 21:14 | about 4 years |
6.0.6.1 | MIT | 2 | 2023-01-17 - 18:52 | almost 2 years |
6.0.6 | MIT | 3 | 2022-09-09 - 18:31 | about 2 years |
6.0.5.1 | MIT | 3 | 2022-07-12 - 17:28 | over 2 years |
6.0.5 | MIT | 4 | 2022-05-09 - 13:50 | over 2 years |
6.0.4.8 | MIT | 4 | 2022-04-26 - 19:26 | over 2 years |
6.0.4.7 | MIT | 4 | 2022-03-08 - 17:47 | over 2 years |
6.0.4.6 | MIT | 4 | 2022-02-11 - 19:39 | almost 3 years |
6.0.4.5 | MIT | 4 | 2022-02-11 - 18:24 | almost 3 years |
6.0.4.4 | MIT | 4 | 2021-12-15 - 22:46 | almost 3 years |