CVE-2021-22942: Medium severity rubyonrails Rails vulnerability

Published Aug 20, 2021
·
Updated

Overview

There is a possible open redirect vulnerability in the Host Authorization middleware in Action Pack. This vulnerability has been assigned the CVE identifier CVE-2021-22942.

Versions Affected: >= 6.0.0. Not affected: < 6.0.0 Fixed Versions: 6.1.4.1, 6.0.4.1

Impact

Specially crafted “X-Forwarded-Host” headers in combination with certain “allowed host” formats can cause the Host Authorization middleware in Action Pack to redirect users to a malicious website.

Impacted applications will have allowed hosts with a leading dot. For example, configuration files that look like this:

ruby config.hosts << '.EXAMPLE.com'

When an allowed host contains a leading dot, a specially crafted Host header can be used to redirect to a malicious website.

This vulnerability is similar to CVE-2021-22881, but CVE-2021-22881 did not take in to account domain name case sensitivity.

Releases

The fixed releases are available at the normal locations.

Workarounds

In the case a patch can’t be applied, the following monkey patch can be used in an initializer:

ruby module ActionDispatch class HostAuthorization HOSTNAME = /[a-z0-9.-]+|\[[a-f0-9]:[a-f0-9.:]+\]/i VALIDORIGINHOST = /\A(#{HOSTNAME})(?::\d+)?\z/ VALIDFORWARDEDHOST = /(?:\A|,[ ]?)(#{HOSTNAME})(?::\d+)?\z/

private def authorized?(request) originhost = request.getheader("HTTPHOST")&.slice(VALIDORIGINHOST, 1) || "" forwardedhost = request.xforwardedhost&.slice(VALIDFORWARDEDHOST, 1) || "" @permissions.allows?(originhost) && (forwardedhost.blank? || @permissions.allows?(forwardedhost)) end end end

Other sources

A possible open redirect vulnerability in the Host Authorization middleware in Action Pack >= 6.0.0 that could allow attackers to redirect users to a malicious website.

Affected Software

6 affected componentsFixes available
debian/rails<=2:6.1.4+dfsg-4, <=2:6.0.3.7+dfsg-2
debian/rails
2:5.2.2.1+dfsg-1+deb10u32:5.2.2.1+dfsg-1+deb10u52:6.0.3.7+dfsg-2+deb11u22:6.1.7.3+dfsg-12:6.1.7.3+dfsg-2
rubygems/actionpack>=6.1.0<=6.1.4
6.1.4.1
rubygems/actionpack>=6.0.0<=6.0.4
6.0.4.1
rubyonrails Rails>=6.0.0<6.0.4.1
rubyonrails Rails>=6.1.0<6.1.4.1

Event History

Aug 26, 2021
Advisory Published
via GitHub·08:36 PM
Oct 18, 2021
CVE Published
via MITRE·12:00 AM
Data Sourced
via MITRE·12:00 AM
DescriptionWeakness
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is CVE-2021-22942?

CVE-2021-22942 is a possible open redirect vulnerability in the Host Authorization middleware in Action Pack >= 6.0.0.

2

How does CVE-2021-22942 affect users?

CVE-2021-22942 could allow attackers to redirect users to a malicious website.

3

What is the severity of CVE-2021-22942?

CVE-2021-22942 has a severity rating of 6.1 (high).

4

How can I fix CVE-2021-22942?

There is no available fix for CVE-2021-22942 at the moment. It is recommended to monitor the official security sources for any updates or patches.

5

Where can I find more information about CVE-2021-22942?

You can find more information about CVE-2021-22942 at the following references: [link1](https://security-tracker.debian.org/tracker/CVE-2021-22942), [link2](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22942), [link3](https://www.openwall.com/lists/oss-security/2021/08/20/1)

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203