GHSA-rw4j-r22c-9gc3: Medium severity pip/asyncssh vulnerability
Summary
A malicious SSH server can wedge an AsyncSSH client, and an authenticated client can wedge an AsyncSSH server, by sending a channel maximum packet size of 0 in SSHMSGCHANNELOPENCONFIRMATION (server→client) or SSHMSGCHANNELOPEN (client→server). AsyncSSH stores the peer-supplied value verbatim with no lower-bound check; the first time channel data is written, SSHChannel.flushsendbuf enters a synchronous infinite loop that cannot be interrupted by asyncio.waitfor or any timeout. The loop body has no await, so it blocks the entire asyncio event loop — for a server, one malicious authenticated channel freezes all current and future connections.
RFC 4254 §5.1 leaves receiver behavior for a peer-reported "maximum packet size = 0" undefined, so the value must be rejected rather than stored.
Root cause
asyncssh/channel.py:
python processopen (server side) -- line 465 self.sendpktsize = sendpktsize # peer value, no >= 1 check
processopenconfirmation (client) -- line 528 self.sendpktsize = sendpktsize # peer value, no >= 1 check
flushsendbuf -- lines 305-320 while self.sendbuf and self.sendwindow: pktsize = min(self.sendwindow, self.sendpktsize) # 0 when peer sends 0 buf, datatype = self.sendbuf[0] if len(buf) > pktsize: # True for any buffered data data = buf[:pktsize] # empty (b'') del buf[:pktsize] # no-op ... self.sendwindow -= len(data) # -= 0, unchanged
With sendpktsize == 0, pktsize is 0, so buf[:0] is empty, del buf[:0] is a no-op, and sendwindow is never decremented — the while condition is permanently true, and with no await in the body the event loop is blocked.
Impact
- Client vector (primary): a malicious SSH server replies to the client's channel open with maximum packet size = 0; the client wedges on its first channel write. The attacker is the server, so it needs no valid credentials. - Server vector: an authenticated client opens a channel with maximum packet size = 0; any server-side channel write wedges the AsyncSSH server's event loop, freezing every current and future connection. A single low-privilege account can take the whole server down.
Both vectors are a single SSH message, deterministic, and cause total availability loss for the affected process.
Affected versions
<= 2.23.1 (latest release, 2026-06-06); also present on master (channel.py:465/528 unguarded). Verified end-to-end on 2.23.1.
Verification
The maintainer's proposed fix (reject sendpktsize == 0 in connection.py processchannelopen / processchannelopenconfirmation) was applied to 2.23.1 and re-tested end-to-end over TCP:
- Unpatched: malicious server (paramiko forcing maxpacketsize=0 in OPENCONFIRMATION) + real asyncssh client → client event loop wedges. - Patched: the guard fires inside processchannelopenconfirmation, the malicious value is rejected, the connection closes cleanly (ChannelOpenError: SSH connection closed), and the client does not wedge.
The maintainer (Ron Frederick) independently confirmed the freeze and noted that even shutting the server down does not break clients out of the loop.
Reproducers available: a focused harness driving the real SSHChannel.flushsendbuf with sendpktsize=0, and an end-to-end maliciousserver.py (paramiko) + client.py (real asyncssh) pair. The end-to-end client repro uses asyncio.neweventloop() (not geteventloop()) for Python 3.14 compatibility.
Suggested fix (maintainer's approach)
In connection.py, after each sendpktsize = packet.getuint32() in processchannelopen and processchannelopenconfirmation:
python if sendpktsize == 0: raise ProtocolError('Invalid maximum packet size')
CVSS
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H (6.5 Medium). An earlier draft quoted 7.5 High ("100% CPU"); the synchronous loop burns ~100% of one core's worth of CPU but, being single-threaded, the OS scheduler spreads it across cores, so the real impact is event-loop / connection freeze, not machine-wide CPU exhaustion.
References
- RFC 4254 §5.1 (channel "maximum packet size"; behavior for 0 is undefined). - The same maximum packet size = 0 send-loop wedge was confirmed in several other independent SSH implementations (different languages/runtimes) and reported to each maintainer separately.
Credits
Reported by zhangph (afldl), 2026-06-20.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
pip/asyncsshto a version that resolves this vulnerability.Fixed in 2.24.0 - Upgrade
Upgrade
asyncsshto a version that resolves this vulnerability.Fixed in 2.23.1 - Configuration
In connection.py, after each `send_pktsize = packet.get_uint32()` in the OPEN_CONFIRMATION handling, reject a peer-reported `send_pktsize == 0` by raising `ProtocolError('Invalid maximum packet size')` instead of storing it. This prevents `_send_pktsize`/`pktsize` from becoming 0 and triggering the `_send_window`/flush infinite loop that blocks the asyncio event loop.
AsyncSSH (connection.py / OPEN_CONFIRMATION, _process_channel_open_confirmation) send_pktsize / maximum packet size validation = Reject send_pktsize == 0
Event History
Frequently Asked Questions
Which deployments are exposed to this issue?
AsyncSSH clients are exposed when connecting to a malicious SSH server. AsyncSSH servers are exposed to an authenticated client which can open a channel and supply the invalid packet-size value; a single such channel can freeze all current and future connections handled by that server.
What level of access does an attacker need?
To affect an AsyncSSH client, the attacker needs to operate or control the SSH server the client connects to. To affect an AsyncSSH server, the attacker must be an authenticated client; no additional user interaction is required.