forked from gvangool/node-socks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocks.js
191 lines (174 loc) · 5.49 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
var net = require('net'),
util = require('util'),
log = function(args) {
//console.log(args);
},
info = console.info,
errorLog = console.error,
clients = [],
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
*/
AUTHENTICATION = {
NOAUTH: 0x00,
GSSAPI: 0x01,
USERPASS: 0x02,
NONE: 0xFF
},
/*
* o CMD
* o CONNECT X'01'
* o BIND X'02'
* o UDP ASSOCIATE X'03'
*/
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'
*/
ATYP = {
IP_V4: 0x01,
DNS: 0x03,
IP_V6: 0x04
},
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(cb) {
var socksServer = net.createServer();
socksServer.on('listening', function() {
var address = socksServer.address();
info('LISTENING %s:%s', address.address, address.port);
});
socksServer.on('connection', function(socket) {
info('CONNECTED %s:%s', socket.remoteAddress, socket.remotePort);
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;
// 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 (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);
}
}
function handleRequest(chunk) {
this.removeListener('data', this.handleRequest);
var cmd=chunk[1],
address,
port,
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;
} */
address = Address.read(chunk, 3);
offset = 3 + Address.sizeOf(chunk, 3) + 2;
//FIX CURL offset
offset = offset >= chunk.length-1 ? offset -1 : offset;
port = chunk.readUInt16BE(offset);
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
};