-
-
Notifications
You must be signed in to change notification settings - Fork 340
/
snoop.py
executable file
·2012 lines (1715 loc) · 115 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, Style, init
from concurrent.futures import ProcessPoolExecutor, ThreadPoolExecutor, as_completed, TimeoutError
from multiprocessing import active_children
from rich.markdown import Markdown
from rich.progress import BarColumn, SpinnerColumn, TimeElapsedColumn, Progress
from rich.panel import Panel
from rich.style import Style as STL
from rich.console import Console
from rich.table import Table
import snoopbanner
import snoopplugins
import snoopnetworktest
if int(platform.python_version_tuple()[1]) >= 8:
from importlib.metadata import version as version_lib
python3_8 = True
else:
python3_8 = False
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
try:
if os.environ.get('LANG') is not None and 'ru' in os.environ.get('LANG'):
rus_unix = True
else:
rus_unix = False
if Windows and "1251" in locale.setlocale(locale.LC_ALL):
rus_windows = True
else:
rus_windows = False
except Exception:
rus_unix = False
rus_windows = False
locale.setlocale(locale.LC_ALL, '')
init(autoreset=True)
console = Console()
vers, vers_code, demo_full = 'v1.4.1e', "s", "d"
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 source {__sb}"
elif Linux: OS_ = f"ru Snoop for GNU/Linux {_sb} {__sb}"
version = f"{vers}_{OS_}"
print(Fore.CYAN + "#Примеры:" + Style.RESET_ALL)
if Windows:
print(Fore.CYAN + " cd C:\\<path>\\snoop")
print(Fore.CYAN + " python snoop.py --help" + Style.RESET_ALL, "#справка")
print(Fore.CYAN + " python snoop.py nickname" + Style.RESET_ALL, "#поиск user-a")
print(Fore.CYAN + " python snoop.py --module" + Style.RESET_ALL, "#задействовать плагины")
else:
print(Fore.CYAN + " cd ~/snoop")
print(Fore.CYAN + " python3 snoop.py --help" + Style.RESET_ALL, "#справка")
print(Fore.CYAN + " python3 snoop.py nickname" + Style.RESET_ALL, "#поиск user-a")
print(Fore.CYAN + " python3 snoop.py --module" + Style.RESET_ALL, "#задействовать плагины")
console.rule(characters="=", style="cyan")
print("")
## Date, согласно международному стандарту ISO 8601.
e_mail = 'demo: [email protected]'
# лицензия: год-месяц-день.
license = 'лицензия'
ts = (2025, 9, 10, 3, 0, 0, 0, 0, 0)
date_up = int(time.mktime(ts)) #дата в секундах с начала эпохи
Do = time.strftime('%Y-%m-%d', time.gmtime(date_up))
# Чек.
if time.time() > date_up:
snoopbanner.logo(text=f"ПО {version} деактивировано согласно лицензии.")
sys.exit()
BDdemo = snoopbanner.DB('BDdemo')
BDflag = snoopbanner.DB('BDflag')
flagBS = len(BDdemo)
timestart = time.time()
time_date = time.localtime()
censors, censors_timeout, recensor = 0, 0, 0
lame_workhorse = False
dic_binding = {"badraw": [], "badzone": [], "options_speed": [], "symbol_bad": re.compile("[^a-zA-Zа-яА-Я\_\s\d\%\@\-\.\+]")}
## Создание директорий результатов.
if Windows:
dirhome = os.environ['LOCALAPPDATA'] + "\\snoop"
elif Android:
try:
dirhome = "/data/data/com.termux/files/home/storage/shared/snoop"
except Exception:
dirhome = os.environ['HOME'] + "/snoop"
elif Linux:
dirhome = os.environ['HOME'] + "/snoop"
dirresults = os.getcwd()
dirpath = dirresults 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)
## Создание 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"{dirresults}/web", "/data/data/com.termux/files/home/storage/shared/snoop/web")
except Exception as e:
print(f"ERR: {e}")
web_path_copy()
## Расход памяти.
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.
def bad_raw(flagBS_err, time_date, bad_zone, 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")
else:
if 4 >= flagBS_err >= 2.5:
print(f"{Fore.CYAN}└────\033[33;1mВнимание! Bad_raw: {flagBS_err}% БД, bad_zone {bad_zone}\033[0m")
elif 9 >= flagBS_err > 4:
print(f"{Fore.CYAN}└────\033[31;1mВнимание!! Bad_raw: {flagBS_err}% БД, bad_zone {bad_zone}\033[0m")
elif flagBS_err > 9:
print(f"{Fore.CYAN}└────\033[30m\033[41mВнимание!!! Bad_raw: {flagBS_err}% БД, критический уровень, " + \
f"bad_zone {bad_zone}\033[0m")
print(Fore.CYAN + " └─нестабильное соединение или I_Censorship")
print(" \033[36m├─используйте \033[36;1mVPN\033[0m\033[36m/'\033[0m\033[36;1m--web-base\033[0m\033[36m'\033[0m \033[36m\n" + \
" └─или увеличьте значение опции '\033[36;1m-t\033[0m\033[36m'\033[0m\n")
## Форматирование, отступы.
def format_txt(text, k=False, m=False):
if Windows:
gal, ident_h = "[+] ", " " * 4
else:
gal, ident_h = " ✔ ", " " * 3
ident_e = "" if k else ident_h
gal = gal if k and not m else ""
try:
return textwrap.fill(f"{gal}{text}", width=os.get_terminal_size()[0], subsequent_indent=ident_h, initial_indent=ident_e)
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):
"""Вывести запрещенный nickname/gray list."""
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"
##Сеть.
warning_urllib3_v2 = True
def req_session(cert, speed=False):
"""
Объект сессии нужен для расширения пула сетевых соединений, существенный минус (многопоточноть/OS Windows):
с течением времени происходит утечка процессорного времени. Обходное решение: создавать временную сессию
на каждое соединение без кэширования, прирост производительности (Windows) ~25-30%.
"""
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.
# adapter = requests.adapters.HTTPAdapter(pool_connections=1, pool_maxsize=0, max_retries=0, pool_block=True)
adapter = requests.adapters.HTTPAdapter()
try:
requests.packages.urllib3.util.ssl_.DEFAULT_CIPHERS += ':HIGH:!DH:!aNULL' #urllib3 <= v1.26.18, в urllib3 v2 перенастраивать процессы
adapter.init_poolmanager(connections=connections, maxsize=20, block=False)
except Exception:
global warning_urllib3_v2
if warning_urllib3_v2 is True:
console.log("[yellow]Внимание! \n\nВ urllib3 >= v2 разработчики отказались от поддержки старых шифров. " + \
"Некоторые, немногочисленные, устаревшие сайты из БД, работающие по старой технологии, будут возвращать " + \
"ошибки соединения, которых можно было бы избежать.[/yellow]\n\n" + \
"[bold green]Рекомендация: \n$ python -m pip install urllib3==1.26.18[/bold green]", highlight=False)
console.rule(characters="=", style="cyan")
warning_urllib3_v2 = False
adapter.init_poolmanager(connections=connections, maxsize=20, block=False, ssl_minimum_version=ssl.TLSVersion.TLSv1)
requests.packages.urllib3.disable_warnings()
requests_future = requests.Session()
requests_future.max_redirects = 9
requests_future.verify = False if cert is False else True
requests_future.mount('http://', adapter)
requests_future.mount('https://', adapter)
return requests_future, requests
# Вернуть результат future for2.
# Логика: возврат ответа и дуб_метода (из 4-х) в случае успеха/повтора.
def request_res(request_future, error_type, websites_names, timeout=None, norm=False,
print_found_only=False, verbose=False, color=True, country_code=''):
global censors_timeout, censors
try:
res = request_future.result(timeout=timeout + 20)
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:
censors += 1
if norm is False and ('aborted' in str(err2) or 'None: None' in str(err2) or "SSLZeroReturnError" in str(err2)
or "None: Max retries" in str(err2) or "None" == str(err2)):
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 | SSL ", country_code, err2, verbose, color)
except (requests.exceptions.Timeout, TimeoutError) as err3:
censors_timeout += 1
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:
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)
return None, "Great Snoop returns None", "-"
## Сохранение отчетов опция (-S).
def new_session(url, headers, requests_future, error_type, username, websites_names, r, t):
"""
Если nickname найден, но актуальная html-страница находится дальше по редиректу,
поднимаем новое соединение и двигаемся по редиректу чтобы ее захватить и сохранить.
"""
response = requests_future.get(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, requests_future, 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, requests_future, error_type,
username, websites_names, r, t=6)
except requests.exceptions.ConnectionError:
time.sleep(0.1)
try:
response, session_size = new_session(url, requests_future, 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
## Основная функция.
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, headerS=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']
info_str("разыскиваем:", username.replace("%20", " "), color)
if len(username) < 3:
print(Style.BRIGHT + Fore.RED + format_txt("⛔️ nickname не может быть короче 3-х символов",
k=True, m=True) + "\n пропуск\n")
return False, False
elif username in еasteregg:
with console.status("[bold blue] 💡 Обнаружена пасхалка...", spinner='noise'):
try:
requests_sesion, requests = req_session(cert)
r_east = requests_sesion.get("https://raw.githubusercontent.com/snooppr/snoop/master/changelog.txt", timeout=timeout)
r_repo = requests_sesion.get('https://api.github.com/repos/snooppr/snoop', timeout=timeout).json()
r_latestvers = requests_sesion.get('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] {round(int(r_repo.get('size')) / 1024, 1)} Мб.\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
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: '{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
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
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
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
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
global nick
nick = username.replace("%20", " ") #username 2-переменные (args/info)
## Создать многопоточный/процессный сеанс для всех запросов.
if Android:
try:
proc_ = len(BDdemo_new) if len(BDdemo_new) < 17 else 17
executor1 = ProcessPoolExecutor(max_workers=proc_ if not speed else speed)
# raise Exception("")
except Exception:
console.log(snoopbanner.err_all(err_="high"))
global lame_workhorse
lame_workhorse = True
executor1 = 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)
executor1 = 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)
executor1 = ProcessPoolExecutor(max_workers=proc_ if not speed else speed)
if norm is False:
executor2 = ThreadPoolExecutor(max_workers=1)
## Результаты анализа всех сайтов.
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, 118, 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))
# Переопределить/добавить любые дополнительные заголовки, необходимые для данного сайта из БД или cli.
if "headers" in param_websites:
headers.update(param_websites["headers"])
if headerS is not None:
headers.update({"User-Agent": ''.join(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)
# Дергаем объект сессии не по прямому назначению, спасаем CPU/Windows/Многопоточность на длинной дистанции.
requests_future, requests = req_session(cert, speed=speed)
# Если нужен только статус кода, не загружать тело страницы, экономим память для status/redirect методов.
if reports or param_websites["errorTypе"] == 'message' or param_websites["errorTypе"] == 'response_url':
request_method = requests_future.get
else:
request_method = requests_future.head
# Сайт перенаправляет запрос на другой URL.
# Имя найдено. Запретить перенаправление чтобы захватить статус кода из первоначального url.
if param_websites["errorTypе"] == "response_url" or param_websites["errorTypе"] == "redirection":
allow_redirects = False
# Разрешить любой редирект, который хочет сделать сайт и захватить тело и статус ответа.
else:
allow_redirects = True
# Отправить параллельно все запросы и сохранить future для последующего доступа.
try:
future_ = executor1.submit(request_method, 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) #transient=True) #исчезает прогресс
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е"]
# Получить результаты future и создать новые сессии для save pages/повторных запросов.
if not norm:
req_future, requests = req_session(cert, speed=speed)
# Результат ответа от сервера.
request_future = future if norm else param_websites["request_future"]
r, error_type, response_time = request_res(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}")
# Повторный запрос на сбойное соединение.
if norm is False and r == "FakeNone":
global recensor
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 _ in range(3):
recensor += 1
future_rec = executor2.submit(req_future.get, 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 = request_res(request_future=future_rec, error_type=param_websites.get("errorTypе"),
websites_names=websites_names, print_found_only=print_found_only,
verbose=verbose, color=color, timeout=4.5, country_code=f" ~{country_code}")
if r != "FakeNone":
break
del future_rec
# Сбор сбойной локации 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 != '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:
sreports(url, headers, req_future, 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 = sreports(url, headers, req_future, 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:
sreports(url, headers, req_future, 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:
sreports(url, headers, req_future, 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: #сессия в КБ
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() - timestart), 2) #текущее
li_time.append(ello_time)
dif_time = round(li_time[-1] - li_time[-2], 2) #разница
## Опция '-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} Мб]")
console.rule("", style=R1)
else:
console.print(f" [*{response_time} s T] >>", f"[*{ello_time} s t]", f"[*{Ssession_size}]",
f"[*{ram_free} Мб]", highlight=False)
console.rule(style="color")
## Служебная информация/CSV (2-й словарь 'объединение словарей', чтобы не вызывать ошибку длины 1-го при итерациях).
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 norm:
BDdemo_new_quick.pop(future, None)
else:
param_websites.pop("request_future", None)
# Высвободить незначительную часть ресурсов.
try:
if 'executor2' in locals(): executor2.shutdown()
except Exception:
console.log(snoopbanner.err_all(err_="low"))
# Вернуть словарь со всеми данными на запрос функции snoop и пробросить удерживаемые ресурсы (позже, закрыть в фоне).
return dic_snoop_full, executor1
## Опция '-t'.
def timeout_check(value):
try:
global glob_timeout
glob_timeout = int(value)
except Exception:
raise argparse.ArgumentTypeError(f"\n\033[31;1mTimeout '{value}' Err,\033[0m \033[36mукажите время в 'секундах'.\n \033[0m")
if glob_timeout <= 0:
raise argparse.ArgumentTypeError(f"\033[31;1mTimeout '{value}' Err,\033[0m \033[36mукажите время > 0sec.\n \033[0m")
return glob_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.
def update_snoop():
print("""
\033[36mВы действительно хотите:
__ _
._ _| _._|_ _ (_ ._ _ _ ._ )
|_||_)(_|(_| |_(/_ __)| |(_)(_)|_) o
| | \033[0m""")
while True:
print("\033[36mВыберите действие:\033[0m [y/n] ", end='')
upd = input()
if upd == "y" or upd == "Y":
print("\033[36mПримечание: функция обновления Snoop работает при помощи утилиты < Git >\033[0m")
os.startfile("update.bat") if Windows else os.system("./update.sh")
break
elif upd == "n" or 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()
if del_all == "y" or 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, {round(total_size/1024/1024, 2)} Mb\033[0m")
except Exception:
console.log("[red]Ошибка")
break
elif del_all == "n" or del_all == "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 license_snoop():
with open('COPYRIGHT', 'r', encoding="utf8") as copyright:
wl = 4
if Windows:
wl = 5 if int(platform.win32_ver()[0]) < 10 else 4
cop = copyright.read().replace("\ufeffSnoop", "Snoop", 1)
cop = cop.replace('=' * 80, "~" * (os.get_terminal_size()[0] - wl)).strip()