{"containers":{"adp":[{"metrics":[{"other":{"content":{"id":"CVE-2026-56811","options":[{"Exploitation":"none"},{"Automatable":"yes"},{"Technical Impact":"partial"}],"role":"CISA Coordinator","timestamp":"2026-07-07T16:12:27.662417Z","version":"2.0.3"},"type":"ssvc"}}],"providerMetadata":{"dateUpdated":"2026-07-07T16:12:37.299Z","orgId":"134c704f-9b21-4f2e-91b3-4a467353bcc0","shortName":"CISA-ADP"},"title":"CISA ADP Vulnrichment"}],"cna":{"affected":[{"collectionURL":"https://repo.hex.pm","cpes":["cpe:2.3:a:phoenixframework:phoenix:*:*:*:*:*:*:*:*"],"defaultStatus":"unaffected","modules":["'Elixir.Phoenix.Socket'"],"packageName":"phoenix","packageURL":"pkg:hex/phoenix","product":"phoenix","programFiles":["lib/phoenix/socket.ex"],"programRoutines":[{"name":"'Elixir.Phoenix.Socket':handle_in/4"}],"repo":"https://github.com/phoenixframework/phoenix","vendor":"phoenixframework","versions":[{"lessThan":"1.5.15","status":"affected","version":"0.11.0","versionType":"semver"},{"lessThan":"1.6.17","status":"affected","version":"1.6.0-rc.0","versionType":"semver"},{"lessThan":"1.7.24","status":"affected","version":"1.7.0-rc.0","versionType":"semver"},{"lessThan":"1.8.9","status":"affected","version":"1.8.0-rc.0","versionType":"semver"}]},{"collectionURL":"https://github.com","cpes":["cpe:2.3:a:phoenixframework:phoenix:*:*:*:*:*:*:*:*"],"defaultStatus":"unaffected","modules":["'Elixir.Phoenix.Socket'"],"packageName":"phoenixframework/phoenix","packageURL":"pkg:github/phoenixframework/phoenix","product":"phoenix","programFiles":["lib/phoenix/socket.ex"],"programRoutines":[{"name":"'Elixir.Phoenix.Socket':handle_in/4"}],"repo":"https://github.com/phoenixframework/phoenix","vendor":"phoenixframework","versions":[{"changes":[{"at":"c498ba8cf49f6accbbd0c643a5340b58db891218","status":"unaffected"},{"at":"d19ca0a8d9f82c130b7ed339b9f033433e2dea5e","status":"unaffected"},{"at":"a612100cd8a4279091abc1a2ef8fb98a6d01c0a1","status":"unaffected"},{"at":"16e295d2fccab185d1292322e2bee5d46c725c8a","status":"unaffected"}],"lessThan":"*","status":"affected","version":"14a297e88023cb280a577962a49a0bbdeef9f4eb","versionType":"git"}]}],"configurations":[{"lang":"en","supportingMedia":[{"base64":false,"type":"text/html","value":"<p>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 <tt>phx_join</tt> 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.</p>"}],"value":"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."}],"cpeApplicability":[{"nodes":[{"cpeMatch":[{"criteria":"cpe:2.3:a:phoenixframework:phoenix:*:*:*:*:*:*:*:*","versionEndExcluding":"1.5.15","versionStartIncluding":"0.11.0","vulnerable":true},{"criteria":"cpe:2.3:a:phoenixframework:phoenix:*:*:*:*:*:*:*:*","versionEndExcluding":"1.6.17","versionStartIncluding":"1.6.0-rc.0","vulnerable":true},{"criteria":"cpe:2.3:a:phoenixframework:phoenix:*:*:*:*:*:*:*:*","versionEndExcluding":"1.7.24","versionStartIncluding":"1.7.0-rc.0","vulnerable":true},{"criteria":"cpe:2.3:a:phoenixframework:phoenix:*:*:*:*:*:*:*:*","versionEndExcluding":"1.8.9","versionStartIncluding":"1.8.0-rc.0","vulnerable":true}],"negate":false,"operator":"OR"}],"operator":"AND"}],"credits":[{"lang":"en","type":"finder","value":"Peter Ullrich"},{"lang":"en","type":"remediation developer","value":"Steffen Deusch"},{"lang":"en","type":"analyst","value":"Jonatan Männchen"},{"lang":"en","type":"analyst","value":"José Valim"}],"descriptions":[{"lang":"en","supportingMedia":[{"base64":false,"type":"text/html","value":"<p>Allocation of Resources Without Limits or Throttling vulnerability in phoenixframework phoenix (<tt>Phoenix.Socket</tt> 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).</p><p>This vulnerability is associated with program files <tt>lib/phoenix/socket.ex</tt> and program routine <tt>'Elixir.Phoenix.Socket':handle_in/4</tt>.</p><p>Phoenix transports do not limit the number of channels that a single transport process may join. Every <tt>phx_join</tt> 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 <tt>phx_join</tt> 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.</p><p>The fix adds a <tt>:max_channels_per_transport</tt> option (default <tt>100</tt>) 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.</p><p>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.</p>"}],"value":"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).\n\nThis vulnerability is associated with program files lib/phoenix/socket.ex and program routine 'Elixir.Phoenix.Socket':handle_in/4.\n\nPhoenix 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.\n\nThe 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.\n\nThis 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."}],"impacts":[{"capecId":"CAPEC-130","descriptions":[{"lang":"en","value":"CAPEC-130 Excessive Allocation"}]}],"metrics":[{"cvssV4_0":{"attackComplexity":"LOW","attackRequirements":"NONE","attackVector":"NETWORK","baseScore":8.7,"baseSeverity":"HIGH","privilegesRequired":"NONE","subAvailabilityImpact":"NONE","subConfidentialityImpact":"NONE","subIntegrityImpact":"NONE","userInteraction":"NONE","vectorString":"CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N","version":"4.0","vulnAvailabilityImpact":"HIGH","vulnConfidentialityImpact":"NONE","vulnIntegrityImpact":"NONE"},"format":"CVSS","scenarios":[{"lang":"en","value":"GENERAL"}]}],"problemTypes":[{"descriptions":[{"cweId":"CWE-770","description":"CWE-770 Allocation of Resources Without Limits or Throttling","lang":"en","type":"CWE"}]}],"providerMetadata":{"dateUpdated":"2026-07-07T16:14:39.702Z","orgId":"6b3ad84c-e1a6-4bf7-a703-f496b71e49db","shortName":"EEF"},"references":[{"tags":["vendor-advisory","related"],"url":"https://github.com/phoenixframework/phoenix/security/advisories/GHSA-6983-jfq8-485w"},{"tags":["related"],"url":"https://cna.erlef.org/cves/CVE-2026-56811.html"},{"tags":["related"],"url":"https://osv.dev/vulnerability/EEF-CVE-2026-56811"},{"tags":["patch"],"url":"https://github.com/phoenixframework/phoenix/commit/c498ba8cf49f6accbbd0c643a5340b58db891218"},{"tags":["patch"],"url":"https://github.com/phoenixframework/phoenix/commit/d19ca0a8d9f82c130b7ed339b9f033433e2dea5e"},{"tags":["patch"],"url":"https://github.com/phoenixframework/phoenix/commit/a612100cd8a4279091abc1a2ef8fb98a6d01c0a1"},{"tags":["patch"],"url":"https://github.com/phoenixframework/phoenix/commit/16e295d2fccab185d1292322e2bee5d46c725c8a"}],"source":{"discovery":"EXTERNAL"},"title":"Phoenix transports do not limit channel joins per connection, enabling process-exhaustion denial of service","workarounds":[{"lang":"en","supportingMedia":[{"base64":false,"type":"text/html","value":"<p>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 <tt>longpoll: true</tt> from the <tt>socket</tt> declaration where the LongPoll transport is not required). Lowering the BEAM <tt>+P</tt> maximum process limit does not prevent the exhaustion and can make it easier to trigger.</p>"}],"value":"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."}],"x_generator":{"engine":"cvelib 1.8.0"}}},"cveMetadata":{"assignerOrgId":"6b3ad84c-e1a6-4bf7-a703-f496b71e49db","assignerShortName":"EEF","cveId":"CVE-2026-56811","datePublished":"2026-07-07T15:09:57.581Z","dateReserved":"2026-06-23T12:29:02.507Z","dateUpdated":"2026-07-07T16:14:39.702Z","state":"PUBLISHED"},"dataType":"CVE_RECORD","dataVersion":"5.2"}