forked from poohber/rknscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrknscan.py
482 lines (423 loc) · 19.9 KB
/
rknscan.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
#-*- coding: utf-8 -*-
#from urllib import urlopen
import urllib.request
import urllib.parse
import urllib.error
import xml.etree.ElementTree as ET
import re
from optparse import OptionParser
from threading import Thread, Lock
import socket
import requests
import string
import time
import os
import dns.resolver
import dns.exception
import colorama
from termcolor import colored
from queue import Queue, Empty
from requests.exceptions import ConnectionError
colorama.init()
parser = OptionParser()
parser.add_option("-r", "--regexp", dest="regexp", help="Установить регулярное выражение, по которому будет матчиться вывод открываемой страницы (тут необходимо указать какой-либо кусок со страницы заглушки)")
parser.add_option("-v", "--verbose", dest="verbose", help="Увеличить вербозность (для дебага)", action="store_true")
parser.add_option("-n", "--numthreads", dest="n_threads", help="Установить количество потоков (defaul=500)")
parser.add_option("-t", "--timeout", dest="timeout", help="Таймаут по истечению которого неответивший сайт считается недоступным (default=3)")
parser.add_option("-f", "--file", dest="file", help="Указать файл с перечнем URL для проверки (НЕ в случае реестра Роскомнадзора)")
parser.add_option("-s", "--substituteip", dest="substitute", help="Добавление в выборку URL адресов, с замененным доменом на IP адрес (в случае реестра Роскомнадзора)", action="store_true")
parser.add_option("-c", "--console", dest="console", help="Запуск в консольном режиме (без интерактива)", action="store_true")
(options, args) = parser.parse_args()
regexp = "logo_eco.png" if not options.regexp else options.regexp
timeout = 3 if not options.timeout else int(options.timeout)
n_threads = 500 if not options.n_threads else int(options.n_threads)
verbose = 0 if not options.verbose else int(options.verbose)
f = '' if not options.file else options.file
substitute = options.substitute
if options.timeout:options.timeout=float(options.timeout)
def query_yes_no(question, default="yes"):
valid = {"yes": True, "y": True, "ye": True,
"no": False, "n": False}
if default is None:
prompt = " [y/n] "
elif default == "yes":
prompt = " [Y/n] "
elif default == "no":
prompt = " [y/N] "
else:
raise ValueError("invalid default answer: '%s'" % default)
while True:
print(question + prompt, end="")
choice = input().lower()
if default is not None and choice == '':
return valid[default]
elif choice in valid:
return valid[choice]
else:
print(colored("Пожалуйста введите 'yes' или 'no' "
"(или 'y' или 'n').", 'red'))
if not options.console:
regexp = input("Введите регулярное выражение для поиска на странице-заглушке: ")
timeout = input("Введите таймаут по истечению которого неответивший сайт будет считаться недоступным (3): ")
n_threads = input("Введите количество потоков (500): ")
f = input("Введите имя файла для проверки (пусто если проверяем реестр РКН): ")
substitute = query_yes_no("Добавлять в выборку url с заменой domain на ip адрес ресурса?")
verbose = 0
regexp = "logo_eco.png" if regexp=='' else regexp
timeout = 3 if not timeout else int(timeout)
n_threads = 500 if not n_threads else int(n_threads)
dns_records_list = {"gelbooru.com": ['5.178.68.100'],
"e621.net": ['162.159.243.197', '162.159.244.197'],
"sukebei.nyaa.se": ['69.165.95.242'],
"2chru.net": ['162.159.251.219', '198.41.249.219']}
dpi_list = {'rutracker.org':
{'host': 'rutracker.org', 'urn': '/forum/index.php',
'lookfor': 'groupcp.php"', 'ip': '195.82.146.214'},
'gelbooru.com':
{'host': 'gelbooru.com', 'urn': '/index.php?page=post&s=view&id=1989610',
'lookfor': 'Gelbooru- Image View', 'ip': '5.178.68.100'},
}
google_dns = '8.8.4.4'
urlregex = re.compile(
r'^((?:http|https|newcamd525|mgcamd525)://)?' # http:// or https://
r'(?:(?:[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?\.)+(?:[A-Z]{2,6}\.?|[A-Z0-9-]{2,}\.?)|' #domain...
r'localhost|' #localhost...
r'\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})' # ...or ip
r'(?::\d+)?' # optional port
r'(?:/?|[/?]\S+)$', re.IGNORECASE)
def _decode_bytes(input_bytes):
return input_bytes.decode(errors='replace')
def _get_a_record(site, timeout=3, dnsserver=None):
resolver = dns.resolver.Resolver()
resolver.timeout = timeout
resolver.lifetime = timeout
if dnsserver:
resolver.nameservers = [dnsserver]
result = []
while len(resolver.nameservers):
try:
try:
answer=resolver.query(site)
except Exception as e:
#print(" Невозможно зарезолвить сайт: "+site)
return False
for item in answer.rrset.items:
item = item.to_text()
if '#' in item:
hex_data = item.split(" ")[2]
item="%i.%i.%i.%i" % (int(hex_data[0:2],16),int(hex_data[2:4],16),int(hex_data[4:6],16),int(hex_data[6:8],16))
result.append(item)
return result
except dns.exception.Timeout:
resolver.nameservers.remove(resolver.nameservers[0])
# If all the requests failed
return False
def _get_a_records(sitelist, timeout, dnsserver=None):
result = []
for site in sitelist:
try:
records = _get_a_record(site, timeout, dnsserver)
if not records:
return False
for item in records:
result.append(item)
except dns.resolver.NXDOMAIN:
print("[!] Невозможно получить DNS-запись для домена {} (NXDOMAIN). Результаты могут быть неточными.".format(site))
except dns.exception.DNSException:
return ""
return sorted(result)
def _dpi_send(host, port, data, fragment_size=0, fragment_count=0):
sock = socket.create_connection((host, port), 10)
if fragment_count:
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, True)
try:
for fragment in range(fragment_count):
sock.sendall(data[:fragment_size].encode())
data = data[fragment_size:]
sock.sendall(data.encode())
recvdata = sock.recv(8192)
recv = recvdata
while recvdata:
recvdata = sock.recv(8192)
recv += recvdata
finally:
try:
sock.shutdown(socket.SHUT_RDWR)
except:
pass
sock.close()
return _decode_bytes(recv)
def _dpi_build_tests(host, urn, ip, lookfor):
dpi_built_list = \
{'дополнительный пробел после GET':
{'data': "GET {} HTTP/1.0\r\n".format(urn) + \
"Host: {}\r\nConnection: close\r\n\r\n".format(host),
'lookfor': lookfor, 'ip': ip,
'fragment_size': 0, 'fragment_count': 0},
'дополнительный пробел после urn':
{'data': "GET {} HTTP/1.0\r\n".format(urn) + \
"Host: {}\r\nConnection: close\r\n\r\n".format(host),
'lookfor': lookfor, 'ip': ip,
'fragment_size': 0, 'fragment_count': 0},
'дополнительный пробел после HTTP/1.0':
{'data': "GET {} HTTP/1.0 \r\n".format(urn) + \
"Host: {}\r\nConnection: close\r\n\r\n".format(host),
'lookfor': lookfor, 'ip': ip,
'fragment_size': 0, 'fragment_count': 0},
'нестандартная версия HTTP':
{'data': "GET {} HTTP/123.456\r\n".format(urn) + \
"Host: {}\r\nConnection: close\r\n\r\n".format(host),
'lookfor': lookfor, 'ip': ip,
'fragment_size': 0, 'fragment_count': 0},
'фрагментирование заголовка':
{'data': "GET {} HTTP/1.0\r\n".format(urn) + \
"Host: {}\r\nConnection: close\r\n\r\n".format(host),
'lookfor': lookfor, 'ip': ip,
'fragment_size': 2, 'fragment_count': 6},
'точка в конце домена':
{'data': "GET {} HTTP/1.0\r\n".format(urn) + \
"Host: {}.\r\nConnection: close\r\n\r\n".format(host),
'lookfor': lookfor, 'ip': ip,
'fragment_size': 0, 'fragment_count': 0},
'заголовок host вместо Host':
{'data': "GET {} HTTP/1.0\r\n".format(urn) + \
"host: {}\r\nConnection: close\r\n\r\n".format(host),
'lookfor': lookfor, 'ip': ip,
'fragment_size': 0, 'fragment_count': 0},
'перенос строки в заголовках в UNIX-стиле':
{'data': "GET {} HTTP/1.0\n".format(urn) + \
"Host: {}\nConnection: close\n\n".format(host),
'lookfor': lookfor, 'ip': ip,
'fragment_size': 0, 'fragment_count': 0},
'необычный порядок заголовков':
{'data': "GET {} HTTP/1.0\r\n".format(urn) + \
"Connection: close\r\nHost: {}\r\n\r\n".format(host),
'lookfor': lookfor, 'ip': ip,
'fragment_size': 0, 'fragment_count': 0},
}
return dpi_built_list
def test_dpi():
print("[O] Тестируем обход DPI")
dpiresults = []
for dpisite in dpi_list:
site = dpi_list[dpisite]
dpi_built_tests = _dpi_build_tests(site['host'], site['urn'], site['ip'], site['lookfor'])
for testname in dpi_built_tests:
test = dpi_built_tests[testname]
print("\tПробуем способ \"{}\" на {}".format(testname, dpisite))
try:
result = _dpi_send(test.get('ip'), 80, test.get('data'), test.get('fragment_size'), test.get('fragment_count'))
except Exception as e:
print(colored("[ok] Ошибка:"+ repr(e),'green'))
else:
if result.split("\n")[0].find('200 ') != -1 and result.find(test['lookfor']) != -1:
print(colored("[f] Сайт открывается",'red'))
dpiresults.append(testname)
elif result.split("\n")[0].find('200 ') == -1 and result.find(test['lookfor']) != -1:
print("[!] Сайт не открывается, обнаружен пассивный DPI!")
dpiresults.append('Passive DPI')
else:
print(colored("[ok] Сайт не открывается",'green'))
return list(set(dpiresults))
def test_dns():
sites = dns_records_list
sites_list = list(sites.keys())
print("[O] Тестируем DNS")
print("[O] Получаем эталонные DNS с сервера")
try:
remote_dns = urllib.request.urlopen("http://blockcheck.antizapret.prostovpn.org/getdns.php",
timeout=10).read()
remote_dns = _decode_bytes(remote_dns).split()
print("\tЭталонные адреса:\t\t", str(remote_dns))
except:
remote_dns = None
print(colored("[f] Не удалось получить DNS с сервера, результаты могут быть неточными",'red'))
resolved_default_dns = _get_a_records(sites_list, timeout)
if resolved_default_dns:
print("\tАдреса через системные DNS:\t", str(resolved_default_dns))
else:
print("\tНе удалось подключиться к системному DNS")
resolved_google_dns = _get_a_records(sites_list, timeout, google_dns)
if resolved_google_dns:
print("\tАдреса через Google DNS:\t", str(resolved_google_dns))
else:
print("\tНе удалось подключиться к Google DNS")
if not resolved_google_dns or not resolved_default_dns:
print(colored("Проблема с разрешением DNS на системном, либо google сервере",'red'))
input("Нажмите Enter чтобы выйти...")
exit(1)
if (remote_dns):
# Если получили IP с сервера, используем их
dns_records = remote_dns
else:
dns_records = sorted([item for sublist in sites.values() for item in sublist])
if resolved_default_dns == resolved_google_dns:
if resolved_default_dns == dns_records:
print(colored("[ok] DNS-записи не подменяются",'green'))
return 0
else:
print(colored("[f] DNS-записи подменяются",'red'))
return 2
print("[?] Способ блокировки DNS определить не удалось")
return 3
class WorkerThread(Thread):
def __init__(self,url_list,url_list_lock,regexp,timeout,verbose):
super(WorkerThread,self).__init__()
self.kill_received=False
self.url_list=url_list
self.url_list_lock=url_list_lock
self.regexp=regexp
self.timeout=timeout
self.verbose=verbose
def stop(self):
self._stop.set()
def run(self):
while not self.kill_received:
nextproto, nexturl, needresolve = self.grab_next_url()
if nexturl==None:break
self.retrieve_url(nextproto,nexturl,needresolve)
def grab_next_url(self):
self.url_list_lock.acquire(1)
if len(self.url_list)<1:
nexturl=None
nextproto=None
needresolve=None
else:
nextproto, nexturl, needresolve = self.url_list[0]
del self.url_list[0]
percdone = float((total-len(url_list))*100/total)
s = "Done: %1.2f%%"%percdone
print("\b"*len(s)+s, end="")
#print end="")
self.url_list_lock.release()
return [nextproto,nexturl,needresolve]
def retrieve_url(self,nextproto,nexturl,needresolve):
#print ("====%s %r==="%(nexturl,needresolve))
if self.verbose:print ('################### %s - %s - %r #######################' % (nextproto,nexturl,needresolve))
domain, port = getdomain(nexturl,nextproto)
if needresolve:
#ip = gethostbyname_or_timeout(domain, timeout_secs = 0.5)
ip = _get_a_record(domain, self.timeout)
if not ip or '127.0.0.1' in ip or '0.0.0.0' in ip:
return False
if nextproto in ['http','https']:
try:
if os.path.isfile('cacert.pem'):
page = requests.get(nexturl,timeout=self.timeout,verify='cacert.pem').text
else:
page = requests.get(nexturl,timeout=self.timeout).text
except Exception as e:
return
if not re.findall(r'%s'%self.regexp,page):
opend.append(nexturl)
print(" [f] Открылся: "+nexturl)
elif nextproto in ['newcamd525','mgcamd525']:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
if not sock.connect_ex((domain, int(port))):opend.append(nextproto+"://"+nexturl)
else:
print("Unknown proto: "+nextproto)
return False
def domain2ip_url(url,ip,port,proto):
return re.sub(r"(?<=^"+proto+":\/\/)[^\/]+",ip+":"+port,url)
def getproto(url):
res=re.findall(r"^[^(:\/\/)]+",url)
if not len(res):return False
return res[0]
def getdomain(url, proto):
res=re.findall(r"(?<="+proto+":\/\/)[^\/]+",url)
if not len(res):return False
if ':' in res[0]:
return res[0].split(':')
return [res[0], '80']
test_dns()
test_dpi()
input("Нажмите Enter чтобы продолжить...")
if f=='':
if not os.path.isfile('dump.xml'):
print(colored("Не могу найти dump.xml в этой директории",'red'))
input("Нажмите Enter чтобы выйти...")
exit(2)
else:
if not os.path.isfile(f):
print(colored("Can't find "+f,'red'))
input("Нажмите Enter чтобы выйти...")
exit(3)
opend=[]
#"""
url_list = []
if f!='':
f = open(f,'r')
for line in f:
url = line.strip()
if not urlregex.match(url):
print(colored('wrong url: '+url,'red'))
input("Нажмите Enter чтобы выйти...")
exit(4)
proto = getproto(url)
if not proto in ['http','https','newcamd525','mgcamd525']:
print(colored("Ошибка определения протокола: "+url,'red'))
input("Нажмите Enter чтобы выйти...")
exit(5)
urldomain, port = getdomain(url,proto)
url_list.append([proto]+[url]+[True])
f.close()
else:
dump = ET.parse('dump.xml')
root = dump.getroot()
for content in root:
#if content.attrib['id']!=str(76487):
# continue
ips = domains = urls = urldomain = port = proto = None
ips = content.findall('ip')
if not ips:
print(colored("Can't find IP of content with id = " + content.attrib['id'],'red'))
input("Нажмите Enter чтобы выйти...")
exit(6)
domains = content.findall('domain')
urls = content.findall('url')
if urls:
for url in urls:
proto = getproto(url.text)
urldomain, port = getdomain(url.text,proto)
url_list.append([proto]+[url.text]+[True])
if substitute:
for ip in ips:
url_list.append([proto]+[domain2ip_url(url.text, ip.text, port, proto)]+[False])
else:
if domains:
for domain in domains:
url_list.append(['http',"http://" + domain.text]+[True])
url_list.append(['https',"https://" + domain.text]+[True])
if substitute:
for ip in ips:
url_list.append(['http',"http://" + ip.text]+[False])
url_list.append(['https',"https://" + ip.text]+[False])
#print(url_list);exit(0)
total = len(url_list)
print("[O] Количество URL для проверки: " + str(total))
if total==0:
print("Nothing to do")
input("Нажмите Enter чтобы выйти...")
exit(0)
url_list_lock = Lock()
workerthreadlist=[]
for x in range(0,n_threads-1):
newthread = WorkerThread(url_list,url_list_lock,regexp,timeout,verbose)
workerthreadlist.append(newthread)
newthread.start()
while len(workerthreadlist) > 0:
try:
workerthreadlist = [t.join(1) for t in workerthreadlist if t is not None and t.isAlive()]
except KeyboardInterrupt:
print("\nCtrl-c! Остановка всех потоков...")
for t in workerthreadlist:
t.kill_received = True
print()
perc = len(opend)*100/total
print(colored("[f]",'cyan'), end="") if perc else print(colored("[ok]",'cyan'),end="")
print (colored(" Процент открывшихся сайтов: "+str(perc)+"%",'cyan'))
if perc:
print(colored("[f] Открывшиеся сайты:",'red'))
for url in opend:
print(colored("\t[f] "+url,'red'))
input("Нажмите Enter чтобы выйти...")