From db85942e549af53092ffe71636244b4c99abac93 Mon Sep 17 00:00:00 2001 From: Matteo Collina Date: Thu, 20 Aug 2026 17:48:12 +0000 Subject: [PATCH] fix: destroy socket on SOCKS5 negotiation timeout Socks5ProxyAgent's createSocks5Connection() rejected its promises on the auth and CONNECT timeouts without destroying the underlying socket. Because the socket was never handed to the per-origin Pool, agent.close()/destroy() could not reach it and it leaked open for the process lifetime. Destroy the socket in both timeout paths before rejecting. --- lib/dispatcher/socks5-proxy-agent.js | 2 ++ test/socks5-proxy-agent.js | 33 ++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/lib/dispatcher/socks5-proxy-agent.js b/lib/dispatcher/socks5-proxy-agent.js index 909c7f50247..121879e865f 100644 --- a/lib/dispatcher/socks5-proxy-agent.js +++ b/lib/dispatcher/socks5-proxy-agent.js @@ -115,6 +115,7 @@ class Socks5ProxyAgent extends DispatcherBase { const authenticationReady = Promise.withResolvers() const authenticationTimeout = setTimeout(() => { + socks5Client.destroy() authenticationReady.reject(new Error('SOCKS5 authentication timeout')) }, 5000) @@ -148,6 +149,7 @@ class Socks5ProxyAgent extends DispatcherBase { const connectionReady = Promise.withResolvers() const connectionTimeout = setTimeout(() => { + socks5Client.destroy() connectionReady.reject(new Error('SOCKS5 connection timeout')) }, 5000) diff --git a/test/socks5-proxy-agent.js b/test/socks5-proxy-agent.js index 691497aeb94..9bca3f42020 100644 --- a/test/socks5-proxy-agent.js +++ b/test/socks5-proxy-agent.js @@ -463,6 +463,39 @@ test('Socks5ProxyAgent - proxy connection refused', async (t) => { await p.completed }) +test('Socks5ProxyAgent - SOCKS5 negotiation timeout destroys the underlying socket (#5704)', async (t) => { + const p = tspl(t, { plan: 2 }) + + // Proxy that accepts the TCP connection and reads the SOCKS5 greeting but + // never replies, stalling negotiation so the auth timeout fires. + const sockets = [] + let resolveClosed + const proxySocketClosed = new Promise((resolve) => { resolveClosed = resolve }) + const proxy = net.createServer((socket) => { + sockets.push(socket) + socket.on('data', () => {}) // drain the greeting, never reply + socket.once('close', () => resolveClosed()) + }) + + await new Promise(resolve => proxy.listen(0, '127.0.0.1', resolve)) + + const agent = new Socks5ProxyAgent(`socks5://127.0.0.1:${proxy.address().port}`) + + await request('http://example.invalid/', { dispatcher: agent }).catch((err) => { + p.equal(err.message, 'SOCKS5 authentication timeout', 'request should reject with authentication timeout') + }) + + await agent.close() + + // The socket opened for the stalled negotiation must have been destroyed by + // the timeout path (previously it leaked untracked for the process lifetime). + await proxySocketClosed + p.equal(sockets[0].destroyed, true, 'proxy-side socket should be destroyed after negotiation timeout') + + proxy.close() + await p.completed +}) + test('Socks5ProxyAgent - close and destroy', async (t) => { const p = tspl(t, { plan: 2 })