1
1
import net from 'net' ;
2
2
3
- import * as console from 'node:console' ;
4
-
5
3
import { SocksClient , SocksClientOptions } from 'socks' ;
6
4
7
5
import is from 'electron-is' ;
@@ -24,9 +22,9 @@ const parseSocksUrl = (socksUrl: string) => {
24
22
return {
25
23
host : url . hostname ,
26
24
port : parseInt ( url . port , 10 ) ,
27
- type : ( url . protocol === 'socks5:' ? 5 : 4 ) as number ,
28
- username : url . username || undefined ,
29
- password : url . password || undefined ,
25
+ type : url . protocol === 'socks5:' ? 5 : 4 ,
26
+ username : url . username ,
27
+ password : url . password ,
30
28
} ;
31
29
} ;
32
30
@@ -46,7 +44,6 @@ export const backend = createBackend<BackendType, AuthProxyConfig>({
46
44
this . oldConfig = config ;
47
45
return ;
48
46
}
49
- console . log ( 'config' , config ) ;
50
47
this . stopServer ( ) ;
51
48
this . startServer ( config ) ;
52
49
@@ -78,21 +75,21 @@ export const backend = createBackend<BackendType, AuthProxyConfig>({
78
75
} ) ;
79
76
80
77
socket . on ( 'error' , ( err ) => {
81
- console . error ( '[SOCKS] Socket error:' , err . message ) ;
78
+ console . error ( LoggerPrefix , '[SOCKS] Socket error:' , err . message ) ;
82
79
} ) ;
83
80
} ) ;
84
81
85
82
// Listen for errors
86
83
socksServer . on ( 'error' , ( err ) => {
87
- console . error ( '[SOCKS Server Error]' , err . message ) ;
84
+ console . error ( LoggerPrefix , '[SOCKS Server Error]' , err . message ) ;
88
85
} ) ;
89
86
90
87
// Start server
91
88
socksServer . listen ( port , hostname , ( ) => {
92
89
console . log ( LoggerPrefix , '===========================================' ) ;
93
90
console . log (
94
91
LoggerPrefix ,
95
- `[Auth-Proxy-Adapter] SOCKS proxy enabled at ${ hostname } :${ port } ` ,
92
+ `[Auth-Proxy-Adapter] Enable SOCKS proxy at socks5:// ${ hostname } :${ port } ` ,
96
93
) ;
97
94
console . log (
98
95
LoggerPrefix ,
@@ -124,7 +121,7 @@ export const backend = createBackend<BackendType, AuthProxyConfig>({
124
121
this . processSocks5Request ( clientSocket , data , upstreamProxyUrl ) ;
125
122
} ) ;
126
123
} else {
127
- // Client doesn't support our desired authentication method
124
+ // Authentication methods not supported by the client
128
125
clientSocket . write ( Buffer . from ( [ 0x05 , 0xff ] ) ) ;
129
126
clientSocket . end ( ) ;
130
127
}
@@ -155,7 +152,7 @@ export const backend = createBackend<BackendType, AuthProxyConfig>({
155
152
targetHost = `${ data [ 4 ] } .${ data [ 5 ] } .${ data [ 6 ] } .${ data [ 7 ] } ` ;
156
153
targetPort = data . readUInt16BE ( 8 ) ;
157
154
} else if ( atyp === 0x03 ) {
158
- // Domain name
155
+ // Domain
159
156
const hostLen = data [ 4 ] ;
160
157
targetHost = data . subarray ( 5 , 5 + hostLen ) . toString ( ) ;
161
158
targetPort = data . readUInt16BE ( 5 + hostLen ) ;
@@ -223,17 +220,17 @@ export const backend = createBackend<BackendType, AuthProxyConfig>({
223
220
clientSocket . pipe ( proxySocket ) ;
224
221
225
222
proxySocket . on ( 'error' , ( error ) => {
226
- console . error ( '[SOCKS5] Proxy socket error:' , error ) ;
223
+ console . error ( LoggerPrefix , '[SOCKS5] Proxy socket error:' , error ) ;
227
224
if ( clientSocket . writable ) clientSocket . end ( ) ;
228
225
} ) ;
229
226
230
227
clientSocket . on ( 'error' , ( error ) => {
231
- console . error ( '[SOCKS5] Client socket error:' , error ) ;
228
+ console . error ( LoggerPrefix , '[SOCKS5] Client socket error:' , error ) ;
232
229
if ( proxySocket . writable ) proxySocket . end ( ) ;
233
230
} ) ;
234
231
} )
235
232
. catch ( ( error ) => {
236
- console . error ( '[SOCKS5] Connection error:' , error ) ;
233
+ console . error ( LoggerPrefix , '[SOCKS5] Connection error:' , error ) ;
237
234
// Send failure response to client
238
235
clientSocket . write (
239
236
Buffer . from ( [ 0x05 , 0x05 , 0x00 , 0x01 , 0 , 0 , 0 , 0 , 0 , 0 ] ) ,
@@ -304,17 +301,17 @@ export const backend = createBackend<BackendType, AuthProxyConfig>({
304
301
clientSocket . pipe ( proxySocket ) ;
305
302
306
303
proxySocket . on ( 'error' , ( error ) => {
307
- console . error ( '[SOCKS4] Proxy socket error:' , error ) ;
304
+ console . error ( LoggerPrefix , '[SOCKS4] Proxy socket error:' , error ) ;
308
305
if ( clientSocket . writable ) clientSocket . end ( ) ;
309
306
} ) ;
310
307
311
308
clientSocket . on ( 'error' , ( error ) => {
312
- console . error ( '[SOCKS4] Client socket error:' , error ) ;
309
+ console . error ( LoggerPrefix , '[SOCKS4] Client socket error:' , error ) ;
313
310
if ( proxySocket . writable ) proxySocket . end ( ) ;
314
311
} ) ;
315
312
} )
316
313
. catch ( ( error ) => {
317
- console . error ( '[SOCKS4] Connection error:' , error ) ;
314
+ console . error ( LoggerPrefix , '[SOCKS4] Connection error:' , error ) ;
318
315
// Send failure response to client
319
316
clientSocket . write ( Buffer . from ( [ 0x00 , 0x5b , 0 , 0 , 0 , 0 , 0 , 0 ] ) ) ;
320
317
clientSocket . end ( ) ;
0 commit comments