Vulnerability description

Allocation of Resources Without Limits or Throttling vulnerability in phoenixframework phoenix (Phoenix.Socket module) allows an unauthenticated attacker to cause a denial of service against any endpoint that mounts a Phoenix socket with a reachable channel transport (WebSocket or LongPoll).

This vulnerability is associated with program files lib/phoenix/socket.ex and program routine 'Elixir.Phoenix.Socket':handle_in/4.

Phoenix transports do not limit the number of channels that a single transport process may join. Every phx_join message a client sends over one connection starts a persistent channel process, and the socket process accepts an unbounded number of them. A single unauthenticated client can therefore open one WebSocket or LongPoll connection and stream a large number of phx_join messages, spawning hundreds of thousands of channel processes over that one connection and eventually reaching the BEAM maximum process limit. Once the process table is exhausted the virtual machine can no longer start new processes, denying service to legitimate traffic across the whole node. Because the amplification happens inside a single connection, network-layer connection caps and rate limiting do not mitigate it.

The fix adds a :max_channels_per_transport option (default 100) that bounds the number of channels a single transport process can join, forcing abusive clients to open many connections instead, where external load balancers and reverse proxies can throttle them.

This issue affects phoenix: from 0.11.0 before 1.5.15, from 1.6.0-rc.0 before 1.6.17, from 1.7.0-rc.0 before 1.7.24, and from 1.8.0-rc.0 before 1.8.9.

Affected

pkg:hex/phoenix

Status Type Version Changes / Fixed in
affected semver 0.11.0 < 1.5.15
affected semver 1.6.0-rc.0 < 1.6.17
affected semver 1.7.0-rc.0 < 1.7.24
affected semver 1.8.0-rc.0 < 1.8.9

pkg:github/phoenixframework/phoenix

Module Source File Routine
Phoenix.Socket lib/phoenix/socket.ex Phoenix.Socket.handle_in/4
Status Type Version Changes / Fixed in
affected git 14a297e880

Configurations

The application must mount a Phoenix socket that defines channels and expose it over HTTP so that a client can reach a channel transport (WebSocket or LongPoll) and send phx_join messages. The WebSocket transport is enabled by default on a mounted socket, while the LongPoll transport is opt-in. Applications that do not mount a socket with channels are not affected.

Workarounds

Front the socket endpoint with a reverse proxy that limits the number and rate of channel-join frames per connection, or disable transports that are not needed (for example remove longpoll: true from the socket declaration where the LongPoll transport is not required). Lowering the BEAM +P maximum process limit does not prevent the exhaustion and can make it easier to trigger.

References

Credits

  • Finder: Peter Ullrich
  • Remediation developer: Steffen Deusch
  • Analyst: Jonatan Männchen
  • Analyst: José Valim

CVE record as JSON:  GET /cves/CVE-2026-56811.json
OSV record as JSON:  GET /osv/EEF-CVE-2026-56811.json