2021-12-15 15:13:07 +00:00
id : CVE-2021-44528
info :
name : Open Redirect in Host Authorization Middleware
author : geeknik
2022-01-15 19:05:39 +00:00
severity : medium
2021-12-15 15:13:07 +00:00
description : 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.
reference :
- https://seclists.org/oss-sec/2021/q4/att-160/7-0-host-authorzation-open-redirect.patch
2022-01-19 08:03:34 +00:00
- https://nvd.nist.gov/vuln/detail/CVE-2021-44528
2022-05-17 09:18:12 +00:00
- https://github.com/rails/rails/commit/0fccfb9a3097a9c4260c791f1a40b128517e7815
2022-01-15 19:05:39 +00:00
classification :
cvss-metrics : CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
2022-04-22 10:38:41 +00:00
cvss-score : 6.1
2022-01-15 19:05:39 +00:00
cve-id : CVE-2021-44528
cwe-id : CWE-601
2023-04-12 10:55:48 +00:00
cpe : cpe:2.3:a:rubyonrails:rails:*:*:*:*:*:*:*:*
epss-score : 0.00098
2022-08-27 04:41:18 +00:00
tags : seclists,cve,cve2021,redirect
2023-04-28 08:11:21 +00:00
metadata :
max-request : 1
2021-12-15 15:13:07 +00:00
2023-04-27 04:28:59 +00:00
http :
2021-12-15 15:13:07 +00:00
- raw :
- |
GET / HTTP/1.1
Host : {{Hostname}}
2022-06-06 10:40:15 +00:00
X-Forwarded-Host : //interact.sh
2021-12-15 15:13:07 +00:00
matchers-condition : and
matchers :
- type : regex
part : header
regex :
2023-03-01 18:22:21 +00:00
- '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/L403F0/1
2021-12-15 15:13:07 +00:00
- type : status
status :
- 301
- 302
- 307
- 308
2022-02-28 18:50:48 +00:00
# Enhanced by mp on 2022/02/28