-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhola-proxy-list.py
executable file
·538 lines (514 loc) · 15.7 KB
/
hola-proxy-list.py
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
#!/usr/bin/env python3
import sys
import argparse
import enum
import logging
import uuid
import urllib.request
import urllib.parse
import codecs
import json
import random
import base64
import csv
import string
import os.path
USER_AGENT = "Mozilla/5.0 (X11; Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36"
EXT_VER = "1.164.641"
EXT_BROWSER = "chrome"
PRODUCT = "cws"
CCGI_URL = "https://client.hola.org/client_cgi/"
PORT_TYPE_WHITELIST = {"direct", "peer"}
PROTOCOL_WHITELIST = {"http", "HTTP"}
ISO3166 = {
'AD': 'Andorra',
'AE': 'United Arab Emirates',
'AF': 'Afghanistan',
'AG': 'Antigua & Barbuda',
'AI': 'Anguilla',
'AL': 'Albania',
'AM': 'Armenia',
'AN': 'Netherlands Antilles',
'AO': 'Angola',
'AQ': 'Antarctica',
'AR': 'Argentina',
'AS': 'American Samoa',
'AT': 'Austria',
'AU': 'Australia',
'AW': 'Aruba',
'AZ': 'Azerbaijan',
'BA': 'Bosnia and Herzegovina',
'BB': 'Barbados',
'BD': 'Bangladesh',
'BE': 'Belgium',
'BF': 'Burkina Faso',
'BG': 'Bulgaria',
'BH': 'Bahrain',
'BI': 'Burundi',
'BJ': 'Benin',
'BM': 'Bermuda',
'BN': 'Brunei Darussalam',
'BO': 'Bolivia',
'BR': 'Brazil',
'BS': 'Bahama',
'BT': 'Bhutan',
'BU': 'Burma (no longer exists)',
'BV': 'Bouvet Island',
'BW': 'Botswana',
'BY': 'Belarus',
'BZ': 'Belize',
'CA': 'Canada',
'CC': 'Cocos (Keeling) Islands',
'CF': 'Central African Republic',
'CG': 'Congo',
'CH': 'Switzerland',
'CI': 'Cote D\'ivoire (Ivory Coast)',
'CK': 'Cook Iislands',
'CL': 'Chile',
'CM': 'Cameroon',
'CN': 'China',
'CO': 'Colombia',
'CR': 'Costa Rica',
'CS': 'Czechoslovakia (no longer exists)',
'CU': 'Cuba',
'CV': 'Cape Verde',
'CX': 'Christmas Island',
'CY': 'Cyprus',
'CZ': 'Czech Republic',
'DD': 'German Democratic Republic (no longer exists)',
'DE': 'Germany',
'DJ': 'Djibouti',
'DK': 'Denmark',
'DM': 'Dominica',
'DO': 'Dominican Republic',
'DZ': 'Algeria',
'EC': 'Ecuador',
'EE': 'Estonia',
'EG': 'Egypt',
'EH': 'Western Sahara',
'ER': 'Eritrea',
'ES': 'Spain',
'ET': 'Ethiopia',
'FI': 'Finland',
'FJ': 'Fiji',
'FK': 'Falkland Islands (Malvinas)',
'FM': 'Micronesia',
'FO': 'Faroe Islands',
'FR': 'France',
'FX': 'France, Metropolitan',
'GA': 'Gabon',
'GB': 'United Kingdom (Great Britain)',
'GD': 'Grenada',
'GE': 'Georgia',
'GF': 'French Guiana',
'GH': 'Ghana',
'GI': 'Gibraltar',
'GL': 'Greenland',
'GM': 'Gambia',
'GN': 'Guinea',
'GP': 'Guadeloupe',
'GQ': 'Equatorial Guinea',
'GR': 'Greece',
'GS': 'South Georgia and the South Sandwich Islands',
'GT': 'Guatemala',
'GU': 'Guam',
'GW': 'Guinea-Bissau',
'GY': 'Guyana',
'HK': 'Hong Kong',
'HM': 'Heard & McDonald Islands',
'HN': 'Honduras',
'HR': 'Croatia',
'HT': 'Haiti',
'HU': 'Hungary',
'ID': 'Indonesia',
'IE': 'Ireland',
'IL': 'Israel',
'IN': 'India',
'IO': 'British Indian Ocean Territory',
'IQ': 'Iraq',
'IR': 'Islamic Republic of Iran',
'IS': 'Iceland',
'IT': 'Italy',
'JM': 'Jamaica',
'JO': 'Jordan',
'JP': 'Japan',
'KE': 'Kenya',
'KG': 'Kyrgyzstan',
'KH': 'Cambodia',
'KI': 'Kiribati',
'KM': 'Comoros',
'KN': 'St. Kitts and Nevis',
'KP': 'Korea, Democratic People\'s Republic of',
'KR': 'Korea, Republic of',
'KW': 'Kuwait',
'KY': 'Cayman Islands',
'KZ': 'Kazakhstan',
'LA': 'Lao People\'s Democratic Republic',
'LB': 'Lebanon',
'LC': 'Saint Lucia',
'LI': 'Liechtenstein',
'LK': 'Sri Lanka',
'LR': 'Liberia',
'LS': 'Lesotho',
'LT': 'Lithuania',
'LU': 'Luxembourg',
'LV': 'Latvia',
'LY': 'Libyan Arab Jamahiriya',
'MA': 'Morocco',
'MC': 'Monaco',
'MD': 'Moldova, Republic of',
'MG': 'Madagascar',
'MH': 'Marshall Islands',
'ML': 'Mali',
'MN': 'Mongolia',
'MM': 'Myanmar',
'MO': 'Macau',
'MP': 'Northern Mariana Islands',
'MQ': 'Martinique',
'MR': 'Mauritania',
'MS': 'Monserrat',
'MT': 'Malta',
'MU': 'Mauritius',
'MV': 'Maldives',
'MW': 'Malawi',
'MX': 'Mexico',
'MY': 'Malaysia',
'MZ': 'Mozambique',
'NA': 'Namibia',
'NC': 'New Caledonia',
'NE': 'Niger',
'NF': 'Norfolk Island',
'NG': 'Nigeria',
'NI': 'Nicaragua',
'NL': 'Netherlands',
'NO': 'Norway',
'NP': 'Nepal',
'NR': 'Nauru',
'NT': 'Neutral Zone (no longer exists)',
'NU': 'Niue',
'NZ': 'New Zealand',
'OM': 'Oman',
'PA': 'Panama',
'PE': 'Peru',
'PF': 'French Polynesia',
'PG': 'Papua New Guinea',
'PH': 'Philippines',
'PK': 'Pakistan',
'PL': 'Poland',
'PM': 'St. Pierre & Miquelon',
'PN': 'Pitcairn',
'PR': 'Puerto Rico',
'PT': 'Portugal',
'PW': 'Palau',
'PY': 'Paraguay',
'QA': 'Qatar',
'RE': 'Reunion',
'RO': 'Romania',
'RU': 'Russian Federation',
'RW': 'Rwanda',
'SA': 'Saudi Arabia',
'SB': 'Solomon Islands',
'SC': 'Seychelles',
'SD': 'Sudan',
'SE': 'Sweden',
'SG': 'Singapore',
'SH': 'St. Helena',
'SI': 'Slovenia',
'SJ': 'Svalbard & Jan Mayen Islands',
'SK': 'Slovakia',
'SL': 'Sierra Leone',
'SM': 'San Marino',
'SN': 'Senegal',
'SO': 'Somalia',
'SR': 'Suriname',
'ST': 'Sao Tome & Principe',
'SU': 'Union of Soviet Socialist Republics (no longer exists)',
'SV': 'El Salvador',
'SY': 'Syrian Arab Republic',
'SZ': 'Swaziland',
'TC': 'Turks & Caicos Islands',
'TD': 'Chad',
'TF': 'French Southern Territories',
'TG': 'Togo',
'TH': 'Thailand',
'TJ': 'Tajikistan',
'TK': 'Tokelau',
'TM': 'Turkmenistan',
'TN': 'Tunisia',
'TO': 'Tonga',
'TP': 'East Timor',
'TR': 'Turkey',
'TT': 'Trinidad & Tobago',
'TV': 'Tuvalu',
'TW': 'Taiwan, Province of China',
'TZ': 'Tanzania, United Republic of',
'UA': 'Ukraine',
'UG': 'Uganda',
'UK': 'United Kingdom',
'UM': 'United States Minor Outlying Islands',
'US': 'United States of America',
'UY': 'Uruguay',
'UZ': 'Uzbekistan',
'VA': 'Vatican City State (Holy See)',
'VC': 'St. Vincent & the Grenadines',
'VE': 'Venezuela',
'VG': 'British Virgin Islands',
'VI': 'United States Virgin Islands',
'VN': 'Viet Nam',
'VU': 'Vanuatu',
'WF': 'Wallis & Futuna Islands',
'WS': 'Samoa',
'YD': 'Democratic Yemen (no longer exists)',
'YE': 'Yemen',
'YT': 'Mayotte',
'YU': 'Yugoslavia',
'ZA': 'South Africa',
'ZM': 'Zambia',
'ZR': 'Zaire',
'ZW': 'Zimbabwe',
'ZZ': 'Unknown or unspecified country',
}
def setup_logger(name, verbosity):
logger = logging.getLogger(name)
logger.setLevel(verbosity)
handler = logging.StreamHandler()
handler.setLevel(verbosity)
handler.setFormatter(logging.Formatter("%(asctime)s "
"%(levelname)-8s "
"%(name)s: %(message)s",
"%Y-%m-%d %H:%M:%S"))
logger.addHandler(handler)
return logger
class LogLevel(enum.IntEnum):
debug = logging.DEBUG
info = logging.INFO
warn = logging.WARN
error = logging.ERROR
fatal = logging.FATAL
crit = logging.CRITICAL
def __str__(self):
return self.name
class Output(enum.Enum):
csv = 1
json = 2
haproxy = 3
def __str__(self):
return self.name
def fetch_url(url, *, data=None, method=None, timeout=10):
logger = logging.getLogger("FETCH")
logger.debug("Fetching URL %s with method %s, post data=%s",
url, method, repr(data))
http_req = urllib.request.Request(
url,
data=data,
headers={
"User-Agent": USER_AGENT
}
)
with urllib.request.urlopen(http_req, None, timeout) as resp:
coding = resp.headers.get_content_charset()
coding = coding if coding is not None else "utf-8-sig"
decoder = codecs.getreader(coding)(resp)
res = decoder.read()
return res
def encode_params(params, encoding=None):
return urllib.parse.urlencode(params, encoding=encoding)
def background_init(user_uuid, *, timeout=10.0):
post_data = encode_params({
"login": "1",
"ver": EXT_VER,
}).encode('ascii')
query_string = encode_params({
"uuid": user_uuid,
})
resp = fetch_url(CCGI_URL + "background_init?" + query_string,
data=post_data,
timeout=timeout)
return json.loads(resp)
def zgettunnels(user_uuid, session_key, country="us", *, limit=3, is_premium=0,
timeout=10.0):
qs = encode_params({
"country": country,
"limit": limit,
"ping_id": random.random(),
"ext_ver": EXT_VER,
"browser": EXT_BROWSER,
"product": PRODUCT,
"uuid": user_uuid,
"session_key": session_key,
"is_premium": is_premium,
})
resp = fetch_url(CCGI_URL + "zgettunnels?" + qs, timeout=timeout)
return json.loads(resp)
def vpn_countries(*, timeout=10.0):
qs = encode_params({
"browser": EXT_BROWSER,
})
resp = fetch_url(CCGI_URL + "vpn_countries.json?" + qs, timeout=timeout)
return json.loads(resp)
def parse_args():
def check_loglevel(arg):
try:
return LogLevel[arg]
except (IndexError, KeyError):
raise argparse.ArgumentTypeError("%s is not valid loglevel" % (repr(arg),))
def check_output(arg):
try:
return Output[arg]
except (IndexError, KeyError):
raise argparse.ArgumentTypeError("%s is not valid output format" %
(repr(arg),))
def check_positive_int(arg):
def fail():
raise argparse.ArgumentTypeError("%s is not valid positive integer" % (repr(arg),))
try:
ivalue = int(arg)
except ValueError:
fail()
if ivalue <= 0:
fail()
return ivalue
def check_positive_float(arg):
def fail():
raise argparse.ArgumentTypeError("%s is not valid positive float" % (repr(arg),))
try:
fvalue = float(arg)
except ValueError:
fail()
if fvalue <= 0:
fail()
return fvalue
parser = argparse.ArgumentParser(
description="Fetches free proxy list via Hola browser extension API",
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("-v", "--verbosity",
help="logging verbosity",
type=check_loglevel,
choices=LogLevel,
default=LogLevel.info)
req_group = parser.add_argument_group("request options")
req_group.add_argument("-l", "--list-countries",
action="store_true",
help="list available countries")
req_group.add_argument("-c", "--country",
default="us",
help="desired proxy location")
req_group.add_argument("-n", "--limit",
default=3,
type=check_positive_int,
help="amount of proxies in retrieved list")
req_group.add_argument("-t", "--timeout",
default=10.0,
type=check_positive_float,
help="timeout for network operations")
output_group = parser.add_argument_group("output options")
output_group.add_argument("-O", "--output-format",
help="output format",
type=check_output,
choices=Output,
default=Output.csv)
output_group.add_argument("-A", "--auth-header",
action="store_true",
help="(CSV format only) produce auth header "
"for each line in output")
def_tmpl_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),
"haproxy.cfg.tmpl")
output_group.add_argument("-T", "--template",
help="(haproxy format only) haproxy config "
"template file",
default=def_tmpl_path)
return parser.parse_args()
def output_csv(tunnels, user_uuid, auth_header=False):
login = "user-uuid-" + user_uuid
password = tunnels["agent_key"]
fields = ["Host", "IP address", "Port", "Port type", "Vendor", "Login", "Password"]
if auth_header:
auth_header = "Proxy-Authorization: basic %s" % base64.b64encode(
(login + ":" + password).encode('ascii')).decode('ascii')
fields.append("Auth header")
host_pairs = [(host, ip) for host, ip in tunnels["ip_list"].items()
if tunnels["protocol"][host] in PROTOCOL_WHITELIST]
port_pairs = [(t, p) for t, p in tunnels["port"].items()
if t in PORT_TYPE_WHITELIST]
writer = csv.DictWriter(sys.stdout, fieldnames=fields)
writer.writeheader()
for host, ip in host_pairs:
for port_type, port in port_pairs:
row = {
"Host": host,
"IP address": ip,
"Port": port,
"Port type": port_type,
"Vendor": tunnels["vendor"][host],
"Login": login,
"Password": password,
}
if auth_header:
row["Auth header"] = auth_header
writer.writerow(row)
def output_json(tunnels, user_uuid):
out_data = dict(tunnels)
out_data["uuid"] = user_uuid
json.dump(out_data, sys.stdout, indent=4, sort_keys=True)
def output_haproxy(tunnels, user_uuid, tmpl_path):
login = "user-uuid-" + user_uuid
password = tunnels["agent_key"]
auth_header = "basic %s" % base64.b64encode(
(login + ":" + password).encode('ascii')).decode('ascii')
first_host = next(iter(tunnels["ip_list"]))
first_ip = tunnels["ip_list"][first_host]
base_vars = {
"first_host": first_host,
"first_ip": first_ip,
"auth_header": auth_header,
}
for port_type in PORT_TYPE_WHITELIST:
if port_type in tunnels["port"]:
base_vars[port_type + "_port"] = tunnels["port"][port_type]
with open(tmpl_path) as tmpl_file:
for line in tmpl_file:
t = string.Template(line)
try:
sys.stdout.write(t.substitute(base_vars))
except KeyError:
try:
for counter, (host, ip) in enumerate(tunnels["ip_list"].items()):
sys.stdout.write(t.substitute(base_vars,
host=host,
ip=ip,
counter=counter))
except KeyError as exc:
raise RuntimeError("Template variable %s is undefined" %
(repr(exc.args[0]),))
def main():
args = parse_args()
logger = setup_logger("MAIN", args.verbosity)
setup_logger("FETCH", args.verbosity)
try:
if args.list_countries:
for cc in vpn_countries(timeout=args.timeout):
print("%s - %s" % (cc, ISO3166.get(cc.upper(), "???")))
return
user_uuid = uuid.uuid4().hex
logger.info("Generated user UUID: %s", user_uuid)
logger.info("Retrieving session key...")
session_key = background_init(user_uuid, timeout=args.timeout)["key"]
logger.info("Session key = %s", repr(session_key))
tunnels = zgettunnels(user_uuid, session_key,
country=args.country, limit=args.limit,
timeout=args.timeout)
logger.debug("Retrieved tunnels data: %s", tunnels)
if args.output_format is Output.csv:
output_csv(tunnels, user_uuid, args.auth_header)
elif args.output_format is Output.json:
output_json(tunnels, user_uuid)
elif args.output_format is Output.haproxy:
output_haproxy(tunnels, user_uuid, args.template)
else:
raise RuntimeError("Unsupported output format")
except KeyboardInterrupt:
pass
except Exception as exc:
logger.exception("Got exception: %s", str(exc))
if __name__ == "__main__":
main()