diff --git a/changelog.md b/changelog.md index 585e6e5..94cee3b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-03-18 - 4.2.2 - fix(connectionhandler) +Ensure proper termination of TLS connections without SNI by explicitly ending the socket after sending the unrecognized_name alert. This prevents the connection from hanging and avoids potential duplicate handling. + +- Added socket.end() after uncorking the alert packet in ClientHello handling to force connection closure. +- Prevents duplicate data events and ensures the warning alert is processed by clients like Chrome. + ## 2025-03-17 - 4.2.1 - fix(core) No uncommitted changes detected in the project. diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 0fb6749..adc3469 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartproxy', - version: '4.2.1', + version: '4.2.2', description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.' } diff --git a/ts/classes.pp.connectionhandler.ts b/ts/classes.pp.connectionhandler.ts index de2c06a..c713d8a 100644 --- a/ts/classes.pp.connectionhandler.ts +++ b/ts/classes.pp.connectionhandler.ts @@ -589,15 +589,15 @@ export class ConnectionHandler { socket.cork(); const writeSuccessful = socket.write(serverNameUnknownAlertData); socket.uncork(); + socket.end(); // Function to handle the clean socket termination - but more gradually const finishConnection = () => { // Give Chrome more time to process the alert before closing // We won't call destroy() at all - just end() and let the socket close naturally - + // Log the cleanup but wait for natural closure setTimeout(() => { - socket.end(); this.connectionManager.cleanupConnection(record, 'session_ticket_blocked_no_sni'); }, 1000); // Longer delay to let socket cleanup happen naturally };