-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy.pac
314 lines (297 loc) · 11.4 KB
/
proxy.pac
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
function FindProxyForURL(url, host) {
// Populate variables for proxy chain configs
var proxypi = "PROXY 192.168.1.18:8124";
var proxybiggie = "PROXY 192.168.1.56:8123";
var proxyvpn = "PROXY 192.168.1.56:8122";
var proxypine = "PROXY 192.168.1.17:8124";
var proxyunraid = "PROXY 192.168.1.36:8123";
var proxyvpn2 = "PROXY 192.168.1.36:8122";
var proxyvpn3 = "PROXY redpill.online:8122";
var proxyjoel = "PROXY 192.168.0.4:8124";
var mattchain = proxypi+"; "+proxypine+"; "+proxybiggie+"; "+proxyunraid+"; "+proxyjoel+"; "+proxyvpn+"; DIRECT";
//var mattchain = proxybiggie+"; "+proxypine+"; "+proxyjoel+"; "+proxyunraid+"; "+proxypi+"; DIRECT";
//var mattchain = proxypi+"; "+proxypine+"; "+proxybiggie+"; "+proxyunraid+"; DIRECT";
//var billchain = proxypine+"; "+proxyunraid+"; "+proxypi+"; "+proxybiggie+"; "+proxydido+"; "+proxyvpn+"; DIRECT";
var billchain = proxypine+"; "+proxyunraid+"; "+proxypi+"; "+proxybiggie+"; "+proxyjoel+"; DIRECT";
//var billchain = proxypine+"; "+proxypi+"; "+proxyunraid+"; "+proxybiggie+"; DIRECT";
//var didochain = proxydido+"; "+proxypi+"; "+proxybiggie+"; "+proxypine+"; "+proxyunraid+"; "+proxyvpn+"; DIRECT";
var joelchain = proxyjoel+"; "+proxypi+"; "+proxybiggie+"; "+proxypine+"; "+proxyunraid+"; DIRECT";
var proxymain = mattchain;
var proxyalt = mattchain;
var proxyUS = proxyvpn+"; "+proxyvpn2+"; "+proxyvpn3;
//var proxyUS = proxyvpn;
// Begin PAC
var patterns = [{
"name": "Localhost",
"url": "*127.0.0.1*",
"regex": ".*127\\.0\\.0\\.1.*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
return "DIRECT";
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
if (white != -1) return "DIRECT";
var patterns = [{
"name": "Localhost2",
"url": "*localhost*",
"regex": ".*localhost.*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
return "DIRECT";
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
if (white != -1) return "DIRECT";
var patterns = [{
"name": "JoelLAN",
"url": "*192.168.0.*",
"regex": ".*192\\.168\\.0\\..*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
return "proxyjoel";
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
if (white != -1) return "proxyjoel";
var patterns = [{
"name": "Local",
"url": "*192.168.*.*",
"regex": ".*192\\.168\\..*\\..*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
return "DIRECT";
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
if (white != -1) return "DIRECT";
/*
var patterns = [{
"name": "YouTube",
"url": "*.youtube.com*",
"regex": ".*\\.youtube\\.com.*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
return "PROXY 192.168.2.145:8124; PROXY 192.168.1.37:8123; DIRECT";
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
if (white != -1) return proxyUS;
*/
var patterns = [{
"name": "Pandora",
"url": "*.pandora.com*",
//"regex": ".*(?!((audio)|(music)))\\.pandora\\.com.*",
"regex": ".*\\.pandora\\..*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
return proxymain;
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
if (white != -1) return proxyUS;
var patterns = [{
"name": "Amazon Music",
"url": "*music.amazon.com*",
//"regex": ".*(?!((audio)|(music)))\\.pandora\\.com.*",
"regex": ".*music\\.amazon\\..*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
return proxymain;
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
if (white != -1) return proxyUS;
// If the IP address of the local machine is within a defined
// subnet, send to a specific proxy.
//if (dnsResolve("wpad.matt.lan"))
// return mattchain;
//if (dnsResolve("wpad.bill.lan"))
// return billchain;
var patterns = [{
"name": "Instagram",
"url": "*.instagram.com*",
"regex": ".*\\.instagram\\.com.*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
//return "PROXY 192.168.2.136:8122";
return proxymain;
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
//if (white != -1) return "PROXY 192.168.2.145:8124; PROXY 192.168.1.37:8123; DIRECT";
if (white != -1) return proxymain;
var patterns = [{
"name": "FBCDN",
"url": "*.fbcdn.net*",
"regex": ".*\\.fbcdn\\.net.*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
//return "PROXY 192.168.2.136:8122";
return proxymain;
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
//if (white != -1) return "PROXY 192.168.2.145:8124; PROXY 192.168.1.37:8123; DIRECT";
if (white != -1) return proxymain;
var patterns = [{
"name": "Snapchat",
"url": "*.snapchat.com*",
"regex": ".*\\.snapchat\\.com.*",
"enabled": true,
"temp": false,
"whitelist": "Inclusive",
"type": "wildcard"
}],
white = -1;
for (var i = 0, sz = patterns.length; i < sz; i++) {
// ProxyPattern instances
var p = patterns[i];
if (p.enabled) {
if (RegExp(p.regex).test(url)) {
if (p.whitelist != "Inclusive") {
// Black takes priority over white -- skip this pattern
//return "PROXY 192.168.2.136:8122";
return proxymain;
} else if (white == -1) {
white = i; // store first matched index and continue checking for blacklist matches!
}
}
}
}
//if (white != -1) return "PROXY 192.168.2.145:8124; PROXY 192.168.1.37:8123; DIRECT";
if (white != -1) return proxymain;
// DEFAULT RULE: All other traffic, use below proxies, in fail-over order.
return proxymain;
}
//##############################################################
//##############################################################
var FindProxyForURLEx = FindProxyForURL.bind({});
//##############################################################
//##############################################################