-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebproxy2.js
444 lines (345 loc) · 10.5 KB
/
webproxy2.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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
var http = require('http');
var https = require('https');
var net = require('net');
var pac = require('pac-resolver');
var url = require('url');
var https = require('https');
const
fs = require('fs');
var HttpsProxyAgent = require('https-proxy-agent');
function createProxyAgent(proxyhost, endpoint) {
// HTTP/HTTPS proxy to connect to
var proxy = proxyhost;// 'http://168.63.76.32:3128';
// HTTPS endpoint for the proxy to connect to
var opts = url.parse(endpoint);
// create an instance of the `HttpsProxyAgent` class with the proxy server
// information
var agent = new HttpsProxyAgent(proxy);
return agent;
}
var debugging = 0;
var regex_hostport = /^([^:]+)(:([0-9]+))?$/;
var regex_url = /\S+\b(\S+)/;
function getUrlHeader(data) {
return regex_url.exec(data)[0];
}
function getHostPortFromString(hostString, defaultPort) {
var host = hostString;
var port = defaultPort;
var result = regex_hostport.exec(hostString);
if (result != null) {
host = result[1];
if (result[2] != null) {
port = result[3];
}
}
return ([ host, port ]);
}
var FindProxyForURL;
var authText;
var auth;
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
function printHeaderRequestHttp(userRequest) {
var httpVersion = userRequest['httpVersion'];
console.log(userRequest.method + ' ' + userRequest['url'] + " HTTP/" + httpVersion + "\r\n");
console.log(JSON.stringify(userRequest.headers, null, 4));
}
function printHeaderResponsetHttp(response) {
var httpVersion = response['httpVersion'];
console.log("HTTP/" + httpVersion + ' ' + response['statusCode'] + ' ' + response['statusMessage'] + "\r\n");
console.log(JSON.stringify(response.headers, null, 4));
}
function https_request(userRequest, userResponse) {
printHeaderRequestHttp(userRequest);
var hostport = getHostPortFromString(userRequest.headers['host'], 443);
FindProxyForURL(userRequest.url, hostport[0], function(err, res) {
if (err)
console.log(err);
// → "DIRECT"
if (res == 'DIRECT') {
var hostport = getHostPortFromString(userRequest.headers['host'], 443);
// have to extract the path from the requested URL
var path = userRequest.url;
result = /^[a-zA-Z]+:\/\/[^\/]+(\/.*)?$/.exec(userRequest.url);
if (result) {
if (result[1].length > 0) {
path = result[1];
} else {
path = "/";
}
}
delete userRequest.headers["Proxy-Authorization"];
var options = {
'host' : hostport[0],
'port' : hostport[1],
'method' : userRequest.method,
'path' : path,
'agent' : userRequest.agent,
'auth' : userRequest.auth,
'headers' : userRequest.headers
};
} else {
var overHeader = userRequest.headers;
overHeader["Proxy-Authorization"] = auth;
var proxyHostport = getHostPortFromString(getUrlHeader(res), 443);
var agent = createProxyAgent('http://' + proxyHostport[0] + ':' + proxyHostport[1], userRequest.url);
var hostport = getHostPortFromString(userRequest.headers['host'], 443);
var options = {
'host' : hostport[0],
'port' : hostport[1],
path : userRequest.url,
'agent' : agent,
headers : overHeader
};
}
var proxyRequest = https.request(options, function(proxyResponse) {
printHeaderResponsetHttp(proxyResponse);
userResponse.writeHead(proxyResponse.statusCode, proxyResponse.headers);
proxyResponse.on('data', function(chunk) {
if (debugging) {
console.log(' < ' + chunk);
}
userResponse.write(chunk);
});
proxyResponse.on('end', function() {
if (debugging) {
console.log(' < END');
}
userResponse.end();
});
});
proxyRequest.on('error', function(error) {
userResponse.writeHead(500);
userResponse.write("<h1>500 Error</h1>\r\n" + "<p>Error was <pre>" + error + "</pre></p>\r\n" + "</body></html>\r\n");
userResponse.end();
});
userRequest.on('data', function(chunk) {
if (debugging) {
console.log(' > ' + chunk);
}
proxyRequest.write(chunk);
});
userRequest.on('end', function() {
proxyRequest.end();
});
});
}
var https_decode = 0;
// handle a HTTP proxy request
function httpUserRequest(userRequest, userResponse) {
printHeaderRequestHttp(userRequest);
var hostport = getHostPortFromString(userRequest.headers['host'], 80);
FindProxyForURL(userRequest.url, hostport[0], function(err, res) {
if (err)
console.log(err);
// → "DIRECT"
if (res == 'DIRECT') {
var hostport = getHostPortFromString(userRequest.headers['host'], 80);
// have to extract the path from the requested URL
var path = userRequest.url;
result = /^[a-zA-Z]+:\/\/[^\/]+(\/.*)?$/.exec(userRequest.url);
if (result) {
if (result[1].length > 0) {
path = result[1];
} else {
path = "/";
}
}
delete userRequest.headers["Proxy-Authorization"];
var options = {
'host' : hostport[0],
'port' : hostport[1],
'method' : userRequest.method,
'path' : path,
'agent' : userRequest.agent,
'auth' : userRequest.auth,
'headers' : userRequest.headers
};
} else {
var overHeader = userRequest.headers;
overHeader["Proxy-Authorization"] = auth;
var hostport = getHostPortFromString(getUrlHeader(res), 80);
var options = {
'host' : hostport[0],
'port' : hostport[1],
path : userRequest.url,
headers : overHeader
};
}
var proxyRequest = http.request(options, function(proxyResponse) {
printHeaderResponsetHttp(proxyResponse);
userResponse.writeHead(proxyResponse.statusCode, proxyResponse.headers);
proxyResponse.on('data', function(chunk) {
if (debugging) {
console.log(' < ' + chunk);
}
userResponse.write(chunk);
});
proxyResponse.on('end', function() {
if (debugging) {
console.log(' < END');
}
userResponse.end();
});
});
proxyRequest.on('error', function(error) {
userResponse.writeHead(500);
userResponse.write("<h1>500 Error</h1>\r\n" + "<p>Error was <pre>" + error + "</pre></p>\r\n" + "</body></html>\r\n");
userResponse.end();
});
userRequest.on('data', function(chunk) {
if (debugging) {
console.log(' > ' + chunk);
}
proxyRequest.write(chunk);
});
userRequest.on('end', function() {
proxyRequest.end();
});
});
}
var options_certificat;
function main() {
var port = 5555; // default port if none on command line
// check for any command line arguments
var urlProxyPac = "";
var password;
var login;
var certificatKey = "selfsigned.key";
var certificat = "selfsigned.crt";
for (var argn = 2; argn < process.argv.length; argn++) {
if (process.argv[argn] === '-p') {
port = parseInt(process.argv[argn + 1]);
argn++;
continue;
}
if (process.argv[argn] === '-P') {
urlProxyPac = process.argv[argn + 1];
argn++;
continue;
}
if (process.argv[argn] === '-l') {
login = process.argv[argn + 1];
argn++;
continue;
}
if (process.argv[argn] === '-pass') {
password = process.argv[argn + 1];
argn++;
continue;
}
if (process.argv[argn] === '-cert') {
certificat = process.argv[argn + 1];
argn++;
continue;
}
if (process.argv[argn] === '-certKey') {
certificatKey = process.argv[argn + 1];
argn++;
continue;
}
if (process.argv[argn] === '-d') {
debugging = 1;
continue;
}
if (process.argv[argn] === '-https') {
https_decode = 1;
continue;
}
}
auth = 'Basic ' + new Buffer(login + ":" + password).toString('base64');
var request = http.get(urlProxyPac, function(response) {
var allresponse = "";
response.on('data', function(chunk) {
allresponse = allresponse + chunk;
});
response.on('end', function() {
FindProxyForURL = pac("" + allresponse);
console.log("FindProxyForURL OK for " + urlProxyPac);
options_certificat = {
key : fs.readFileSync(certificatKey),
cert : fs.readFileSync(certificat)
};
var httpsserver = https.createServer(options_certificat, https_request);
// HTTPS connect listener
httpsserver.listen(port + 1);
console.log("TCP server accepting connection on port: " + (port + 1));
});
});
if (debugging) {
console.log('webproxy server listening on port ' + (port));
}
// start HTTP server with custom request handler callback function
var server = http.createServer(httpUserRequest);
// add handler for HTTPS (which issues a CONNECT to the proxy)
server.on('connect', function(request, socketRequest, bodyhead) {
var url = request['url'];
var httpVersion = request['httpVersion'];
var hostport = getHostPortFromString(url, 443);
FindProxyForURL(request.url, hostport[0], function(err, res) {
if (err)
console.log(err);
// → "DIRECT"
if (!(res == 'DIRECT')) {
hostport = getHostPortFromString(getUrlHeader(res), 80);
}
// set up TCP connection
var proxySocket = new net.Socket();
if (https_decode) {
hostport[1] = (port + 1) + '';
hostport[0] = "localhost";
res = 'DIRECT'; // do not issue Connect header to https decoder
}
proxySocket.connect(parseInt(hostport[1]), hostport[0], function() {
if (debugging)
console.log(' < connected to %s/%s', hostport[0], hostport[1]);
if (debugging) {
console.log(' > writing head of length %d', bodyhead.length);
}
if (res == 'DIRECT') {
proxySocket.write(bodyhead);
// tell the caller the connection was successfully
// established
socketRequest.write("HTTP/" + httpVersion + " 200 Connection established\r\n\r\n");
} else {
var httpConnect = 'CONNECT ' + request['url'] + " HTTP/" + httpVersion + "\r\n";
for ( var h in request.headers) {
httpConnect += h + ': ' + request.headers[h] + "\r\n";
}
httpConnect += "Proxy-Authorization: " + auth + "\r\n";
httpConnect += "\r\n";
proxySocket.write(httpConnect);
proxySocket.write(bodyhead);
}
});
proxySocket.on('data', function(chunk) {
socketRequest.write(chunk);
});
proxySocket.on('end', function() {
socketRequest.end();
});
socketRequest.on('data', function(chunk) {
proxySocket.write(chunk);
});
socketRequest.on('end', function() {
proxySocket.end();
});
proxySocket.on('error', function(err) {
socketRequest.write("HTTP/" + httpVersion + " 500 Connection error\r\n\r\n");
if (debugging) {
console.log(' < ERR: %s', err);
}
socketRequest.end();
});
socketRequest.on('error', function(err) {
proxySocket.end();
if (debugging) {
console.log(' > ERR: %s', err);
}
});
});
}); // HTTPS connect listener
server.listen(port);
console.log("TCP server accepting connection on port: " + port);
}
main();