Ruby/activerecord/7.0.3
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
6 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
SQL Injection Vulnerability via ActiveRecord comments
- https://github.com/rails/rails/releases/tag/v7.0.4.1
- https://github.com/rails/rails/commit/d7aba06953f9fa789c411676b941d20df8ef73de
- https://github.com/advisories/GHSA-hq7p-j377-6v63
- https://github.com/rubysec/ruby-advisory-db/blob/master/gems/activerecord/CVE-2023-22794.yml
- https://nvd.nist.gov/vuln/detail/CVE-2023-22794
- https://discuss.rubyonrails.org/t/cve-2023-22794-sql-injection-vulnerability-via-activerecord-comments/82117
- https://www.debian.org/security/2023/dsa-5372
- https://security.netapp.com/advisory/ntap-20240202-0008/
There is a possible vulnerability in ActiveRecord related to the sanitization of comments. This vulnerability has been assigned the CVE identifier CVE-2023-22794.
Versions Affected: >= 6.0.0 Not affected: < 6.0.0 Fixed Versions: 6.0.6.1, 6.1.7.1, 7.0.4.1 Impact
Previously the implementation of escaping for comments was insufficient for
If malicious user input is passed to either the annotate query method, the optimizer_hints query method, or through the QueryLogs interface which automatically adds annotations, it may be sent to the database with insufficient sanitization and be able to inject SQL outside of the comment.
In most cases these interfaces won’t be used with user input and users should avoid doing so.
Example vulnerable code:
```
Post.where(id: 1).annotate(#{params[:user_input]}
)
Post.where(id: 1).optimizerhints("#{params[:userinput]}")
Example vulnerable QueryLogs configuration (the default configuration is not vulnerable):
config.activerecord.querylog_tags = [
{
something: -> {
The FIXED releases are available at the normal locations. Workarounds
Avoid passing user input to annotate and avoid using QueryLogs configuration which can include user input. Patches
To aid users who aren’t able to upgrade immediately we have provided patches for the two supported release series. They are in git-am format and consist of a single changeset.
6-0-Make-sanitize_as_sql_comment-more-strict.patch - Patch for 6.0 series
6-1-Make-sanitize_as_sql_comment-more-strict.patch - Patch for 6.1 series
7-0-Make-sanitize_as_sql_comment-more-strict.patch - Patch for 7.0 series
Please note that only the 7.0.Z and 6.1.Z series are supported at present, and 6.0.Z for severe vulnerabilities. Users of earlier unsupported releases are advised to upgrade as soon as possible as we cannot guarantee the continued availability of security fixes for unsupported releases.
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.
SQL Injection Vulnerability via ActiveRecord comments
There is a possible vulnerability in ActiveRecord related to the sanitization of comments. This vulnerability has been assigned the CVE identifier CVE-2023-22794.
Versions Affected: >= 6.0.0 Not affected: < 6.0.0 Fixed Versions: 6.0.6.1, 6.1.7.1, 7.0.4.1
Impact
Previously the implementation of escaping for comments was insufficient for
If malicious user input is passed to either the annotate query method, the optimizer_hints query method, or through the QueryLogs interface which automatically adds annotations, it may be sent to the database with insufficient sanitization and be able to inject SQL outside of the comment.
In most cases these interfaces won’t be used with user input and users should avoid doing so.
Example vulnerable code:
```
Post.where(id: 1).annotate(#{params[:user_input]}
)
Post.where(id: 1).optimizerhints("#{params[:userinput]}") ```
Example vulnerable QueryLogs configuration (the default configuration is not
vulnerable):
config.active_record.query_log_tags = [
{
something: -> { <some value including user input> }
}
]
All users running an affected release should either upgrade or use one of the
workarounds immediately.
Workarounds
Avoid passing user input to annotate and avoid using QueryLogs configuration which can include user input.
489 Other Versions
Version | License | Security | Released | |
---|---|---|---|---|
8.0.0 | MIT | 2024-11-07 - 22:30 | 6 days | |
8.0.0.rc2 | MIT | 2024-10-30 - 00:31 | 15 days | |
8.0.0.rc1 | MIT | 2024-10-19 - 01:43 | 26 days | |
8.0.0.beta1 | MIT | 2024-09-26 - 15:05 | about 2 months | |
7.2.2 | MIT | 2024-10-31 - 01:47 | 14 days | |
7.2.1.2 | MIT | 2024-10-23 - 22:34 | 21 days | |
7.2.1.1 | MIT | 2024-10-15 - 20:46 | 29 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 | 14 days | |
7.1.4.2 | MIT | 2024-10-23 - 22:28 | 21 days | |
7.1.4.1 | MIT | 2024-10-15 - 20:40 | 29 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 | 21 days | |
7.0.8.5 | MIT | 2024-10-15 - 20:23 | 29 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 | 21 days | |
6.1.7.9 | MIT | 2024-10-15 - 21:25 | 29 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 |