-
-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathsnoop.py
executable file
·2069 lines (1764 loc) · 119 KB
/
snoop.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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#! /usr/bin/env python3
# Copyright (c) 2020 Snoop Project <[email protected]>
import argparse
import certifi
import csv
import glob
import itertools
import json
import locale
import os
import platform
import psutil
import random
import re
import requests
import shutil
import signal
import ssl
import subprocess
import sys
import textwrap
import time
import webbrowser
from charset_normalizer import detect as char_detect
from collections import Counter
from colorama import Fore, init, Style
from concurrent.futures import as_completed, ProcessPoolExecutor, ThreadPoolExecutor, TimeoutError
from multiprocessing import active_children
from rich.console import Console
from rich.markdown import Markdown
from rich.panel import Panel
from rich.progress import BarColumn, Progress, SpinnerColumn, TimeElapsedColumn
from rich.style import Style as STL
from rich.table import Table
import snoopbanner
import snoopnetworktest
import snoopplugins
if int(platform.python_version_tuple()[1]) >= 8:
from importlib.metadata import version as version_lib
PYTHON_3_8_PLUS = True
else:
PYTHON_3_8_PLUS = False
locale.setlocale(locale.LC_ALL, '')
init(autoreset=True)
console = Console()
## Баннер и версия ПО.
def version_snoop(vers, vers_code, demo_full):
print(f"""\033[36m
___|
\\___ \\ __ \\ _ \\ _ \\ __ \\
| | | ( | ( | | |
_____/ _| _|\\___/ \\___/ .__/
_| \033[0m \033[37m\033[44m{vers}\033[0m
""")
sb = "build" if vers_code == 'b' else "source"
_sb = "demo" if demo_full == 'd' else "full"
if WINDOWS: OS_ = f"ru Snoop for Windows {sb} {_sb}"
elif ANDROID: OS_ = f"ru Snoop for Termux {sb} {_sb}"
elif LINUX: OS_ = f"ru Snoop for GNU/Linux {sb} {_sb}"
console.print(f"[dim cyan]Примеры:\n $ [/dim cyan]" + \
f"[cyan]{'cd C:' + chr(92) + 'path' + chr(92) + 'snoop' if WINDOWS else 'cd ~/snoop'}[/cyan]")
console.print(f"[dim cyan] $ [/dim cyan][cyan]{'python' if WINDOWS else 'python3'} snoop.py --help[/cyan] #справка")
console.print(f"[dim cyan] $ [/dim cyan][cyan]{'python' if WINDOWS else 'python3'} snoop.py --module[/cyan] #плагины")
console.print(f"[dim cyan] $ [/dim cyan][cyan]{'python' if WINDOWS else 'python3'} snoop.py nickname[/cyan] #поиск user-a")
console.rule(characters="=", style="cyan")
print("")
return f"{vers}_{OS_}"
## Создание директорий результатов.
def mkdir_path():
if WINDOWS:
dirhome = os.environ['LOCALAPPDATA'] + "\\snoop"
elif ANDROID:
if not os.access("/data/data/com.termux/files/home/storage/shared", os.W_OK):
console.print("[bold yellow]Согласитесь на разовую, стандартную операцию в Termux, открыв доступ к " + \
"диску, иначе результаты поиска невозможно будет сохранить в общедоступном каталоге на OS Android, " + \
"подробнее см. Wiki Termux: https://wiki.termux.com/wiki/Termux-setup-storage[/bold yellow]\n")
code = subprocess.run("termux-setup-storage", shell=True)
if code.returncode == 1:
console.print("\n[bold red]каталог для результатов поиска: '/storage/emulated/0/snoop' не создан, " + \
"отклонено пользователем.[bold red]\n")
dirhome = os.environ['HOME'] + "/snoop"
else:
dirhome = "/data/data/com.termux/files/home/storage/shared/snoop"
elif LINUX:
dirhome = os.environ['HOME'] + "/snoop"
dirpath = os.getcwd() if 'source' in VERSION and not ANDROID else dirhome
os.makedirs(f"{dirpath}/results", exist_ok=True)
os.makedirs(f"{dirpath}/results/nicknames/html", exist_ok=True)
os.makedirs(f"{dirpath}/results/nicknames/txt", exist_ok=True)
os.makedirs(f"{dirpath}/results/nicknames/csv", exist_ok=True)
os.makedirs(f"{dirpath}/results/nicknames/save reports", exist_ok=True)
os.makedirs(f"{dirpath}/results/plugins/ReverseVgeocoder", exist_ok=True)
os.makedirs(f"{dirpath}/results/plugins/Yandex_parser", exist_ok=True)
os.makedirs(f"{dirpath}/results/plugins/domain", exist_ok=True)
return dirpath
## Константы.
ANDROID = True if hasattr(sys, 'getandroidapilevel') else False
WINDOWS = True if sys.platform == 'win32' else False
LINUX = True if ANDROID is False and WINDOWS is False else False
E_MAIL = 'demo: [email protected]'
END_OF_LICENSE = (2026, 1, 1, 3, 0, 0, 0, 0, 0) #формат даты согласно международному стандарту ISO 8601, год-месяц-день.
VERSION = version_snoop('v1.4.2', "s", "d")
DIRPATH = mkdir_path()
TIME_START = time.time()
TIME_DATE = time.localtime()
dic_binding = {"symbol_bad": re.compile("[^a-zA-Zа-яА-Я\\_\\s\\d\\%\\@\\-\\.\\+]"),
"badraw": [], "badzone": [],
"censors": 0, "android_lame_workhorse": False}
## Создание web-каталога и его контроль, но не файлов внутри + раздача верных прав "-x -R" после компиляции двоичных данных [.mp3].
def web_path_copy():
try:
if "build" in VERSION and os.path.exists(f"{DIRPATH}/web") is False:
shutil.copytree(web_path, f"{DIRPATH}/web")
if LINUX: #и 'build' in 'VERSION'
os.chmod(f"{DIRPATH}/web", 0o755)
for total_file_path in glob.iglob(f"{DIRPATH}/web/**/*", recursive=True):
if os.path.isfile(total_file_path) == True:
os.chmod(total_file_path, 0o644)
else:
os.chmod(total_file_path, 0o755)
elif "source" in VERSION and ANDROID and os.path.exists("/data/data/com.termux/files/home/storage/shared/snoop/web") is False:
shutil.copytree(f"{os.getcwd()}/web", "/data/data/com.termux/files/home/storage/shared/snoop/web")
except Exception as e:
print(f"ERR: {e}")
## Действие лицензии.
def license():
date_up = int(time.mktime(END_OF_LICENSE)) #дата в секундах с начала эпохи
End = time.strftime('%Y-%m-%d', time.gmtime(date_up))
if time.time() > date_up:
snoopbanner.logo(text=f"ПО {VERSION} деактивировано согласно лицензии.")
sys.exit()
return End
## Расход памяти.
def mem_test():
try:
return round(psutil.virtual_memory().available / 1024 / 1024)
except Exception:
if not WINDOWS:
console.print(f"{' ' * 17} [bold red]ERR Psutil lib[/bold red]")
return int(subprocess.check_output("free -m", shell=True, text=True).splitlines()[1].split()[-1])
else:
return -1
## Вывести на печать инфостроку.
def info_str(infostr, nick, color=True):
if color is True:
print(f"{Fore.GREEN}[{Fore.YELLOW}*{Fore.GREEN}] {infostr}{Fore.RED} <{Fore.WHITE} {nick} {Fore.RED}>{Style.RESET_ALL}")
else:
print(f"\n[*] {infostr} < {nick} >")
## Bad_raw, bad_zone.
def bad_raw(flagBS_err, bad_zone, nick, lst_options):
print(f"{Fore.CYAN}├───Дата поиска:{Style.RESET_ALL} {time.strftime('%Y-%m-%d__%H:%M:%S', TIME_DATE)}")
if any(lst_options):
print(f"{Fore.CYAN}└────\033[31;1mBad_raw: {flagBS_err}% БД, bad_zone {bad_zone}\033[0m\n")
else:
if 4 >= flagBS_err >= 2:
print(f"{Fore.CYAN}└────\033[33;1mВнимание! Bad_raw: {flagBS_err}% БД, bad_zone {bad_zone}\033[0m")
elif 12 >= flagBS_err > 4:
print(f"{Fore.CYAN}└────\033[31;1mВнимание!! Bad_raw: {flagBS_err}% БД, bad_zone {bad_zone}\033[0m")
elif flagBS_err > 12:
print(f"{Fore.CYAN}└────\033[30m\033[41mВнимание!!! Bad_raw: {flagBS_err}% БД, критический уровень, " + \
f"bad_zone {bad_zone}\033[0m")
if not any(lst_options):
print(Fore.CYAN + " └─нестабильное соединение или I_Censorship")
print(f" \033[36m{'├' if 'full' in VERSION else '└'}─используйте \033[36;1mVPN\033[0m\033[36m/'\033[0m" + \
f"\033[36;1m--web-base\033[0m\033[36m'\033[0m ", end='' if 'full' in VERSION else '\n\n')
if "full" in VERSION:
nick = f"'{nick}'" if nick.count(" ") > 0 else nick
print(f"\033[36m\n └─или исключите из поиска bad_zone: '\033[36;1m" + \
f"{bad_zone.split('/')[0].replace('~', '')}\033[0m" + \
f"\033[36m'\n └─$ {os.path.basename(sys.argv[0])} -w --exclude " + \
f"{bad_zone.split('/')[0].replace('~', '')} {nick}\033[0m\n")
## Форматирование, отступы.
def format_txt(text, k=False, m=False):
gal = " · " if WINDOWS else " ✔ "
indent_end = "" if k else " " * 3
gal = gal if k and not m else ""
try:
return textwrap.fill(f"{gal}{text}", width=os.get_terminal_size()[0], subsequent_indent=" " * 3, initial_indent=indent_end)
except OSError:
return "ERR"
## Вывести на печать ошибки.
def print_error(websites_names, errstr, country_code, errX, verbose=False, color=True):
"""Вывести на печать разного рода ошибки сети."""
if color is True:
print(f"{Style.RESET_ALL}{Fore.RED}[{Style.BRIGHT}{Fore.RED}-{Style.RESET_ALL}{Fore.RED}]{Style.BRIGHT}" \
f"{Fore.GREEN} {websites_names}: {Style.BRIGHT}{Fore.RED}{errstr}{country_code}" \
f"{Fore.YELLOW} {errX if verbose else ''} {Style.RESET_ALL}")
else:
print(f"[!] {websites_names}: {errstr}{country_code} {errX if verbose else ''}")
## Вывод на печать на разных платформах, индикация.
def print_found_country(websites_names, url, country_Emoj_Code, verbose=False, color=True):
"""Вывести на печать аккаунт найден."""
if color is True and WINDOWS:
print(f"{Style.RESET_ALL}{Style.BRIGHT}{Fore.CYAN}{country_Emoj_Code}" \
f"{Fore.GREEN} {websites_names}:{Style.RESET_ALL}{Fore.GREEN} {url}{Style.RESET_ALL}")
elif color is True and not WINDOWS:
print(f"{Style.RESET_ALL}{country_Emoj_Code}{Style.BRIGHT}{Fore.GREEN} {websites_names}: " \
f"{Style.RESET_ALL}{Style.DIM}{Fore.GREEN}{url}{Style.RESET_ALL}")
else:
print(f"[+] {websites_names}: {url}")
def print_not_found(websites_names, verbose=False, color=True):
"""Вывести на печать аккаунт не найден."""
if color is True:
print(f"{Style.RESET_ALL}{Fore.CYAN}[{Style.BRIGHT}{Fore.RED}-{Style.RESET_ALL}{Fore.CYAN}]" \
f"{Style.BRIGHT}{Fore.GREEN} {websites_names}: {Style.BRIGHT}{Fore.YELLOW}Увы!{Style.RESET_ALL}")
else:
print(f"[-] {websites_names}: Увы!")
## Вывести на печать пропуск сайтов по блок. маске в имени username, gray_list.
def print_invalid(websites_names, message, color=True):
if color is True:
return f"{Style.RESET_ALL}{Fore.RED}[{Style.BRIGHT}{Fore.RED}-{Style.RESET_ALL}{Fore.RED}]" \
f"{Style.BRIGHT}{Fore.GREEN} {websites_names}: {Style.RESET_ALL}{Fore.YELLOW}{message}{Style.RESET_ALL}\n"
else:
return f"[-] {websites_names}: {message}\n"
## Вывести предупреждение об устаревших версиях библиотек.
def warning_lib():
if int(requests.urllib3.__version__.split(".")[0]) < 2 or int("".join(requests.__version__.split("."))) < 2282:
console.log("[yellow]Внимание! \n\nВ Requests > v2.28.2 / Urllib3 v2 разработчики отказались от поддержки старых шифров. " + \
"Некоторые, немногочисленные, устаревшие сайты из БД, работающие по старой технологии, будут продолжать " + \
"коннектиться без ошибок (Snoop будет стремиться обеспечивать режим совместимости с любыми старыми версиями " + \
"Requests / Urllib3).[/yellow]\n\n[bold green]Все же рекомендуется обновить зависимости: \n" + \
"$ python -m pip install requests urllib3 -U[/bold green]", highlight=False)
console.rule(characters="=", style="cyan")
## Сеть.
def r_session(cert=False, connect=0, speed=False, norm = False, method="get",
url=None, headers="", allow_redirects=True, req_retry=False, timeout=9):
"""
Объект сессии нужен для расширения пула сетевых соединений, существенный минус (многопоточноть/OS Windows):
с течением времени происходит утечка процессорного времени. Обходное решение: создавать временную сессию
на каждое соединение без кэширования, прирост производительности (Windows) ~25-30%.
Кроме того, в версии urllib3 > 2 при multiprocessing (Linux) необходимо вручную мариновать объект SSL.
"""
if speed:
connections = (speed + 20) if speed >= 60 else (70 if not WINDOWS else 50)
elif speed is False:
connections = 200 if LINUX else (70 if WINDOWS else 40) #L/W/A.
if req_retry:
total = False if norm else None
retry = requests.urllib3.util.Retry(total=100, connect=100, read=100, status=100, other=100, backoff_factor=0.1)
adapter = requests.adapters.HTTPAdapter(max_retries=retry)
else:
adapter = requests.adapters.HTTPAdapter()
try: #urllib3 > 2
cert_reqs = ssl.CERT_NONE if cert is False else ssl.CERT_REQUIRED
ciphers = 'ECDHE+AESGCM:ECDHE+CHACHA20:DHE+AESGCM:DHE+CHACHA20:ECDH+AESGCM:DH+AESGCM\
:ECDH+AES:DH+AES:RSA+AESGCM:RSA+AES:!aNULL:!eNULL:!MD5:!DSS:HIGH:!DH'
ctx = requests.urllib3.util.create_urllib3_context(ciphers=ciphers, cert_reqs=cert_reqs)
adapter.init_poolmanager(connections=connections, maxsize=40 if ANDROID else 20, block=False,
ssl_minimum_version=ssl.TLSVersion.TLSv1, ssl_context=ctx)
except Exception: #urllib3 < 2, перенастраивать процессы не требуется
requests.packages.urllib3.util.ssl_.DEFAULT_CIPHERS += ':HIGH:!DH:!aNULL'
adapter.init_poolmanager(connections=connections, maxsize=20, block=False)
requests.packages.urllib3.disable_warnings()
r_session = requests.Session()
r_session.max_redirects = 6 if ANDROID else 9
r_session.verify = False if cert is False else certifi.where()
r_session.mount('http://', adapter)
r_session.mount('https://', adapter)
if method == "get":
req_session = r_session.get
elif method == "head":
req_session = r_session.head
return req_session(url=url, headers=headers, allow_redirects=allow_redirects, timeout=timeout)
## Вернуть результат future.
# Логика: возврат ответа и дублирующего метода (из 4-х) в случае успеха/повтора.
def r_results(request_future, error_type, websites_names, timeout=None, norm=False,
print_found_only=False, verbose=False, color=True, country_code=''):
try:
res = request_future.result(timeout=timeout + 10)
if res.status_code:
return res, error_type, str(round(res.elapsed.total_seconds(), 2))
except requests.exceptions.HTTPError as err1:
if norm is False and print_found_only is False:
print_error(websites_names, "HTTP Error ", country_code, err1, verbose, color)
except requests.exceptions.ConnectionError as err2:
if norm is False and ('aborted' in str(err2) or 'None: None' in str(err2) or
'SSLZeroReturnError' in str(err2) or 'Failed' in str(err2) or 'None' == str(err2)):
dic_binding.update({'censors': dic_binding.get('censors') + 1})
if print_found_only is False:
print_error(websites_names, "Ошибка соединения ", country_code, err2, verbose, color)
return "FakeNone", "", "-"
else:
if norm is False and print_found_only is False:
print_error(websites_names, "Censorship | TLS ", country_code, err2, verbose, color)
except (requests.exceptions.Timeout, TimeoutError) as err3:
if norm is False and print_found_only is False:
print_error(websites_names, "Timeout ошибка ", country_code, err3, verbose, color)
if len(str(repr(err3))) == 14:
dic_binding.update({'censors': dic_binding.get('censors') + 1})
return "FakeStuck", "", "-"
except requests.exceptions.RequestException as err4:
if norm is False and print_found_only is False:
print_error(websites_names, "Непредвиденная ошибка ", country_code, err4, verbose, color)
except Exception as err5:
if norm is False and print_found_only is False:
print_error(websites_names, "Network Pool Crash ", country_code, err5, verbose, color)
dic_binding.update({'censors': dic_binding.get('censors') + 1})
return None, "Great Snoop returns None", "-"
## Сохранение отчетов, опция (-S).
def new_session(url, headers, error_type, username, websites_names, r, t):
"""
Если nickname найден, но актуальная html-страница находится дальше по редиректу,
поднимаем новое соединение и двигаемся по редиректу чтобы ее захватить и сохранить.
"""
response = r_session(url=url, headers=headers, allow_redirects=True, timeout=t)
# Ловушка на некот.сайтах (if response.content is not None ≠ if response.content).
if response.content is not None and response.encoding == 'ISO-8859-1':
try:
response.encoding = char_detect(response.content).get("encoding")
if response.encoding is None:
response.encoding = "utf-8"
except Exception:
response.encoding = "utf-8"
try:
session_size = len(response.content) #подсчет извлеченных данных
except UnicodeEncodeError:
session_size = None
return response, session_size
def sreports(url, headers, error_type, username, websites_names, r):
os.makedirs(f"{DIRPATH}/results/nicknames/save reports/{username}", exist_ok=True)
# Сохранять отчеты для метода: redirection.
if error_type == "redirection":
try:
response, session_size = new_session(url, headers, error_type,
username, websites_names, r, t=6)
except requests.exceptions.ConnectionError:
time.sleep(0.02)
try:
response, session_size = new_session(url, error_type, username,
websites_names, r, headers="", t=3)
except Exception:
session_size = 'Err' #подсчет извлеченных данных
except Exception:
session_size = 'Err'
# Сохранять отчеты для всех остальных методов: status; response; message со стандартными параметрами.
try:
with open(f"{DIRPATH}/results/nicknames/save reports/{username}/{websites_names}.html", 'w', encoding=r.encoding) as rep:
if 'response' in locals():
rep.write(response.text)
elif error_type == "redirection" and 'response' not in locals():
rep.write("❌ Snoop Project bad_save, timeout")
else:
rep.write(r.text)
except Exception:
console.log(snoopbanner.err_all(err_="low"), f"\nlog --> [{websites_names}:[bold red] {r.encoding} | response?[/bold red]]")
if error_type == "redirection":
return session_size
## Snoop функция.
def snoop(username, BDdemo_new, verbose=False, norm=False, reports=False, user=False, country=False,
speed=False, print_found_only=False, timeout=None, color=True, cert=False, header_custom=None):
## Печать инфострок.
еasteregg = ['Snoop', 'snoop', 'SNOOP',
'Snoop Project', 'snoop project', 'SNOOP PROJECT',
'Snoop_Project', 'snoop_project', 'SNOOP_PROJECT',
'Snoop-Project', 'snoop-project', 'SNOOP-PROJECT',
'Snooppr', 'snooppr', 'SNOOPPR']
nick = username.replace("%20", " ") #username 2-переменные (args/info)
info_str("разыскиваем:", nick, color)
if len(username) < 3:
print(Style.BRIGHT + Fore.RED + format_txt("⛔️ nickname не может быть короче 3-х символов",
k=True, m=True) + "\n пропуск\n")
return False, False, nick
elif username in еasteregg:
with console.status("[bold blue] 💡 Обнаружена пасхалка...", spinner='noise'):
try:
r_east = r_session(url="https://raw.githubusercontent.com/snooppr/snoop/master/changelog.txt", timeout=timeout)
r_repo = r_session(url='https://api.github.com/repos/snooppr/snoop', timeout=timeout).json()
r_latestvers = r_session(url='https://api.github.com/repos/snooppr/snoop/tags', timeout=timeout).json()
console.print(Panel(Markdown(r_east.text.replace("=" * 83, "")),
subtitle="[bold blue]журнал snoop-версий[/bold blue]", style=STL(color="cyan")))
console.print(Panel(f"[bold cyan]Дата создания проекта:[/bold cyan] 2020-02-14 " + \
f"({round((time.time() - 1581638400) / 86400)}_дней).\n" + \
f"[bold cyan]Последнее обновление репозитория:[/bold cyan] " + \
f"{'_'.join(r_repo.get('pushed_at')[0:-4].split('T'))} (UTC).\n" + \
f"[bold cyan]Сжатие репозитория:[/bold cyan] 2024-12-11.\n" + \
f"[bold cyan]Размер репозитория:[/bold cyan] {round(int(r_repo.get('size')) / 1024, 1)} MB.\n" + \
f"[bold cyan]Github-рейтинг:[/bold cyan] {r_repo.get('watchers')} звёзд.\n" + \
f"[bold cyan]Скрытые опции:[/bold cyan]\n'--headers/-H':: Задать user-agent вручную, агент " + \
f"заключается в кавычки, по умолчанию для каждого сайта задается " + \
f"случайный либо переопределенный user-agent из БД snoop.\n" + \
f"'--cert-on/-C':: Включить проверку сертификатов на серверах, " + \
f"по умолчанию проверка сертификатов на серверах " + \
f"отключена, что позволяет обрабатывать проблемные сайты без ошибок.\n"
f"[bold cyan]Последняя версия snoop:[/bold cyan] {r_latestvers[0].get('name')}.",
style=STL(color="cyan"), subtitle="[bold blue]ключевые показатели[/bold blue]", expand=False))
except Exception:
console.log(snoopbanner.err_all(err_="high"))
sys.exit()
username = re.sub(" ", "%20", username)
## Предотвращение 'DoS' из-за невалидных логинов; номеров телефонов, ошибок поиска из-за спецсимволов.
with open('domainlist.txt', 'r', encoding="utf-8") as err:
ermail = err.read().splitlines()
username_bad = username.rsplit(sep='@', maxsplit=1)
username_bad = '@bro'.join(username_bad).lower()
for ermail_iter in ermail:
if ermail_iter.lower() == username.lower():
print("\n" + Style.BRIGHT + Fore.RED + format_txt("⛔️ bad nickname: '{0}' (обнаружен чистый домен)"
.format(ermail_iter), k=True, m=True) + "\n пропуск\n")
return False, False, nick
elif ermail_iter.lower() in username.lower():
usernameR = username.rsplit(sep=ermail_iter.lower(), maxsplit=1)[1]
username = username.rsplit(sep='@', maxsplit=1)[0]
if len(username) == 0:
username = usernameR
print(f"\n{Fore.CYAN}Обнаружен E-mail адрес, извлекаем nickname: " + \
f"'{Style.BRIGHT}{Fore.CYAN}{username}{Style.RESET_ALL}" + \
f"{Fore.CYAN}'\nSnoop способен отличать e-mail от логина, например, поиск '{username_bad}'\n" + \
f"не является валидной электропочтой, но может существовать как nickname, следовательно — не будет обрезан\n")
if len(username) == 0 and len(usernameR) == 0:
print("\n" + Style.BRIGHT + Fore.RED + format_txt("⛔️ bad nickname: '{0}' (обнаружен чистый домен)"\
.format(ermail_iter), k=True, m=True) + "\n пропуск\n")
return False, False, nick
elif len(username) != 0 and len(username) < 3:
print(Style.BRIGHT + Fore.RED + format_txt("⛔️ nickname не может быть короче 3-х символов",
k=True, m=True) + "\n пропуск\n")
return False, False, nick
del ermail
err_nick = re.findall(dic_binding.get("symbol_bad"), username)
if err_nick:
print(Style.BRIGHT + Fore.RED + format_txt("⛔️ недопустимые символы в nickname: " + \
"{0}{1}{2}{3}{4}".format(Style.RESET_ALL, Fore.RED, err_nick,
Style.RESET_ALL, Style.BRIGHT + Fore.RED),
k=True, m=True) + "\n пропуск\n")
return False, False, nick
ernumber = ['76', '77', '78', '79', '89', "38", "37", "9", "+"]
if any(ernumber in username[0:2] for ernumber in ernumber):
if len(username) >= 10 and len(username) <= 13 and username[1:].isdigit() is True:
print(Style.BRIGHT + Fore.RED + format_txt("⛔️ snoop выслеживает учётки пользователей, " + \
"но не номера телефонов...", k=True, m=True) + "\n пропуск\n")
return False, False, nick
elif '.' in username and '@' not in username:
print(Style.BRIGHT + Fore.RED + format_txt("⛔️ nickname, содержащий [.] и не являющийся email, " + \
"невалидный...", k=True, m=True) + "\n пропуск\n")
return False, False, nick
## Создать многопоточный/процессный сеанс для всех запросов.
if ANDROID:
try:
proc_ = len(BDdemo_new) if len(BDdemo_new) < 17 else 17
executor_req = ProcessPoolExecutor(max_workers=proc_ if not speed else speed)
except Exception:
console.log(snoopbanner.err_all(err_="high"))
dic_binding.update({'android_lame_workhorse': True})
executor_req = ThreadPoolExecutor(max_workers=10 if not speed else speed)
elif WINDOWS:
cpu = 1 if psutil.cpu_count(logical=False) == None else psutil.cpu_count(logical=False)
if norm is False:
thread__ = len(BDdemo_new) if len(BDdemo_new) < (cpu * 5) else (18 if cpu < 4 else 30)
else:
thread__ = len(BDdemo_new) if len(BDdemo_new) < (os.cpu_count() * 5) else (20 if cpu < 4 else 40)
executor_req = ThreadPoolExecutor(max_workers=thread__ if not speed else speed)
elif LINUX:
if norm is False:
proc_ = len(BDdemo_new) if len(BDdemo_new) < 70 else (50 if len(os.sched_getaffinity(0)) < 4 else 140)
else:
proc_ = len(BDdemo_new) if len(BDdemo_new) < 70 else (60 if len(os.sched_getaffinity(0)) < 4 else 180)
executor_req = ProcessPoolExecutor(max_workers=proc_ if not speed else speed)
if norm is False:
executor_req_retry = ThreadPoolExecutor(max_workers=1)
if reports is True:
executor_req_save = ThreadPoolExecutor(max_workers=2)
## Анализ всех сайтов.
dic_snoop_full = {}
BDdemo_new_quick = {}
lst_invalid = []
## Создание futures на все запросы. Это позволит распараллелить запросы с прерываниями.
for websites_names, param_websites in BDdemo_new.items():
results_site = {}
results_site['flagcountry'] = param_websites.get("country")
results_site['flagcountryklas'] = param_websites.get("country_klas")
results_site['url_main'] = param_websites.get("urlMain")
# username = param_websites.get("usernameON")
# Пользовательский user-agent браузера (рандомно на каждый сайт), а при сбое — постоянный с расширенным заголовком.
majR = random.choice(range(101, 124, 1))
RandHead=([f'{{"User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) ' + \
f'Chrome/{majR}.0.0.0 Safari/537.36"}}',
f'{{"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) ' + \
f'AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{majR}.0.0.0 Safari/537.36"}}'])
headers = json.loads(random.choice(RandHead))
# Переопределить/добавить любые дополнительные заголовки необходимые для сайта из БД, или задать U-A из CLI.
if header_custom is not None:
headers.update({"User-Agent": ''.join(header_custom)})
elif "headers" in param_websites:
headers.update(param_websites["headers"])
# console.print(headers, websites_names) #проверка u-агентов
# Пропуск временно-отключенного сайта, не делать запрос если имя пользователя не подходит для сайта.
exclusionYES = param_websites.get("exclusion")
if exclusionYES and re.search(exclusionYES, username) or param_websites.get("bad_site") == 1:
if exclusionYES and re.search(exclusionYES, username) and not print_found_only and not norm:
lst_invalid.append(print_invalid(websites_names, f"#недопустимый ник '{nick}' для данного сайта", color))
results_site["exists"] = "invalid_nick"
results_site["url_user"] = '*' * 56
results_site['countryCSV'] = "****"
results_site['http_status'] = '*' * 10
results_site['session_size'] = ""
results_site['check_time_ms'] = '*' * 15
results_site['response_time_ms'] = '*' * 15
results_site['response_time_site_ms'] = '*' * 25
if param_websites.get("bad_site") == 1 and verbose and not print_found_only and not norm:
lst_invalid.append(print_invalid(websites_names, f"*ПРОПУСК. DYNAMIC GRAY_LIST", color))
if param_websites.get("bad_site") == 1:
dic_binding.get("badraw").append(websites_names)
results_site["exists"] = "gray_list"
else:
# URL пользователя на сайте (если он существует).
url = param_websites["url"].format(username)
results_site["url_user"] = url
url_API = param_websites.get("urlProbe")
# Использование api/nickname.
url_API = url if url_API is None else url_API.format(username)
# Повторы.
connect = 1 if param_websites.get("country_klas") == "UA" else 2
# Если нужен только статус кода, не загружать тело страницы, экономия памяти, и многие сайты с защитой предпочитают Head.
if param_websites["errorTypе"] != 'status_code' or reports:
method = "get"
else:
method = "head"
# Сайт перенаправляет запрос.
# Запретить перенаправление чтобы захватить статус кода из первоначального url.
if param_websites["errorTypе"] == "response_url" or param_websites["errorTypе"] == "redirection":
allow_redirects = False
# Разрешить любой редирект, который хочет сделать сайт и захватить тело и статус ответа.
else:
allow_redirects = True
# Дергаем объект сессии не по прямому назначению, спасаем CPU/Windows/Многопоточность на длинной дистанции.
req_retry = True if "full" in VERSION or len(BDdemo_new) > 399 else False
# Кроме того SSL замариновать при multiprocessing.
# Отправить параллельно все запросы и сохранить future для последующего доступа.
try:
future_ = executor_req.submit(r_session, cert=cert, speed=speed, norm=norm,
connect=connect, method=method, req_retry=req_retry,
url=url_API, headers=headers, allow_redirects=allow_redirects, timeout=timeout)
if norm: #quick режим
BDdemo_new_quick.update({future_:{websites_names:param_websites}})
else: #последовательный режим
param_websites["request_future"] = future_
except Exception:
continue
# Добавлять во вложенный словарь future со всеми другими результатами.
dic_snoop_full[websites_names] = results_site
# Вывести на печать invalid_data.
if bool(lst_invalid) is True:
print("".join(lst_invalid))
## Прогресс_описание.
if not verbose:
refresh = False
refresh_per_second = 4.0 if "demo" in VERSION else (2.0 if not WINDOWS else 1.0)
if not WINDOWS:
spin_emoj = 'arrow3' if norm else random.choice(["dots", "dots12"])
progress = Progress(TimeElapsedColumn(), SpinnerColumn(spinner_name=spin_emoj),
"[progress.percentage]{task.percentage:>1.0f}%", BarColumn(bar_width=None, complete_style='cyan',
finished_style='cyan bold'), refresh_per_second=refresh_per_second)
else:
progress = Progress(TimeElapsedColumn(), "[progress.percentage]{task.percentage:>1.0f}%", BarColumn(bar_width=None,
complete_style='cyan', finished_style='cyan bold'), refresh_per_second=refresh_per_second)
else:
refresh = True
progress = Progress(TimeElapsedColumn(), "[progress.percentage]{task.percentage:>1.0f}%", auto_refresh=False)
## Панель вербализации.
if not ANDROID:
if color:
console.print(Panel("[yellow]время[/yellow] | [magenta]выпол.[/magenta] | [bold cyan]отклик (t=s)[/bold cyan] " + \
"| [bold red]общ.[bold cyan]время (T=s)[/bold cyan][/bold red] | " + \
"[bold cyan]разм.данных[/bold cyan] | [bold cyan]дост.память[/bold cyan]",
title="Обозначение", style=STL(color="cyan")))
else:
console.print(Panel("отклик сайта (t=s) | общ.время (T=s) | разм.данных | дост.память", title="Обозначение"))
else:
if color:
console.print(Panel("[yellow]time[/yellow] | [magenta]perc.[/magenta] | [bold cyan]response (t=s)[/bold cyan] " + \
"| [bold red]total [bold cyan]time (T=s)[/bold cyan][/bold red] | [bold cyan]data [/bold cyan]" + \
"| [bold cyan]avail.ram[/bold cyan]",
title="Designation", style=STL(color="cyan")))
else:
console.print(Panel("time | perc. | response (t=s) | total time (T=s) | data | avail.ram", title="Designation"))
## Пройтись по массиву future и получить результаты.
li_time = [0]
with progress:
if color is True:
task0 = progress.add_task("", total=len(BDdemo_new_quick)) if norm else progress.add_task("", total=len(BDdemo_new))
iterator_future = iter(as_completed(BDdemo_new_quick)) if norm else iter(BDdemo_new.items())
for future in iterator_future:
if norm:
websites_names = [*BDdemo_new_quick.get(future).keys()][0]
param_websites = [*BDdemo_new_quick.get(future).values()][0]
else:
websites_names = future[0]
param_websites = future[1]
if color is True:
progress.update(task0, advance=1, refresh=refresh) #progress.refresh()
# Пропустить запрещенный никнейм или пропуск сайта из gray-list.
if dic_snoop_full.get(websites_names).get("exists") is not None:
continue
# Получить метаинформацию сайта, снова.
url = dic_snoop_full.get(websites_names).get("url_user")
country_emojis = dic_snoop_full.get(websites_names).get("flagcountry")
country_code = dic_snoop_full.get(websites_names).get("flagcountryklas")
country_Emoj_Code = country_emojis if not WINDOWS else country_code
# Получить ожидаемый тип данных 4-х методов.
error_type = param_websites["errorTypе"]
# Результат ответа от сервера.
request_future = future if norm else param_websites["request_future"]
r, error_type, response_time = r_results(request_future=request_future, norm=norm,
error_type=error_type, websites_names=websites_names,
print_found_only=print_found_only, verbose=verbose,
color=color, timeout=timeout, country_code=f" ~{country_code}")
# Повторный запрос на сбойное соединение результативнее, чем через Adapter.
if norm is False and r == "FakeNone":
head_duble = {'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Accept-Language': 'ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) ' + \
'AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'}
for num, _ in enumerate(range(3), 1):
dic_binding.update({'censors': dic_binding.get('censors') - 1})
if num > 2:
head_duble = ""
r_retry = executor_req_retry.submit(r_session, url=url, headers=head_duble,
allow_redirects=allow_redirects, timeout=4)
if color is True and print_found_only is False:
print(f"{Style.RESET_ALL}{Fore.CYAN}[{Style.BRIGHT}{Fore.RED}-{Style.RESET_ALL}{Fore.CYAN}]" \
f"{Style.DIM}{Fore.GREEN} ┌──└──повторное соединение{Style.RESET_ALL}")
else:
if print_found_only is False:
print(" ┌──└──повторное соединение")
r, error_type, response_time = r_results(request_future=r_retry, error_type=param_websites.get("errorTypе"),
websites_names=websites_names, print_found_only=print_found_only,
verbose=verbose, color=color, timeout=4,
country_code=f" ~{country_code}")
if r != "FakeNone":
break
del r_retry
# Сбор сбойной локации bad_zone.
if r == None or r == "FakeNone" or r == "FakeStuck":
dic_binding.get("badzone").append(country_code)
## Проверка, 4 методов; #1.
# Автодетектирование кодировки при устаревшей специфике либы requests/ISO-8859-1, или ее смена вручную через БД.
try:
if r is not None and r != "FakeNone" and r != "FakeStuck":
if r.content and r.encoding == 'ISO-8859-1': #ловушка (if r is not None ≠ if r)
r.encoding = char_detect(r.content).get("encoding")
if r.encoding is None: r.encoding = "utf-8"
elif r.content and r.encoding != 'ISO-8859-1' and r.encoding.lower() != 'utf-8':
if r.encoding == "cp-1251": r.encoding = "cp1251"
elif r.encoding == "cp-1252": r.encoding = "cp1252"
elif r.encoding == "windows1251": r.encoding = "windows-1251"
elif r.encoding == "windows1252": r.encoding = "windows-1252"
except Exception:
r.encoding = "utf-8"
# Ответы message (разные локации).
if error_type == "message":
try:
if param_websites.get("encoding") is not None:
r.encoding = param_websites.get("encoding")
except Exception:
console.log(snoopbanner.err_all(err_="high"))
error = param_websites.get("errorMsg")
error2 = param_websites.get("errоrMsg2")
error3 = param_websites.get("errorMsg3") if param_websites.get("errorMsg3") is not None else "FakeNoneNoneNone"
if param_websites.get("errorMsg2"):
sys.exit()
try:
if r.status_code > 200 and param_websites.get("ignore_status_code") is None \
or error in r.text or error2 in r.text or error3 in r.text:
if not print_found_only and not norm:
print_not_found(websites_names, verbose, color)
exists = "увы"
else:
if not norm:
print_found_country(websites_names, url, country_Emoj_Code, verbose, color)
exists = "найден!"
if reports:
executor_req_save.submit(sreports, url, headers, error_type, username, websites_names, r)
except UnicodeEncodeError:
exists = "увы"
## Проверка, 4 методов; #2.
# Проверка username при статусе 301 и 303 (перенаправление и соль).
elif error_type == "redirection":
if r.status_code == 301 or r.status_code == 303:
if not norm:
print_found_country(websites_names, url, country_Emoj_Code, verbose, color)
exists = "найден!"
if reports:
session_size = executor_req_save.submit(sreports, url, headers, error_type, username, websites_names, r)
else:
if not print_found_only and not norm:
print_not_found(websites_names, verbose, color)
session_size = len(str(r.content))
exists = "увы"
## Проверка, 4 методов; #3.
# Проверяет, является ли код состояния ответа 2..
elif error_type == "status_code":
if not r.status_code >= 300 or r.status_code < 200:
if not norm:
print_found_country(websites_names, url, country_Emoj_Code, verbose, color)
if reports:
executor_req_save.submit(sreports, url, headers, error_type, username, websites_names, r)
exists = "найден!"
else:
if not print_found_only and not norm:
print_not_found(websites_names, verbose, color)
exists = "увы"
## Проверка, 4 методов; #4.
# Перенаправление.
elif error_type == "response_url":
if 200 <= r.status_code < 300:
if not norm:
print_found_country(websites_names, url, country_Emoj_Code, verbose, color)
if reports:
executor_req_save.submit(sreports, url, headers, error_type, username, websites_names, r)
exists = "найден!"
else:
if not print_found_only and not norm:
print_not_found(websites_names, verbose, color)
exists = "увы"
## Если все 4 метода не сработали, например, из-за ошибки доступа (красный) или из-за неизвестной ошибки.
else:
exists = "блок"
## Попытка получить информацию из запроса, пишем в csv.
try:
http_status = r.status_code
except Exception:
http_status = "сбой" if r != "FakeStuck" else "завис"
try: #сессия в kB
if reports is True:
session_size = session_size if error_type == 'redirection' else len(str(r.content))
else:
session_size = len(str(r.content))
if session_size >= 555:
session_size = round(session_size / 1024)
elif session_size < 555:
session_size = round((session_size / 1024), 2)
except Exception:
session_size = "Err"
## Считать тайминги отклики сайтов с приемлемой точностью.
# Реакция.
ello_time = round(float(time.time() - TIME_START), 2) #текущее
li_time.append(ello_time)
dif_time = round(li_time[-1] - li_time[-2], 2) #разница
try:
os.execl(sys.executable, sys.executable, *sys.argv) if len(BDdemo_new) > int(403.9) else "dif_time"
except Exception:
pass
## Опция '-v'.
if verbose is True:
ram_free = mem_test()
ram_free_color = "[cyan]" if ram_free > 100 else "[red]"
R = "[red]" if dif_time > 2.7 and dif_time != ello_time else "[cyan]" #задержка в общем времени, цвет
R1 = "bold red" if dif_time > 2.7 and dif_time != ello_time else "bold blue"
if session_size == 0 or session_size is None:
Ssession_size = "Head"
elif session_size == "Err":
Ssession_size = "Нет"
else:
Ssession_size = str(session_size) + " Kb"
if color is True:
console.print(f"[cyan] [*{response_time} s] {R}[*{ello_time} s] [cyan][*{Ssession_size}]",
f"{ram_free_color}[*{ram_free} MB]")
console.rule("", style=R1)
else:
console.print(f" [*{response_time} s T] >>", f"[*{ello_time} s t]", f"[*{Ssession_size}]",
f"[*{ram_free} MB]", highlight=False)
console.rule(style="color")
## Служебная информация/CSV, обновление словаря с финальными результатами.
if dif_time > 2.7 and dif_time != ello_time:
dic_snoop_full.get(websites_names)['response_time_site_ms'] = str(dif_time)
else:
dic_snoop_full.get(websites_names)['response_time_site_ms'] = "нет"
dic_snoop_full.get(websites_names)['exists'] = exists
dic_snoop_full.get(websites_names)['session_size'] = session_size
dic_snoop_full.get(websites_names)['countryCSV'] = country_code
dic_snoop_full.get(websites_names)['http_status'] = http_status
dic_snoop_full.get(websites_names)['check_time_ms'] = response_time
dic_snoop_full.get(websites_names)['response_time_ms'] = str(ello_time)
# Добавление результатов этого сайта в окончательный словарь со всеми другими результатами.
dic_snoop_full[websites_names] = dic_snoop_full.get(websites_names)
# не удерживать ресурсы соединения с сервером; предотвратить утечку памяти: del future.
if r != "FakeStuck":
if norm:
BDdemo_new_quick.pop(future, None)
else:
param_websites.pop("request_future", None)
# Высвободить незначительную часть ресурсов.
try:
if 'executor_req_retry' in locals(): executor_req_retry.shutdown()
if 'executor_req_save' in locals(): executor_req_save.shutdown()
except Exception:
console.log(snoopbanner.err_all(err_="low"))
# Вернуть словарь со всеми данными на запрос функции snoop и пробросить удерживаемые ресурсы (позже, закрыть в фоне).
return dic_snoop_full, executor_req, nick
## Опция '-t'.
def set_timeout(value):
try:
timeout = int(value)
except Exception:
raise argparse.ArgumentTypeError(f"\n\033[31;1mTimeout '{value}' Err,\033[0m \033[36m" + \
f"укажите время целым числом в секундах.\n \033[0m")
if timeout <= 0:
raise argparse.ArgumentTypeError(f"\n\033[31;1mTimeout '{value}' Err,\033[0m \033[36m" + \
f"укажите время > 0 sec.\n \033[0m")
return timeout
## Опция '-p'.
def speed_snoop(speed):
try:
speed = int(speed)
if WINDOWS and (speed <= 0 or speed > 60):
raise Exception("")
elif speed <= 0 or speed > 300:
raise Exception("")
return speed
except Exception:
if not WINDOWS:
raise argparse.ArgumentTypeError(f"\n\033[31;1mMax. workers proc = '{speed}' Err,\033[0m" + \
" \033[36m рабочий диапазон от '1' до '300' целым числом.\n \033[0m")
else:
snoopbanner.logo(text=format_txt(f" ! Задана слишком высокая многопоточноть: '{speed} поток' не имеет смысла, " + \
f"уменьшите значение '--pool/-p <= 60'. Обратите внимание, что, например, " + \
f"в OS GNU/Linux используется иная технология, которую имеет смысл разгонять.",
k=True, m=True) + "\n\n", exit=False)
sys.exit()
## Обновление исходного кода Snoop Project.
def update_snoop():
print("""
\033[36mВы действительно хотите:
__ _
._ _| _._|_ _ (_ ._ _ _ ._ )
|_||_)(_|(_| |_(/_ __)| |(_)(_)|_) o
| | \033[0m""")
while True:
print("\033[36mВыберите действие:\033[0m [y/n] ", end='')
upd = input().lower()
if upd == "y":
print("\033[36mПримечание: функция обновления Snoop работает при помощи утилиты < Git >\033[0m")
os.startfile("update.bat") if WINDOWS else os.system("./update.sh")
break
elif upd == "n":
print(Style.BRIGHT + Fore.RED + "\nОбновление отклонено\nВыход")
break
else:
print(Style.BRIGHT + Fore.RED + format_txt("{0}└──False, [Y/N] ?", k=True, m=True).format(' ' * 25))
sys.exit()
## Удаление отчетов.
def autoclean():
print("""
\033[36mВы действительно хотите:\033[0m \033[31;1m
_ _
_| _ | _.|| |_) _ ._ _ .-_|_ )
(_|(/_| (_||| | \\(/_|_)(_)| |_ o
| \033[0m""")
while True:
print("\033[36mВыберите действие:\033[0m [y/n] ", end='')
del_all = input().lower()
if del_all == "y":
try:
# Определение директорий.
path_build_del = "/results" if not WINDOWS else "\\results"
if 'source' in VERSION and not ANDROID:
rm = DIRPATH + path_build_del
reports = rm
else:
rm = DIRPATH
reports = rm + path_build_del
# Подсчет файлов и размера удаляемого каталога 'results'.
total_size = 0
delfiles = []
for total_file in glob.iglob(reports + '/**/*', recursive=True):
total_size += os.path.getsize(total_file)
if os.path.isfile(total_file): delfiles.append(total_file)
# Сброс кэша и удаление каталога 'results'.
shutil.rmtree(rm, ignore_errors=True)
print(f"\n\033[31;1mdeleted --> '{rm}'\033[0m\033[36m {len(delfiles)} files, " + \
f"{round(total_size/1024/1024, 2)} MB\033[0m")
except Exception: