-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·442 lines (399 loc) · 10.6 KB
/
index.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
#!/usr/bin/env node
const dns = require("node:dns");
const { readFileSync, createReadStream } = require("node:fs");
const os = require("node:os");
const readline = require("node:readline");
const package = require('./package.json');
// TODO don't use deasync
const deasync = require("deasync");
const _dnsLookup = deasync(dns.lookup);
function dnsResolve(host) {
try {
var ips = _dnsLookup(host);
if (ips && ips.length >= 1) {
return ips[0];
}
return null;
} catch (_) {
return null;
}
}
var _client_ip = null;
function myIpAddress() {
if (_client_ip !== null) {
return _client_ip;
}
const ip = _dnsLookup(os.hostname());
return ip ? ip : "127.0.0.1";
}
// The rest were extracted from https://hg.mozilla.org/mozilla-central/raw-file/6aa3b57955fed5e137d0306478e1a4b424a6d392/netwerk/base/ProxyAutoConfig.cpp
// for license info see: https://www.mozilla.org/en-US/foundation/licensing/
function dnsDomainIs(host, domain) {
return (
host.length >= domain.length &&
host.substring(host.length - domain.length) == domain
);
}
function dnsDomainLevels(host) {
return host.split(".").length - 1;
}
function isValidIpAddress(ipchars) {
var matches = /^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/.exec(ipchars);
if (matches == null) {
return false;
} else if (
matches[1] > 255 ||
matches[2] > 255 ||
matches[3] > 255 ||
matches[4] > 255
) {
return false;
}
return true;
}
function convert_addr(ipchars) {
var bytes = ipchars.split(".");
var result =
((bytes[0] & 0xff) << 24) |
((bytes[1] & 0xff) << 16) |
((bytes[2] & 0xff) << 8) |
(bytes[3] & 0xff);
return result;
}
function isInNet(ipaddr, pattern, maskstr) {
if (!isValidIpAddress(pattern) || !isValidIpAddress(maskstr)) {
return false;
}
if (!isValidIpAddress(ipaddr)) {
ipaddr = dnsResolve(ipaddr);
if (ipaddr == null) {
return false;
}
}
var host = convert_addr(ipaddr);
var pat = convert_addr(pattern);
var mask = convert_addr(maskstr);
return (host & mask) == (pat & mask);
}
function isPlainHostName(host) {
return host.search("\\.") == -1;
}
function isResolvable(host) {
var ip = dnsResolve(host);
return ip != null;
}
function localHostOrDomainIs(host, hostdom) {
return host == hostdom || hostdom.lastIndexOf(host + ".", 0) == 0;
}
function shExpMatch(url, pattern) {
pattern = pattern.replace(/\./g, "\\.");
pattern = pattern.replace(/\*/g, ".*");
pattern = pattern.replace(/\?/g, ".");
var newRe = new RegExp("^" + pattern + "$");
return newRe.test(url);
}
var wdays = { SUN: 0, MON: 1, TUE: 2, WED: 3, THU: 4, FRI: 5, SAT: 6 };
var months = {
JAN: 0,
FEB: 1,
MAR: 2,
APR: 3,
MAY: 4,
JUN: 5,
JUL: 6,
AUG: 7,
SEP: 8,
OCT: 9,
NOV: 10,
DEC: 11,
};
function weekdayRange() {
function getDay(weekday) {
if (weekday in wdays) {
return wdays[weekday];
}
return -1;
}
var date = new Date();
var argc = arguments.length;
var wday;
if (argc < 1) return false;
if (arguments[argc - 1] == "GMT") {
argc--;
wday = date.getUTCDay();
} else {
wday = date.getDay();
}
var wd1 = getDay(arguments[0]);
var wd2 = argc == 2 ? getDay(arguments[1]) : wd1;
return wd1 == -1 || wd2 == -1
? false
: wd1 <= wd2
? wd1 <= wday && wday <= wd2
: wd2 >= wday || wday >= wd1;
}
function dateRange() {
function getMonth(name) {
if (name in months) {
return months[name];
}
return -1;
}
var date = new Date();
var argc = arguments.length;
if (argc < 1) {
return false;
}
var isGMT = arguments[argc - 1] == "GMT";
if (isGMT) {
argc--;
}
// function will work even without explict handling of this case
if (argc == 1) {
var tmp = parseInt(arguments[0]);
if (isNaN(tmp)) {
return (
(isGMT ? date.getUTCMonth() : date.getMonth()) == getMonth(arguments[0])
);
} else if (tmp < 32) {
return (isGMT ? date.getUTCDate() : date.getDate()) == tmp;
} else {
return (isGMT ? date.getUTCFullYear() : date.getFullYear()) == tmp;
}
}
var year = date.getFullYear();
var date1, date2;
date1 = new Date(year, 0, 1, 0, 0, 0);
date2 = new Date(year, 11, 31, 23, 59, 59);
var adjustMonth = false;
for (var i = 0; i < argc >> 1; i++) {
var tmp = parseInt(arguments[i]);
if (isNaN(tmp)) {
var mon = getMonth(arguments[i]);
date1.setMonth(mon);
} else if (tmp < 32) {
adjustMonth = argc <= 2;
date1.setDate(tmp);
} else {
date1.setFullYear(tmp);
}
}
for (var i = argc >> 1; i < argc; i++) {
var tmp = parseInt(arguments[i]);
if (isNaN(tmp)) {
var mon = getMonth(arguments[i]);
date2.setMonth(mon);
} else if (tmp < 32) {
date2.setDate(tmp);
} else {
date2.setFullYear(tmp);
}
}
if (adjustMonth) {
date1.setMonth(date.getMonth());
date2.setMonth(date.getMonth());
}
if (isGMT) {
var tmp = date;
tmp.setFullYear(date.getUTCFullYear());
tmp.setMonth(date.getUTCMonth());
tmp.setDate(date.getUTCDate());
tmp.setHours(date.getUTCHours());
tmp.setMinutes(date.getUTCMinutes());
tmp.setSeconds(date.getUTCSeconds());
date = tmp;
}
return date1 <= date2
? date1 <= date && date <= date2
: date2 >= date || date >= date1;
}
function timeRange() {
var argc = arguments.length;
var date = new Date();
var isGMT = false;
if (argc < 1) {
return false;
}
if (arguments[argc - 1] == "GMT") {
isGMT = true;
argc--;
}
var hour = isGMT ? date.getUTCHours() : date.getHours();
var date1, date2;
date1 = new Date();
date2 = new Date();
if (argc == 1) {
return hour == arguments[0];
} else if (argc == 2) {
return arguments[0] <= hour && hour <= arguments[1];
} else {
switch (argc) {
case 6:
date1.setSeconds(arguments[2]);
date2.setSeconds(arguments[5]);
case 4:
var middle = argc >> 1;
date1.setHours(arguments[0]);
date1.setMinutes(arguments[1]);
date2.setHours(arguments[middle]);
date2.setMinutes(arguments[middle + 1]);
if (middle == 2) {
date2.setSeconds(59);
}
break;
default:
throw "timeRange: bad number of arguments";
}
}
if (isGMT) {
date.setFullYear(date.getUTCFullYear());
date.setMonth(date.getUTCMonth());
date.setDate(date.getUTCDate());
date.setHours(date.getUTCHours());
date.setMinutes(date.getUTCMinutes());
date.setSeconds(date.getUTCSeconds());
}
return date1 <= date2
? date1 <= date && date <= date2
: date2 >= date || date >= date1;
}
// End Mozilla code.
function getHostFromUrl(url) {
// Adapted from get_host_from_url to match it's logic
// https://github.com/manugarg/pacparser/blob/943231b2a33e2d7b26128d35a882792feb3fa621/src/pactester.c#L58
const [, ...urlParts] = url.split(":");
var urlWithoutProtocol = urlParts.join(":");
if (urlParts.length < 1 || !urlWithoutProtocol.startsWith("//")) {
console.error("Not a proper URL");
process.exit(1);
}
var host = urlWithoutProtocol.substr(2);
if (host.length <= 0 || host.startsWith("/") || host.startsWith(":")) {
console.error("Not a proper URL");
process.exit(1);
}
// Seek until next /, : or end of string.
const nextSlash = host.indexOf("/");
const nextColon = host.indexOf(":");
if (nextSlash > 0 || nextColon > 0) {
host =
nextSlash < nextColon
? host.substr(0, nextSlash)
: host.substr(0, nextColon);
}
return host;
}
function readStdin() {
const reader = readline.createInterface({
input: process.stdin,
});
return new Promise((resolve) => {
var stdin = "";
reader
.on("line", (line) => {
if (!line) {
return;
}
stdin = stdin + line + "\n";
})
.on("close", () => {
resolve(stdin);
});
});
}
// ------ PROGRAM ------
const { program } = require("commander");
program
.name("pactester")
.description(
"Pure JS* implementation of pactester. \n\n * (Almost. Currently still relies on c++.)"
)
.helpOption(false)
.option(
"-p <pacfile>",
"PAC file to test (specify '-' to read from standard input)"
)
.option("-u <url>", "URL to test for")
.option("-h <host>", "Host part of the URL")
.option(
"-c <client_ip>",
"client IP address (as returned by myIpAddress() function in PAC files), defaults to IP address on which it is running."
)
.option("-f <urlslist>", "a file containing list of URLs to be tested.")
// .option("-e", "Deprecated: IPv6 extensions are enabled by default now.")
.version(package.version, "-v", "print version and exit");
program.parse();
const options = program.opts();
const pacfile = options?.p;
const url = options?.u;
var host = options?.h;
const client_ip = options?.c;
const urlslist = options?.f;
// Async IIFE main function
(async () => {
if (Object.entries(options).length === 0) {
program.help();
}
if (!pacfile) {
console.error("You didn't specify the PAC file");
program.help();
}
if (!url && !urlslist) {
console.error("You didn't specify the URL");
program.help();
}
if (pacfile === "-") {
// Read pacfile from stdin.
const stdin = await readStdin();
if (!stdin || stdin.length <= 0) {
console.error("Expected piped data but found none");
process.exit(1);
}
eval(stdin);
} else {
eval(readFileSync(pacfile).toString());
}
if (!FindProxyForURL || typeof FindProxyForURL !== "function") {
console.error(
`Failed to find FindProxyForURL function in pac file: ${pacfile}.`
);
process.exit(1);
}
if (client_ip) {
_client_ip = client_ip;
}
if (url) {
// If the host was not explicitly given, get it from the URL.
// If that fails, return with error (the get_host_from_url()
// function will print a proper error message in that case).
if (!host) {
host = getHostFromUrl(url);
}
console.log(FindProxyForURL(url, host));
process.exit(0);
} else if (urlslist) {
const reader = readline.createInterface({
input: createReadStream(urlslist),
output: process.stdout,
terminal: false,
});
reader.on("line", (line) => {
// trim whitespace
line = line.trim();
// skip comments
if (line.startsWith("#")) {
console.log(line);
return;
}
// url == everything before the first space
const url = line.split(" ")[0];
try {
const proxy = FindProxyForURL(url, getHostFromUrl(url));
console.log(`${url} : ${proxy}`);
} catch (e) {
console.error(`Problem in finding proxy for ${line}`);
process.exit(1);
}
});
}
})();