-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsocks.js
323 lines (283 loc) · 7.64 KB
/
socks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
var net = require('net');
var util = require('util');
var config;
/* if(config.socks_log == true)
{ */
var log = console.log;
var info = console.info;
var errorLog = console.error;
/*}
else
{
var nullfunc = function(args) {};
var log = nullfunc;
var info = nullfunc;
var errorLog = nullfunc;
} */
var clients = [];
var SOCKS_VERSION = 5;
/*
* Authentication methods
************************
* o X'00' NO AUTHENTICATION REQUIRED
* o X'01' GSSAPI
* o X'02' USERNAME/PASSWORD
* o X'03' to X'7F' IANA ASSIGNED
* o X'80' to X'FE' RESERVED FOR PRIVATE METHODS
* o X'FF' NO ACCEPTABLE METHODS
*/
var AUTHENTICATION =
{
NOAUTH: 0x00,
GSSAPI: 0x01,
USERPASS: 0x02,
NONE: 0xFF
};
/*
* o CMD
* o CONNECT X'01'
* o BIND X'02'
* o UDP ASSOCIATE X'03'
*/
var REQUEST_CMD =
{
CONNECT: 0x01,
BIND: 0x02,
UDP_ASSOCIATE: 0x03
};
/*
* o ATYP address type of following address
* o IP V4 address: X'01'
* o DOMAINNAME: X'03'
* o IP V6 address: X'04'
*/
var ATYP =
{
IP_V4: 0x01,
DNS: 0x03,
IP_V6: 0x04
};
var Address =
{
read: function (buffer, offset)
{
if (buffer[offset] == ATYP.IP_V4)
return util.format('%s.%s.%s.%s', buffer[offset+1], buffer[offset+2], buffer[offset+3], buffer[offset+4]);
else if (buffer[offset] == ATYP.DNS)
return buffer.toString('utf8', offset+2, offset+2+buffer[offset+1]);
else if (buffer[offset] == ATYP.IP_V6)
return buffer.slice(buffer[offset+1], buffer[offset+1+16]);
},
sizeOf: function(buffer, offset)
{
if (buffer[offset] == ATYP.IP_V4) return 4;
else if (buffer[offset] == ATYP.DNS) return buffer[offset+1];
else if (buffer[offset] == ATYP.IP_V6) return 16;
}
};
function createSocksServer(username, password, cb)
{
var socksServer = net.createServer();
socksServer.on('listening', function()
{
var address = socksServer.address();
console.info('LISTENING %s:%s', address.address, address.port);
});
socksServer.on('connection', function(socket)
{
// info('CONNECTED %s:%s', socket.remoteAddress, socket.remotePort);
socket.username = username;
socket.password = password;
initSocksConnection.bind(socket)(cb);
});
return socksServer;
}
// socket is available as this
function initSocksConnection(on_accept)
{
/* // keep log of connected clients
clients.push(this);
// remove from clients on disconnect
this.on('end', function()
{
var idx = clients.indexOf(this);
if (idx != -1)
{
clients.splice(idx, 1);
}
}); */
this.on('error', function(e)
{
errorLog('%j', e);
});
// do a handshake
this.handshake = handshake.bind(this);
this.on_accept = on_accept; // No bind. We want 'this' to be the server, like it would be for net.createServer
this.on('data', this.handshake);
}
function handshake(chunk)
{
this.removeListener('data', this.handshake);
var method_count = 0;
auth_mode = AUTHENTICATION.NOAUTH;
if (this.username !== '') auth_mode = AUTHENTICATION.USERPASS;
// SOCKS Version 5 is the only support version
if (chunk[0] != SOCKS_VERSION)
{
errorLog('handshake: wrong socks version: %d', chunk[0]);
this.end();
}
// Number of authentication methods
method_count = chunk[1];
this.auth_methods = [];
// i starts on 1, since we've read chunk 0 & 1 already
for (var i=2; i < method_count + 2; i++)
{
this.auth_methods.push(chunk[i]);
}
// log('Supported auth methods: %j', this.auth_methods);
var resp = new Buffer(2);
resp[0] = 0x05;
if (auth_mode == AUTHENTICATION.NOAUTH)
{
if (this.auth_methods.indexOf(AUTHENTICATION.NOAUTH) > -1)
{
// log('Handing off to handleRequest');
this.handleRequest = handleRequest.bind(this);
this.on('data', this.handleRequest);
resp[1] = AUTHENTICATION.NOAUTH;
this.write(resp);
}
else
{
errorLog('Unsuported authentication method -- disconnecting');
resp[1] = 0xFF;
this.end(resp);
}
}
if (auth_mode == AUTHENTICATION.USERPASS)
{
if(this.auth_methods.indexOf(AUTHENTICATION.USERPASS) > -1)
{
// log('Handing off to authUSERPASS');
this.authUSERPASS = authUSERPASS.bind(this);
this.on('data', this.authUSERPASS);
resp[1] = AUTHENTICATION.USERPASS;
this.write(resp);
}
else
{
errorLog('Unsuported authentication method -- disconnecting');
resp[1]=0xFF
this.end(resp);
}
}
}
function authUSERPASS(chunk)
{
this.removeListener('data',this.authUSERPASS);
resp = new Buffer(2);
resp[0] = 1; // auth version
resp[1] = 0xff;
if(chunk[0] != 1)
{
this.end(resp); // Wrong auth version, closing connection.
return;
}
nameLength = chunk[1];
username = chunk.toString('utf8', 2,2+nameLength);
passLength = chunk[2+nameLength];
password = chunk.toString('utf8', 3+nameLength, 3+nameLength+passLength);
// log('Authorizing: ' + username);
if ((username == this.username && password == this.password))
{
this.handleRequest = handleRequest.bind(this);
this.on('data', this.handleRequest);
resp[1]=0x00;
this.write(resp);
// log('Accepted');
}
else
{
this.end(resp);
log('Denied');
}
}
/* function authorize(username, password)
{
if(username == socket.username && password == config.auth_pass)
return true;
else
return false;
} */
function handleRequest(chunk)
{
this.removeListener('data', this.handleRequest);
var cmd=chunk[1];
var address;
var port;
var offset=3;
// Wrong version!
if (chunk[0] !== SOCKS_VERSION)
{
this.end('%d%d', 0x05, 0x01);
errorLog('handleRequest: wrong socks version: %d', chunk[0]);
return;
}
/*
else if (chunk[2] == 0x00)
{
this.end(util.format('%d%d', 0x05, 0x01));
errorLog('handleRequest: Mangled request. Reserved field is not null: %d', chunk[offset]);
return;
}
*/
/* bullshit
address = Address.read(chunk, 3);
offset = 3 + Address.sizeOf(chunk, 3) + 2;
port = chunk.readUInt16BE(offset);
*/
//ADDRESS TYPE
if (chunk[3] == 3) { //DOMAIN NAME
address = Address.read(chunk, 3);
offset = 3 + Address.sizeOf(chunk, 3) + 2;
port = chunk.readUInt16BE(offset);
} else if (chunk[3] == 1) { //IP
address = Address.read(chunk, 3);
offset = 8;
port = chunk.readUInt16BE(offset);
console.log(address + ':' + port);
} else {
log('Address type not supported!');
this.end(util.format('%d%d', 0x05, 0x01));
return;
}
// log('Request: type: %d -- to: %s:%s', chunk[1], address, port);
if (cmd == REQUEST_CMD.CONNECT)
{
this.request = chunk;
this.on_accept(this, port, address, proxyReady.bind(this));
}
else
{
this.end('%d%d', 0x05, 0x01);
return;
}
}
function proxyReady()
{
// log('Indicating to the client that the proxy is ready');
// creating response
var resp = new Buffer(this.request.length);
this.request.copy(resp);
// rewrite response header
resp[0] = SOCKS_VERSION;
resp[1] = 0x00;
resp[2] = 0x00;
this.write(resp);
log('Connected to: %s:%d', resp.toString('utf8', 4, resp.length - 2), resp.readUInt16BE(resp.length - 2));
}
module.exports =
{
createServer: createSocksServer
};