EEF-CVE-2026-58228

Source
https://cna.erlef.org/osv/EEF-CVE-2026-58228.html
Import Source
https://cna.erlef.org/osv/EEF-CVE-2026-58228.json
JSON Data
https://api.osv.dev/v1/vulns/EEF-CVE-2026-58228
Aliases
Published
2026-07-13T18:04:30Z
Modified
2026-09-08T03:45:08Z
Severity
  • 5.1 (Medium) CVSS_V4 - CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:A/VC:L/VI:L/VA:N/SC:H/SI:H/SA:N CVSS Calculator
Summary
Scheme validation bypass in Phoenix.LiveView.Utils leads to XSS via <.link>
Details

Summary

Cross-site scripting vulnerability in phoenixframework phoenix_live_view allows an attacker to bypass URL scheme validation and execute JavaScript in a victim's browser session.

The Phoenix.LiveView.Utils.valid_destination!/2 and Phoenix.LiveView.Utils.valid_live_navigation_destination!/2 functions in lib/phoenix_live_view/utils.ex rely on an internal uri_scheme/1 helper that only detects a scheme when the input's first byte is an ASCII letter. Inputs beginning with an ASCII control character or space fall through to a nil-returning clause, causing the URL to be treated as a safe relative path.

Standard browsers implement the WHATWG URL parser, which strips leading C0 control and space characters before parsing. As a result, an input such as " javascript:alert(1)" is passed unchanged into <.link href={...}> and, when clicked, is parsed by the browser as a javascript: URL that executes attacker-controlled script in the victim's session.

Applications that render user-supplied URLs (for example profile links, redirect targets, or external references) via <.link href={...}> are affected.

This issue affects phoenix_live_view: from 1.2.2 before 1.2.7.

Workarounds

Strip leading ASCII control and space bytes (code points 0x00 through 0x20) from any untrusted URL before passing it to <.link href={...}>, or reject such inputs outright. This aligns application-level validation with the WHATWG URL parser used by browsers and prevents the scheme-detection bypass.

Database specific
{
    "capec_ids": [
        "CAPEC-63"
    ],
    "cpe_ids": [
        "cpe:2.3:a:phoenixframework:phoenix_live_view:*:*:*:*:*:*:*:*"
    ],
    "cwe_ids": [
        "CWE-79"
    ]
}
References
Credits
    • Barna Kovacs - FINDER
    • Steffen Deusch - REMEDIATION_DEVELOPER
    • José Valim - ANALYST
    • Jonatan Männchen / EEF - ANALYST

Affected packages

Hex / phoenix_live_view

Package

Name
phoenix_live_view
Purl
pkg:hex/phoenix_live_view

Affected ranges

Type
SEMVER
Events
Introduced
1.2.2
Fixed
1.2.7

Affected versions

1.*
1.2.2
1.2.3
1.2.4
1.2.5
1.2.6

Database specific

source
"https://cna.erlef.org/osv/EEF-CVE-2026-58228.json"

Git / github.com/phoenixframework/phoenix_live_view

Affected ranges

Type
GIT
Repo
https://github.com/phoenixframework/phoenix_live_view
Events

Affected versions

v1.*
v1.2.2
v1.2.3
v1.2.4
v1.2.5
v1.2.6

Database specific

source
"https://cna.erlef.org/osv/EEF-CVE-2026-58228.json"