GHSA-63mc-hw7g-86rr
Fix: phoenixframework/phoenix@7f7b971GHSA-63mc-hw7g-86rr is a CWE-754 vulnerability in phoenix. O3 Security confirms whether GHSA-63mc-hw7g-86rr is actually reachable in your code before you act, and blocks exploitation at runtime until you patch.
Phoenix: Presence keys colliding with `Object.prototype` members break existence checks
Exploitation Status
Proof-of-concept exploit code exists
- CISA’s SSVC triage found public proof-of-concept exploit code for this CVE, though no confirmed active exploitation.
Exploitation and automatability from CISA’s SSVC triage for GHSA-63mc-hw7g-86rr.
EPSS Exploitation Probability
EPSS (Exploit Prediction Scoring System) is a daily probability model maintained by FIRST.org. It estimates the likelihood a CVE will be exploited in production environments within the next 30 days, derived from real-world threat intelligence signals.
Real-World Exposure
phoenix💧phoenix💧phoenix💧phoenix📦phoenix📦phoenix📦phoenix📦phoenixReal-time download stats are indexed for npm and PyPI packages. This vulnerability affects Hex packages — download data is not available via public APIs for these ecosystems.
Description
Summary
The Phoenix JavaScript presence client (assets/js/phoenix/presence.js) tests whether a presence already exists using a bare truthiness check (state[key]) rather than an own-property check. Because applications commonly track presences under a client-supplied username or id, the presence key can be attacker-controlled. A user who joins a channel and picks a key that names an Object.prototype member (__proto__, constructor, toString, hasOwnProperty, and similar) makes the lookup return the inherited Object.prototype object instead of undefined, which is truthy. The code then reads .metas.map(...) off it and throws an uncaught TypeError, breaking presence sync for every viewer of that channel topic. Any authenticated channel participant can trigger it.
Details
The victim is any browser subscribed to a presence channel. When it receives the server's presence_state message, it invokes Presence.syncState, which iterates the incoming presences and checks whether each one already exists locally via let currentPresence = state[key]. state is a plain object inheriting from Object.prototype. For an ordinary key like alice, state["alice"] is undefined (falsy) and the safe path runs. For the key __proto__ (or constructor, toString, etc.), state["__proto__"] does not resolve to a tracked presence but to JavaScript's built-in Object.prototype, which is truthy. The if(currentPresence) guard passes, and the code evaluates currentPresence.metas.map(m => m.phx_ref). Since Object.prototype.metas is undefined, calling .map on it throws a TypeError.
Phoenix wraps no try/catch around channel binding callbacks, so the TypeError propagates out of the message handler: this.state is never updated and onSync() never fires. The malicious key is tracked server-side, so it is re-pushed on every presence update and keeps re-throwing, leaving presence permanently broken until the attacker leaves. Presence.syncDiff uses the same unsafe state[key] existence-check pattern, so presence diffs fail identically.
Two scoping points matter. The impact is per channel topic, not global: presence state is per-topic on the server and per-Presence-instance in the browser, so only viewers of the topic carrying the malicious key are affected. The bug is a read-time confusion of the prototype object, not prototype pollution: the crash occurs on the state["__proto__"] read in syncState, before any state[key] = ... write is reached, so Object.prototype is never mutated and nothing leaks across channels. The fix builds the state and accumulator objects with Object.create(null) (or a Map) and gates existence checks with Object.prototype.hasOwnProperty.call(obj, key).
If an application does not pass a client-controlled key to Presence.track, it is not affected.
PoC
- Connect to an application that uses
Phoenix.Presenceand tracks presences under a client-chosen key (e.g. a username). - Join a presence channel choosing the key
__proto__(orconstructor,toString,hasOwnProperty). - The server tracks the presence and pushes
presence_state/presence_diffto every subscriber of that topic. - Each viewer's
Presence.syncState(orsyncDiff) readsstate["__proto__"], gets the truthyObject.prototype, and throws an uncaughtTypeError. - Presence sync stays broken for all viewers of the topic until the attacker leaves the channel.
Impact
An attacker with ordinary channel access can cause a persistent, stored client-side denial of service against every browser viewing a presence channel topic, freezing presence updates for all of them until the attacker disconnects. Any application driving the Phoenix JavaScript presence client with user-influenced presence keys is affected.
Affected Packages
| Ecosystem | Package | Vulnerable range | Fix |
|---|---|---|---|
| 💧Hex | phoenix | ≥ 1.2.0-rc.0&&< 1.5.15 | 1.5.15 |
| 💧Hex | phoenix | ≥ 1.6.0-rc.0&&< 1.6.17 | 1.6.17 |
| 💧Hex | phoenix | ≥ 1.7.0-rc.0&&< 1.7.24 | 1.7.24 |
| 💧Hex | phoenix | ≥ 1.8.0-rc.0&&< 1.8.9 | 1.8.9 |
| 📦npm | phoenix | ≥ 1.2.0-rc.0&&< 1.5.15 | 1.5.15 |
| 📦npm | phoenix | ≥ 1.6.0-rc.0&&< 1.6.17 | 1.6.17 |
Detection & mitigation playbook
Open-source dependencyDetect
Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for phoenix. O3's reachability analysis confirms whether the vulnerable code path is actually invoked in your application, so you act on real exposure instead of every transitive match.
Fix
Update phoenix to 1.5.15 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms GHSA-63mc-hw7g-86rr is resolved across your whole dependency graph.
Workarounds
If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.
How O3 protects you
O3 pinpoints whether GHSA-63mc-hw7g-86rr is reachable in your code and exactly where to fix it, then blocks exploitation in production at runtime until the patched version is deployed.
Tailored to GHSA-63mc-hw7g-86rr. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.
Frequently Asked Questions
Is GHSA-63mc-hw7g-86rr in your dependencies?
O3 detects GHSA-63mc-hw7g-86rr across Hex, npm dependencies and uses function-level reachability to confirm whether the vulnerable code path is actually reachable — not just present. No false positives.