CVE-2024-22244
published 2024-06-10CVE-2024-22244: Open Redirect in Harbor <=v2.8.4, <=v2.9.2, and <=v2.10.0 may redirect a user to a malicious site.
PriorityP423medium6.1CVSS 3.1
AVNACLPRNUIRSCCLILAN
EPSS
0.36%
28.3th percentile
Open Redirect in Harbor <=v2.8.4, <=v2.9.2, and <=v2.10.0 may redirect a user to a malicious site.
Affected
11 ranges
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| github.com | goharbor_harbor | >= 0 < 2.8.5 | 2.8.5 |
| github.com | goharbor_harbor | >= 0 < 2.8.5+incompatible | 2.8.5+incompatible |
| github.com | goharbor_harbor | >= 2.10.0 < 2.10.1 | 2.10.1 |
| github.com | goharbor_harbor | >= 2.10.0+incompatible < 2.10.1+incompatible | 2.10.1+incompatible |
| github.com | goharbor_harbor | >= 2.9.0 < 2.9.3 | 2.9.3 |
| github.com | goharbor_harbor | >= 2.9.0+incompatible < 2.9.3+incompatible | 2.9.3+incompatible |
| harbor | harbor | 2.10 – 2.10.0 | — |
| harbor | harbor | 2.8 – 2.8.4 | — |
| linuxfoundation | harbor | — | — |
| linuxfoundation | harbor | >= 2.8.0 < 2.8.5 | 2.8.5 |
| linuxfoundation | harbor | >= 2.9.0 < 2.9.3 | 2.9.3 |
Stop checking back — get the weekly exploitation signal.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
OSV
Open Redirect URL in Harbor in github.com/goharbor/harbor
osv·2024-06-14
CVE-2024-22244 Open Redirect URL in Harbor in github.com/goharbor/harbor
Open Redirect URL in Harbor in github.com/goharbor/harbor
Open Redirect URL in Harbor in github.com/goharbor/harbor
GHSA
Open Redirect URL in Harbor
ghsa·2024-06-02
CVE-2024-22244 [MEDIUM] CWE-601 Open Redirect URL in Harbor
Open Redirect URL in Harbor
### Description
Under OIDC authentication mode, there is a redirect_url parameter exposed in the URL which is used to redirect the current user to the defined location after the successful OIDC login, This redirect_url can be an ambiguous URL and can be used to embed a phishing URL.
For example: if a user clicks the URL with a malicious redirect_url:
```
https:///c/oidc/login?redirect_url=https://
```
It might redirect the current user without their knowledge to a malicious site, posing a potential risk.
To avoid this issue, the redirect_url should be checked if it is a local path when reading it from the original request URL.
```
//src/core/controllers/oidc.go
...
redirectURL := oc.Ctx.Request.URL.Query().Get("redirect_url")
if !utils.IsLocalPath(redirectURL)
OSV
Open Redirect URL in Harbor
osv·2024-06-02
CVE-2024-22244 [MEDIUM] Open Redirect URL in Harbor
Open Redirect URL in Harbor
### Description
Under OIDC authentication mode, there is a redirect_url parameter exposed in the URL which is used to redirect the current user to the defined location after the successful OIDC login, This redirect_url can be an ambiguous URL and can be used to embed a phishing URL.
For example: if a user clicks the URL with a malicious redirect_url:
```
https:///c/oidc/login?redirect_url=https://
```
It might redirect the current user without their knowledge to a malicious site, posing a potential risk.
To avoid this issue, the redirect_url should be checked if it is a local path when reading it from the original request URL.
```
//src/core/controllers/oidc.go
...
redirectURL := oc.Ctx.Request.URL.Query().Get("redirect_url")
if !utils.IsLocalPath(redirectURL)
No detection rules found.
No public exploits indexed.
No writeups or analysis indexed.
2024-06-10
Published