| 0 |
| url |
VCID-4w1v-z4zj-6ydp |
| vulnerability_id |
VCID-4w1v-z4zj-6ydp |
| summary |
Untrusted users can run pending migrations in production in Rails
There is a vulnerability in versions of Rails prior to 6.0.3.2 that allowed an untrusted user to run any pending migrations on a Rails app running in production.
This vulnerability has been assigned the CVE identifier CVE-2020-8185.
Versions Affected: 6.0.0 < rails < 6.0.3.2
Not affected: Applications with `config.action_dispatch.show_exceptions = false` (this is not a default setting in production)
Fixed Versions: rails >= 6.0.3.2
Impact
------
Using this issue, an attacker would be able to execute any migrations that are pending for a Rails app running in production mode. It is important to note that an attacker is limited to running migrations the application developer has already defined in their application and ones that have not already run.
Workarounds
-----------
Until such time as the patch can be applied, application developers should disable the ActionDispatch middleware in their production environment via a line such as this one in their config/environment/production.rb:
`config.middleware.delete ActionDispatch::ActionableExceptions` |
| references |
| 0 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
|
| fixed_packages |
| 0 |
| url |
pkg:gem/actionpack@6.0.3.2 |
| purl |
pkg:gem/actionpack@6.0.3.2 |
| is_vulnerable |
true |
| affected_by_vulnerabilities |
| 0 |
| vulnerability |
VCID-25ru-4qks-7yf3 |
|
| 1 |
| vulnerability |
VCID-4fyg-vxpj-c7d7 |
|
| 2 |
| vulnerability |
VCID-98gu-r7wd-cuah |
|
| 3 |
| vulnerability |
VCID-be5x-uyc6-sudm |
|
| 4 |
| vulnerability |
VCID-dd87-gevs-juhe |
|
| 5 |
| vulnerability |
VCID-eeru-6pyc-8bcd |
|
| 6 |
| vulnerability |
VCID-fdqs-v9b2-53gu |
|
| 7 |
| vulnerability |
VCID-fgtd-zx7r-rygb |
|
| 8 |
| vulnerability |
VCID-k6aw-heeb-wke2 |
|
| 9 |
| vulnerability |
VCID-kshz-ckjc-77ab |
|
| 10 |
| vulnerability |
VCID-m9ud-s6w6-x7ac |
|
| 11 |
| vulnerability |
VCID-mgjg-juur-rfe5 |
|
| 12 |
| vulnerability |
VCID-n7ga-1sx4-yfcv |
|
| 13 |
| vulnerability |
VCID-nmz3-ux68-dkfd |
|
| 14 |
| vulnerability |
VCID-qth9-abgp-wyaq |
|
| 15 |
| vulnerability |
VCID-re7g-rxbm-dbd9 |
|
| 16 |
| vulnerability |
VCID-uppk-66vw-gbb9 |
|
| 17 |
| vulnerability |
VCID-v2hk-dfbe-5khc |
|
| 18 |
| vulnerability |
VCID-z16b-zfgu-13a9 |
|
|
| resource_url |
http://public2.vulnerablecode.io/packages/pkg:gem/actionpack@6.0.3.2 |
|
|
| aliases |
CVE-2020-8185, GHSA-c6qr-h5vq-59jc
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-4w1v-z4zj-6ydp |
|
| 1 |
| url |
VCID-6z21-pd9d-pfgk |
| vulnerability_id |
VCID-6z21-pd9d-pfgk |
| summary |
Possible Strong Parameters Bypass in ActionPack
There is a strong parameters bypass vector in ActionPack.
Versions Affected: rails <= 6.0.3
Not affected: rails < 5.0.0
Fixed Versions: rails >= 5.2.4.3, rails >= 6.0.3.1
Impact
------
In some cases user supplied information can be inadvertently leaked from
Strong Parameters. Specifically the return value of `each`, or `each_value`,
or `each_pair` will return the underlying "untrusted" hash of data that was
read from the parameters. Applications that use this return value may be
inadvertently use untrusted user input.
Impacted code will look something like this:
```
def update
# Attacker has included the parameter: `{ is_admin: true }`
User.update(clean_up_params)
end
def clean_up_params
params.each { |k, v| SomeModel.check(v) if k == :name }
end
```
Note the mistaken use of `each` in the `clean_up_params` method in the above
example.
Workarounds
-----------
Do not use the return values of `each`, `each_value`, or `each_pair` in your
application. |
| references |
| 0 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
|
| 15 |
|
| 16 |
|
| 17 |
|
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
|
|
| fixed_packages |
| 0 |
| url |
pkg:gem/actionpack@5.2.4.3 |
| purl |
pkg:gem/actionpack@5.2.4.3 |
| is_vulnerable |
true |
| affected_by_vulnerabilities |
| 0 |
| vulnerability |
VCID-4fyg-vxpj-c7d7 |
|
| 1 |
| vulnerability |
VCID-4w1v-z4zj-6ydp |
|
| 2 |
| vulnerability |
VCID-98gu-r7wd-cuah |
|
| 3 |
| vulnerability |
VCID-be5x-uyc6-sudm |
|
| 4 |
| vulnerability |
VCID-dd87-gevs-juhe |
|
| 5 |
| vulnerability |
VCID-eeru-6pyc-8bcd |
|
| 6 |
| vulnerability |
VCID-k6aw-heeb-wke2 |
|
| 7 |
| vulnerability |
VCID-kshz-ckjc-77ab |
|
| 8 |
| vulnerability |
VCID-m9ud-s6w6-x7ac |
|
| 9 |
| vulnerability |
VCID-n7ga-1sx4-yfcv |
|
| 10 |
| vulnerability |
VCID-nmz3-ux68-dkfd |
|
| 11 |
| vulnerability |
VCID-qth9-abgp-wyaq |
|
| 12 |
| vulnerability |
VCID-re7g-rxbm-dbd9 |
|
| 13 |
| vulnerability |
VCID-v2hk-dfbe-5khc |
|
| 14 |
| vulnerability |
VCID-z16b-zfgu-13a9 |
|
|
| resource_url |
http://public2.vulnerablecode.io/packages/pkg:gem/actionpack@5.2.4.3 |
|
| 1 |
| url |
pkg:gem/actionpack@6.0.3.1 |
| purl |
pkg:gem/actionpack@6.0.3.1 |
| is_vulnerable |
true |
| affected_by_vulnerabilities |
| 0 |
| vulnerability |
VCID-25ru-4qks-7yf3 |
|
| 1 |
| vulnerability |
VCID-4fyg-vxpj-c7d7 |
|
| 2 |
| vulnerability |
VCID-4w1v-z4zj-6ydp |
|
| 3 |
| vulnerability |
VCID-98gu-r7wd-cuah |
|
| 4 |
| vulnerability |
VCID-be5x-uyc6-sudm |
|
| 5 |
| vulnerability |
VCID-dd87-gevs-juhe |
|
| 6 |
| vulnerability |
VCID-eeru-6pyc-8bcd |
|
| 7 |
| vulnerability |
VCID-fdqs-v9b2-53gu |
|
| 8 |
| vulnerability |
VCID-fgtd-zx7r-rygb |
|
| 9 |
| vulnerability |
VCID-k6aw-heeb-wke2 |
|
| 10 |
| vulnerability |
VCID-kshz-ckjc-77ab |
|
| 11 |
| vulnerability |
VCID-m9ud-s6w6-x7ac |
|
| 12 |
| vulnerability |
VCID-mgjg-juur-rfe5 |
|
| 13 |
| vulnerability |
VCID-n7ga-1sx4-yfcv |
|
| 14 |
| vulnerability |
VCID-nmz3-ux68-dkfd |
|
| 15 |
| vulnerability |
VCID-qth9-abgp-wyaq |
|
| 16 |
| vulnerability |
VCID-re7g-rxbm-dbd9 |
|
| 17 |
| vulnerability |
VCID-uppk-66vw-gbb9 |
|
| 18 |
| vulnerability |
VCID-v2hk-dfbe-5khc |
|
| 19 |
| vulnerability |
VCID-z16b-zfgu-13a9 |
|
|
| resource_url |
http://public2.vulnerablecode.io/packages/pkg:gem/actionpack@6.0.3.1 |
|
|
| aliases |
CVE-2020-8164, GHSA-8727-m6gj-mc37
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-6z21-pd9d-pfgk |
|
| 2 |
| url |
VCID-98gu-r7wd-cuah |
| vulnerability_id |
VCID-98gu-r7wd-cuah |
| summary |
ReDoS based DoS vulnerability in Action Dispatch
There is a possible regular expression based DoS vulnerability in Action Dispatch. This vulnerability has been assigned the CVE identifier CVE-2023-22792.
Versions Affected: >= 3.0.0 Not affected: < 3.0.0 Fixed Versions: 5.2.8.15 (Rails LTS), 6.1.7.1, 7.0.4.1
Impact
Specially crafted cookies, in combination with a specially crafted X_FORWARDED_HOST header can cause the regular expression engine to enter a state of catastrophic backtracking. This can cause the process to use large amounts of CPU and memory, leading to a possible DoS vulnerability 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.
Workarounds
We recommend that all users upgrade to one of the FIXED versions. In the meantime, users can mitigate this vulnerability by using a load balancer or other device to filter out malicious X_FORWARDED_HOST headers before they reach the application.
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-1-Use-string-split-instead-of-regex-for-domain-parts.patch - Patch for 6.1 series
7-0-Use-string-split-instead-of-regex-for-domain-parts.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.
https://rubyonrails.org/2023/1/17/Rails-Versions-6-0-6-1-6-1-7-1-7-0-4-1-have-been-released |
| references |
| 0 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
|
| 15 |
|
| 16 |
|
| 17 |
|
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
|
| 25 |
|
|
| fixed_packages |
|
| aliases |
CVE-2023-22792, GHSA-p84v-45xj-wwqj, GMS-2023-58
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-98gu-r7wd-cuah |
|
| 3 |
| url |
VCID-dd87-gevs-juhe |
| vulnerability_id |
VCID-dd87-gevs-juhe |
| summary |
Possible ReDoS vulnerability in query parameter filtering in Action Dispatch
There is a possible ReDoS vulnerability in the query parameter filtering routines of Action Dispatch. This vulnerability has been assigned the CVE identifier CVE-2024-41128.
Impact
------
Carefully crafted query parameters can cause query parameter filtering to take an unexpected amount of time, possibly resulting in a DoS vulnerability. All users running an affected release should either upgrade or apply the relevant patch immediately.
Ruby 3.2 has mitigations for this problem, so Rails applications using Ruby 3.2 or newer are unaffected. Rails 8.0.0.beta1 depends on Ruby 3.2 or greater so is unaffected.
Releases
--------
The fixed releases are available at the normal locations.
Workarounds
-----------
Users on Ruby 3.2 are unaffected by this issue.
Credits
-------
Thanks to [scyoon](https://hackerone.com/scyoon) for the report and patches! |
| references |
| 0 |
|
| 1 |
| reference_url |
https://access.redhat.com/security/cve/cve-2024-41128 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
6.6 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U |
|
| 1 |
| value |
6.6 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X |
|
| 2 |
| value |
MODERATE |
| scoring_system |
generic_textual |
| scoring_elements |
|
|
| 3 |
| value |
Track |
| scoring_system |
ssvc |
| scoring_elements |
SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2024-10-17T17:09:25Z/ |
|
|
| url |
https://access.redhat.com/security/cve/cve-2024-41128 |
|
| 2 |
|
| 3 |
| reference_url |
https://bugzilla.redhat.com/show_bug.cgi?id=2319036 |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
6.6 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U |
|
| 1 |
| value |
6.6 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X |
|
| 2 |
| value |
MODERATE |
| scoring_system |
generic_textual |
| scoring_elements |
|
|
| 3 |
| value |
Track |
| scoring_system |
ssvc |
| scoring_elements |
SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2024-10-17T17:09:25Z/ |
|
|
| url |
https://bugzilla.redhat.com/show_bug.cgi?id=2319036 |
|
| 4 |
|
| 5 |
|
| 6 |
| reference_url |
https://github.com/rails/rails |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
6.6 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X |
|
| 1 |
| value |
MODERATE |
| scoring_system |
generic_textual |
| scoring_elements |
|
|
|
| url |
https://github.com/rails/rails |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
| reference_url |
https://github.com/rails/rails/security/advisories/GHSA-x76w-6vjr-8xgj |
| reference_id |
|
| reference_type |
|
| scores |
| 0 |
| value |
MODERATE |
| scoring_system |
cvssv3.1_qr |
| scoring_elements |
|
|
| 1 |
| value |
6.6 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U |
|
| 2 |
| value |
6.6 |
| scoring_system |
cvssv4 |
| scoring_elements |
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X |
|
| 3 |
| value |
MODERATE |
| scoring_system |
generic_textual |
| scoring_elements |
|
|
| 4 |
| value |
Track |
| scoring_system |
ssvc |
| scoring_elements |
SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2024-10-17T17:09:25Z/ |
|
|
| url |
https://github.com/rails/rails/security/advisories/GHSA-x76w-6vjr-8xgj |
|
| 12 |
|
| 13 |
|
| 14 |
|
| 15 |
|
| 16 |
|
|
| fixed_packages |
|
| aliases |
CVE-2024-41128, GHSA-x76w-6vjr-8xgj
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-dd87-gevs-juhe |
|
| 4 |
| url |
VCID-eeru-6pyc-8bcd |
| vulnerability_id |
VCID-eeru-6pyc-8bcd |
| summary |
Possible ReDoS vulnerability in HTTP Token authentication in Action Controller
There is a possible ReDoS vulnerability in Action Controller's HTTP Token authentication. This vulnerability has been assigned the CVE identifier CVE-2024-47887.
Impact
------
For applications using HTTP Token authentication via `authenticate_or_request_with_http_token` or similar, a carefully crafted header may cause header parsing to take an unexpected amount of time, possibly resulting in a DoS vulnerability. All users running an affected release should either upgrade or apply the relevant patch immediately.
Ruby 3.2 has mitigations for this problem, so Rails applications using Ruby 3.2 or newer are unaffected. Rails 8.0.0.beta1 depends on Ruby 3.2 or greater so is unaffected.
Releases
--------
The fixed releases are available at the normal locations.
Workarounds
-----------
Users on Ruby 3.2 are unaffected by this issue.
Credits
-------
Thanks to [scyoon](https://hackerone.com/scyoon) for reporting |
| references |
| 0 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
|
| 15 |
|
|
| fixed_packages |
|
| aliases |
CVE-2024-47887, GHSA-vfg9-r3fq-jvx4
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-eeru-6pyc-8bcd |
|
| 5 |
| url |
VCID-k6aw-heeb-wke2 |
| vulnerability_id |
VCID-k6aw-heeb-wke2 |
| summary |
ReDoS based DoS vulnerability in Action Dispatch
There is a possible regular expression based DoS vulnerability in Action Dispatch related to the If-None-Match header. This vulnerability has been assigned the CVE identifier CVE-2023-22795.
Versions Affected: All Not affected: None Fixed Versions: 5.2.8.15 (Rails LTS), 6.1.7.1, 7.0.4.1
Impact
A specially crafted HTTP If-None-Match header can cause the regular expression engine to enter a state of catastrophic backtracking, when on a version of Ruby below 3.2.0. This can cause the process to use large amounts of CPU and memory, leading to a possible DoS vulnerability 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.
Workarounds
We recommend that all users upgrade to one of the FIXED versions. In the meantime, users can mitigate this vulnerability by using a load balancer or other device to filter out malicious If-None-Match headers before they reach the application.
Users on Ruby 3.2.0 or greater are not affected by this vulnerability.
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-1-Avoid-regex-backtracking-on-If-None-Match-header.patch - Patch for 6.1 series
7-0-Avoid-regex-backtracking-on-If-None-Match-header.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. |
| references |
| 0 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
|
| 15 |
|
| 16 |
|
| 17 |
|
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
|
| 25 |
|
| 26 |
|
|
| fixed_packages |
|
| aliases |
CVE-2023-22795, GHSA-8xww-x3g3-6jcv, GMS-2023-56
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-k6aw-heeb-wke2 |
|
| 6 |
| url |
VCID-kshz-ckjc-77ab |
| vulnerability_id |
VCID-kshz-ckjc-77ab |
| summary |
tfm-rubygem-actionview: Possible cross-site scripting vulnerability in Action View tag helpers |
| references |
| 0 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
|
| 15 |
|
| 16 |
|
| 17 |
|
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
|
| 25 |
|
|
| fixed_packages |
|
| aliases |
CVE-2022-27777, GHSA-ch3h-j2vf-95pv, GMS-2022-1138
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-kshz-ckjc-77ab |
|
| 7 |
|
| 8 |
| url |
VCID-n7ga-1sx4-yfcv |
| vulnerability_id |
VCID-n7ga-1sx4-yfcv |
| summary |
rubygem-actionpack: Possible Open Redirect Vulnerability in Action Pack |
| references |
|
| fixed_packages |
| 0 |
| url |
pkg:gem/actionpack@6.1.3.2 |
| purl |
pkg:gem/actionpack@6.1.3.2 |
| is_vulnerable |
true |
| affected_by_vulnerabilities |
| 0 |
| vulnerability |
VCID-98gu-r7wd-cuah |
|
| 1 |
| vulnerability |
VCID-b7z5-h1bw-tya9 |
|
| 2 |
| vulnerability |
VCID-be5x-uyc6-sudm |
|
| 3 |
| vulnerability |
VCID-dd87-gevs-juhe |
|
| 4 |
| vulnerability |
VCID-eeru-6pyc-8bcd |
|
| 5 |
| vulnerability |
VCID-fdqs-v9b2-53gu |
|
| 6 |
| vulnerability |
VCID-fgtd-zx7r-rygb |
|
| 7 |
| vulnerability |
VCID-k6aw-heeb-wke2 |
|
| 8 |
| vulnerability |
VCID-kshz-ckjc-77ab |
|
| 9 |
| vulnerability |
VCID-m9ud-s6w6-x7ac |
|
| 10 |
| vulnerability |
VCID-nmz3-ux68-dkfd |
|
| 11 |
| vulnerability |
VCID-qth9-abgp-wyaq |
|
| 12 |
| vulnerability |
VCID-re7g-rxbm-dbd9 |
|
| 13 |
| vulnerability |
VCID-v2hk-dfbe-5khc |
|
|
| resource_url |
http://public2.vulnerablecode.io/packages/pkg:gem/actionpack@6.1.3.2 |
|
|
| aliases |
CVE-2021-22903, GHSA-5hq2-xf89-9jxq
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-n7ga-1sx4-yfcv |
|
| 9 |
|
| 10 |
| url |
VCID-qth9-abgp-wyaq |
| vulnerability_id |
VCID-qth9-abgp-wyaq |
| summary |
Possible Content Security Policy bypass in Action Dispatch
There is a possible Cross Site Scripting (XSS) vulnerability in the `content_security_policy` helper in Action Pack.
Impact
------
Applications which set Content-Security-Policy (CSP) headers dynamically from untrusted user input may be vulnerable to carefully crafted inputs being able to inject new directives into the CSP. This could lead to a bypass of the CSP and its protection against XSS and other attacks.
Releases
--------
The fixed releases are available at the normal locations.
Workarounds
-----------
Applications can avoid setting CSP headers dynamically from untrusted input, or can validate/sanitize that input.
Credits
-------
Thanks to [ryotak](https://hackerone.com/ryotak) for the report! |
| references |
| 0 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
|
|
| fixed_packages |
|
| aliases |
CVE-2024-54133, GHSA-vfm5-rmrh-j26v
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-qth9-abgp-wyaq |
|
| 11 |
| url |
VCID-v2hk-dfbe-5khc |
| vulnerability_id |
VCID-v2hk-dfbe-5khc |
| summary |
Rails has possible ReDoS vulnerability in Accept header parsing in Action Dispatch
# Possible ReDoS vulnerability in Accept header parsing in Action Dispatch
There is a possible ReDoS vulnerability in the Accept header parsing routines
of Action Dispatch. This vulnerability has been assigned the CVE identifier
CVE-2024-26142.
Versions Affected: >= 7.1.0, < 7.1.3.1
Not affected: < 7.1.0
Fixed Versions: 7.1.3.1
Impact
------
Carefully crafted Accept headers can cause Accept header parsing in Action
Dispatch to take an unexpected amount of time, possibly resulting in a DoS
vulnerability. All users running an affected release should either upgrade or
use one of the workarounds immediately.
Ruby 3.2 has mitigations for this problem, so Rails applications using Ruby
3.2 or newer are unaffected.
Releases
--------
The fixed releases are available at the normal locations.
Workarounds
-----------
There are no feasible workarounds for this issue.
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.
* 7-1-accept-redox.patch - Patch for 7.1 series
Credits
-------
Thanks [svalkanov](https://hackerone.com/svalkanov) for the report and patch! |
| references |
| 0 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
|
| fixed_packages |
|
| aliases |
CVE-2024-26142, GHSA-jjhx-jhvp-74wq
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-v2hk-dfbe-5khc |
|
| 12 |
| url |
VCID-z16b-zfgu-13a9 |
| vulnerability_id |
VCID-z16b-zfgu-13a9 |
| summary |
rails: Possible DoS Vulnerability in Action Controller Token Authentication |
| references |
| 0 |
|
| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
|
| 15 |
|
| 16 |
|
| 17 |
|
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
|
|
| fixed_packages |
| 0 |
| url |
pkg:gem/actionpack@5.2.4.6 |
| purl |
pkg:gem/actionpack@5.2.4.6 |
| is_vulnerable |
true |
| affected_by_vulnerabilities |
| 0 |
| vulnerability |
VCID-98gu-r7wd-cuah |
|
| 1 |
| vulnerability |
VCID-be5x-uyc6-sudm |
|
| 2 |
| vulnerability |
VCID-dd87-gevs-juhe |
|
| 3 |
| vulnerability |
VCID-eeru-6pyc-8bcd |
|
| 4 |
| vulnerability |
VCID-k6aw-heeb-wke2 |
|
| 5 |
| vulnerability |
VCID-kshz-ckjc-77ab |
|
| 6 |
| vulnerability |
VCID-m9ud-s6w6-x7ac |
|
| 7 |
| vulnerability |
VCID-n7ga-1sx4-yfcv |
|
| 8 |
| vulnerability |
VCID-nmz3-ux68-dkfd |
|
| 9 |
| vulnerability |
VCID-qth9-abgp-wyaq |
|
| 10 |
| vulnerability |
VCID-re7g-rxbm-dbd9 |
|
| 11 |
| vulnerability |
VCID-v2hk-dfbe-5khc |
|
|
| resource_url |
http://public2.vulnerablecode.io/packages/pkg:gem/actionpack@5.2.4.6 |
|
| 1 |
| url |
pkg:gem/actionpack@5.2.6 |
| purl |
pkg:gem/actionpack@5.2.6 |
| is_vulnerable |
true |
| affected_by_vulnerabilities |
| 0 |
| vulnerability |
VCID-98gu-r7wd-cuah |
|
| 1 |
| vulnerability |
VCID-be5x-uyc6-sudm |
|
| 2 |
| vulnerability |
VCID-dd87-gevs-juhe |
|
| 3 |
| vulnerability |
VCID-eeru-6pyc-8bcd |
|
| 4 |
| vulnerability |
VCID-k6aw-heeb-wke2 |
|
| 5 |
| vulnerability |
VCID-kshz-ckjc-77ab |
|
| 6 |
| vulnerability |
VCID-m9ud-s6w6-x7ac |
|
| 7 |
| vulnerability |
VCID-n7ga-1sx4-yfcv |
|
| 8 |
| vulnerability |
VCID-nmz3-ux68-dkfd |
|
| 9 |
| vulnerability |
VCID-qth9-abgp-wyaq |
|
| 10 |
| vulnerability |
VCID-re7g-rxbm-dbd9 |
|
| 11 |
| vulnerability |
VCID-v2hk-dfbe-5khc |
|
|
| resource_url |
http://public2.vulnerablecode.io/packages/pkg:gem/actionpack@5.2.6 |
|
| 2 |
| url |
pkg:gem/actionpack@6.0.3.7 |
| purl |
pkg:gem/actionpack@6.0.3.7 |
| is_vulnerable |
true |
| affected_by_vulnerabilities |
| 0 |
| vulnerability |
VCID-98gu-r7wd-cuah |
|
| 1 |
| vulnerability |
VCID-be5x-uyc6-sudm |
|
| 2 |
| vulnerability |
VCID-dd87-gevs-juhe |
|
| 3 |
| vulnerability |
VCID-eeru-6pyc-8bcd |
|
| 4 |
| vulnerability |
VCID-fdqs-v9b2-53gu |
|
| 5 |
| vulnerability |
VCID-fgtd-zx7r-rygb |
|
| 6 |
| vulnerability |
VCID-k6aw-heeb-wke2 |
|
| 7 |
| vulnerability |
VCID-kshz-ckjc-77ab |
|
| 8 |
| vulnerability |
VCID-m9ud-s6w6-x7ac |
|
| 9 |
| vulnerability |
VCID-n7ga-1sx4-yfcv |
|
| 10 |
| vulnerability |
VCID-nmz3-ux68-dkfd |
|
| 11 |
| vulnerability |
VCID-qth9-abgp-wyaq |
|
| 12 |
| vulnerability |
VCID-re7g-rxbm-dbd9 |
|
| 13 |
| vulnerability |
VCID-v2hk-dfbe-5khc |
|
|
| resource_url |
http://public2.vulnerablecode.io/packages/pkg:gem/actionpack@6.0.3.7 |
|
| 3 |
| url |
pkg:gem/actionpack@6.1.3.2 |
| purl |
pkg:gem/actionpack@6.1.3.2 |
| is_vulnerable |
true |
| affected_by_vulnerabilities |
| 0 |
| vulnerability |
VCID-98gu-r7wd-cuah |
|
| 1 |
| vulnerability |
VCID-b7z5-h1bw-tya9 |
|
| 2 |
| vulnerability |
VCID-be5x-uyc6-sudm |
|
| 3 |
| vulnerability |
VCID-dd87-gevs-juhe |
|
| 4 |
| vulnerability |
VCID-eeru-6pyc-8bcd |
|
| 5 |
| vulnerability |
VCID-fdqs-v9b2-53gu |
|
| 6 |
| vulnerability |
VCID-fgtd-zx7r-rygb |
|
| 7 |
| vulnerability |
VCID-k6aw-heeb-wke2 |
|
| 8 |
| vulnerability |
VCID-kshz-ckjc-77ab |
|
| 9 |
| vulnerability |
VCID-m9ud-s6w6-x7ac |
|
| 10 |
| vulnerability |
VCID-nmz3-ux68-dkfd |
|
| 11 |
| vulnerability |
VCID-qth9-abgp-wyaq |
|
| 12 |
| vulnerability |
VCID-re7g-rxbm-dbd9 |
|
| 13 |
| vulnerability |
VCID-v2hk-dfbe-5khc |
|
|
| resource_url |
http://public2.vulnerablecode.io/packages/pkg:gem/actionpack@6.1.3.2 |
|
|
| aliases |
CVE-2021-22904, GHSA-7wjx-3g7j-8584
|
| risk_score |
null |
| exploitability |
null |
| weighted_severity |
null |
| resource_url |
http://public2.vulnerablecode.io/vulnerabilities/VCID-z16b-zfgu-13a9 |
|