-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathWizard.txt
3823 lines (3822 loc) · 38.8 KB
/
Wizard.txt
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
0
0.json
0.mp3
0.txt
00.txt
000.txt
0000.txt
00000.txt
0000000.txt
1
1.json
1.mp3
1.txt
1.zip
10
10.txt
10.zip
100.txt
100.zip
1000.txt
10000.txt
100000.txt
1000000.txt
10000000.txt
100000000.txt
111.txt
1111.txt
11111.txt
111111.txt
1111111.txt
1pass.txt
2
2.txt
2.zip
20.txt
2000.txt
20000.txt
200000.txt
200000000.txt
2012.json
2021
2021.txt
2022
2022.txt
2023
2023.json
2023.txt
2023emails.txt
2023final.txt
2023list.txt
2023passwords.txt
2023users.txt
2024
2024.json
2024.txt
2025.gzip
2025.json
2025.log
2025.logs
2025.rar
2025.txt
2025.zip
2025clean.txt
2025data.txt
2025list.txt
2025logs.txt
2025s.txt
2025test.txt
22.txt
222.txt
2222.txt
2fa.7z
2fa.gzip
2fa.html
2fa.json
2fa.php
2fa.rar
2FA.txt
2fa.txt
2fa.zip
2fas.txt
3
3.txt
3.zip
30.txt
3000.txt
33.txt
333.txt
33333.txt
3389.txt
4
4.txt
4.zip
40.txt
4000.txt
420.txt
444.txt
4444.txt
44444.txt
5
5.txt
5.zip
50.txt
500.txt
5000.txt
555.txt
5555.txt
6
6.txt
6.zip
60.txt
6000.txt
66.txt
666.txt
6666.txt
69.txt
6969.txt
7
7.txt
7.zip
70.txt
7000.txt
777.txt
8
8.txt
8.zip
80.txt
8000.txt
888.txt
9
9.txt
9.zip
90.txt
900.txt
99.txt
999.txt
9999.txt
99999.txt
a
a.html
a.json
a.log
a.mp3
a.php
a.txt
a.zip
aa.txt
aaa.txt
aaaa.txt
aaaaa.txt
abc.txt
abuse.txt
abuse.zip
abuses.txt
Acceso
acceso
acceso.dat
acceso.log
acceso.txt
access.log
access/access.txt
access_fiercephish.log
access_logs
access_logs.txt
account.html
account.txt
account_number.txt
account_numbers.txt
accountnumber.txt
accountnumbers.txt
accounts.html
accounts.txt
accountz.txt
accts.txt
acctz.txt
ad.html
ADA.txt
ada.txt
addies.txt
address.html
address.json
address.zip
addresses.json
addy.txt
ADMIN
Admin
admin
admin.gzip
admin.html
admin.json
Admin.php
admin.php
Admin.txt
admin.txt
admin.zip
admin/admin.txt
admin/crypto.txt
admin/cryptos.txt
admin/help.txt
admin/index
admin/index.htm
admin/index.html
admin/kitpanel
admin/kitpanel.html
admin/log.txt
admin/logged.txt
admin/logs.txt
admin/lol.txt
admin/ok.txt
admin/panel.html
admin/phish.txt
admin/saved.txt
admin/sign_in
admin/submit.txt
admin/submits.txt
admin/success.txt
admin/test.txt
admin/wallet.dat
admin/wallet.txt
admin/wallets.dat
admin/wallets.txt
admin/wat.txt
admin_panel
adminadmin
adminbot
adminbots
admincall
admincaller
adminemail
ADMINI
admini.json
admini.php
administrat.php
administrat.txt
administrator
administrator.gzip
administrator.json
administrator.php
administrator.rar
administrator.txt
administrator.zip
administrators
administrators.php
administrators.txt
ADMINKIT
adminkit
adminlogin
adminpanel
Admins
admins
ADMINS
admins.gzip
admins.html
admins.php
admins.txt
admins.zip
admins/list
adminstrators
adminz.php
adobe.txt
ads
ads.7z
ads.gzip
ads.html
ads.rar
ads.txt
ads.zip
aff
aff.html
aff.json
aff.txt
affil.txt
affiliate
affiliate.html
affiliate.php
affiliate.txt
affiliates.7z
affiliates.gzip
affiliates.json
affiliates.php
affiliates.rar
affiliates.txt
affs.html
affs.txt
agent
Agent
agent.txt
agents
Agents
agents.txt
agents.zip
ahorrar.txt
Airdrop.txt
airdrop.txt
all
all.log
all.txt
all.zip
alls.txt
Alpha
alpha
alpha.gzip
alpha.rar
alpha.txt
Alpha.txt
alpha.zip
ALPHA.zip
Alpha.zip
amazon.7z
amazon.gzip
amazon.php
Amazon.txt
amazon.txt
Amazon.zip
amazon.zip
amazons.txt
American.txt
american.txt
Americans.txt
americans.txt
AMEX.txt
amex.txt
Android
Android.txt
android.txt
androids.txt
anon
anonymous
AOL.txt
aol.txt
aols.txt
aolz.txt
api
api-key.txt
api.html
API.html
api.json
API.txt
api.txt
API.zip
api.zip
api_key.txt
api_keys.txt
apikey.txt
apikeys.txt
apis
apis.json
APIS.txt
apis.txt
apis.zip
apiz
apiz.txt
apple
Apple
APPLE
apple.txt
apple.zip
apples.txt
approach.txt
Apps.txt
April.txt
arb.txt
asdf
asdf.txt
asdfasdf
asdfasdf.txt
asdff
ATT.txt
att.txt
au.txt
audio.mp3
audio.txt
August.txt
aus.txt
auth
auth.7z
auth.gzip
auth.json
auth.php
auth.rar
auth.txt
auth.zip
authorize
auths
auths.txt
AutoFill.txt
Autofill.txt
autofill.txt
avax.txt
AVAX.txt
azure.txt
b.mp3
b.php
b.txt
b.zip
bab.zip
back
back.html
back.jpg
back.php
back.png
back.txt
back.zip
Back.zip
backd.zip
backdoor
backedup
backs.zip
backup
backup.7z
backup.config
backup.dat
backup.html
backup.jpg
backup.log
backup.png
backup.rar
backup.txt
backup.zip
Backup.zip
backup2.txt
backup3
backup3.zip
backupdb
backups
backups.7z
backups.dat
backups.jpg
backups.log
backups.png
backups.txt
backups.zip
Backups.zip
backupz.txt
backz
Bad.txt
bad.txt
bad.zip
bad_ips.txt
badips.txt
ban
ban.txt
Ban.txt
ban.zip
ban_ips.txt
BANCO
Banco
banco
Banco.txt
banco.txt
banips.txt
bank.dat
bank.log
bank.mp3
Bank.txt
bank.txt
bank1.txt
bank_log
bank_logs
bank_logs.txt
banklog
banklogs
banklogs.dat
banklogs.log
banklogs.txt
banko
banko.txt
bankofamerica.txt
banks.dat
banks.log
banks.txt
banned
Banned
banned.dat
banned.json
banned.log
Banned.txt
banned.txt
banned.zip
BannedIPs.txt
bannedips.txt
banner.txt
banner.zip
banners.zip
banning.dat
banning.log
banning.txt
bans
bans.log
bans.txt
Bans.txt
bans.zip
base.txt
bb.txt
bbb.txt
bch
bch.txt
bch.zip
beta
Beta
BETA
beta.gzip
beta.json
beta.php
beta.txt
beta.zip
Beta.zip
BETA.zip
betas.txt
Betas.txt
betas.zip
betterment.txt
bg.mp3
Binance
binance.html
binance.json
binance.mp3
binance.rar
binance.txt
Binance.txt
binance.zip
bins
BINS
Bins
bins.7z
bins.rar
Bins.rar
bins.txt
Bins.txt
bins.zip
Bins.zip
binz
binz.txt
bisq.txt
Bitcoin
bitcoin.dat
bitcoin.gzip
bitcoin.html
bitcoin.log
bitcoin.php
Bitcoin.txt
bitcoin.txt
bitcoincash
bitcoincash.txt
bitcoinpanel
bitcoins
bitcoins.txt
bitmart.txt
bittrex.txt
bitwarden.com
black.gzip
black.json
black.php
black.txt
blacklist
blacklist.7z
blacklist.dat
blacklist.gzip
blacklist.json
blacklist.log
blacklist.php
blacklist.rar
blacklist.txt
Blacklist.txt
blacklist.zip
blacklist_ips.txt
blacklisted.dat
blacklisted.log
blacklisted.txt
blacklistips.txt
blacklists
blacklists.txt
Blacklists.txt
block
block.php
block.txt
Blockchain
blockchain
blockchain.json
blockchain.php
Blockchain.txt
blockchain.txt
blockchain.zip
blockchains
blockchains.json
blocked
blocked.gzip
blocked.json
blocked.php
blocked.rar
blocked.txt
blocked.zip
blocklist.7z
blocklist.gzip
blocklist.json
blocklist.php
blocklist.rar
Blocklist.txt
blocklist.txt
blocklist.zip
blocklists.gzip
blocklists.php
blocklists.txt
Blocklists.txt
blocks.php
blocks.txt
bnb.txt
bnet.php
boa.txt
BOA.txt
boa.zip
BOA.zip
Bookmarks.txt
bookmarks.txt
bot
BOT
bot.config
bot.db
bot.gzip
bot.html
bot.json
bot.php
bot.txt
BOT.txt
botadmin
botnet
botnet.json
botnet.txt
botnetpanel
botnetproxies.txt
botnetproxy.txt
botnets
botnets.txt
botnets.zip
botpanel
BOTPANEL
botpanel.html
botpanel.json
botpanel.rar
botpanel.txt
botpanel.zip
botpanels
botpanels.rar
bots
BOTS
Bots
bots.7z
bots.db
bots.gzip
bots.html
bots.json
bots.php
bots.rar
bots.txt
BOTS.txt
bots.zip
botsadmin
botspanel
botss.json
botss.txt
botted
Botted
botted.7z
botted.db
botted.gzip
botted.json
botted.php
botted.rar
botted.txt
botted.zip
botting.txt
botz
botz.json
botz.php
botz.txt
botz.zip
bought.txt
Bounty
bounty
Bounty.txt
bounty.txt
bower.json
box.php
box.txt
brasil.txt
brazil.txt
breach.txt
breached.txt
brute.txt
brutes.txt
bsky.txt
btc
btc.txt
BTC.txt
bugs.txt
buy.txt
buying.txt
buys.txt
c.mp3
c.php
c.txt
c.zip
cad.txt
call.json
call.mp3
call.php
call.zip
call0.mp3
call1.mp3
call10.mp3
call2.mp3
call3.mp3
call4.mp3
call5.mp3
call6.mp3
call7.mp3
call8.mp3
call9.mp3
calladmin
called.json
called.mp3
called.txt
called.zip
called1.mp3
Caller
caller.html
caller.json
caller.mp3
caller.php
caller.txt
Caller.txt
caller.zip
caller1.mp3
caller2.mp3
callerpanel
callers
callers.html
callers.json
callers.mp3
callers.txt
callers.zip
calling.html
calling.json
calling.php
calling.txt
Calling.txt
CALLOUT
callout.txt
callpanel
calls.mp3
calls.php
calls.txt
calls.zip
calls/calls.txt
callz.php
cam
cam.txt
cam.zip
Camera
camera
camera.txt
camera.zip
cameraz.zip
camgirl.gzip
camgirl.txt
camgirls.gzip
camgirls.txt
camming
Camming
CAMS
Cams
cams.php
camz
Camz
CAMZ
can.txt
canada.txt
Capture.txt
capture.txt
Captures.txt
captures.txt
Cardano
cardano.gzip
Cardano.txt
cardano.txt
carded.txt
carder
carder.txt
carders
carders.txt
carding.txt
cards.txt
cards1.txt
cash.txt
CASH.txt
cashapp.txt
cashout.txt
cat.dat
cat.txt
Cat.txt
cat.zip
cats.txt
cc
CC
cc.html
cc.json
CC.txt
cc.txt
cc.zip
cc_submit.txt
cc_submits.txt
ccc.txt
ccs
CCS
ccs.html
ccs.json
CCs.txt
ccs.txt
CCS.txt
ccs.zip
ccs1.txt
ccz
CCz.txt
ccz.txt
cell.txt
chan.txt
change.txt
changed.txt
changes.txt
channel.txt
channels.txt
charles
chase.txt
Chat
chat.config
chat.json
chat.log
chat.mp3
chat.mp4
chat.php
chat.txt
chat.zip
chatbot.log
chatbot.txt
chatbot.zip
chatbots.txt
chatbotz.txt
chatgpt.txt
chatlogs.txt
Chats
chats.7z
chats.gzip
chats.json
chats.php
chats.rar
chats.txt
Chats.txt
chats.zip
chatter.php
chatters.php
chatting.txt
Chatting.txt
check.html
check.mp3
check.txt
check.zip
checked.json
checked.txt
Checked.txt
checker.html
checker.php
checker.txt
Checker.txt
checkfirst.txt
checking.txt
chek.txt
Chek.txt
china.txt
chinese.txt
chk
CHK
chk.txt
chked.txt
chks.txt
citigroup.txt
claim.txt
Claim.txt
claimed.txt
Claimed.txt
claude.txt
Clean
Clean.txt
clean1.txt
clean_ips.txt
clean_proxies.txt
Cleaned
cleaned
cleaned.exe
cleaned.json
Cleaned.txt
cleaned.txt
cleaned.zip
cleaned1.txt
cleaned_email_list.txt
cleaned_emails.txt
cleaned_phish.txt
cleaner.exe
cleaner.txt
cleaner.zip
Cleaning.txt
cleanned.zip
cleans.txt
cleans.zip
cleans1.txt
Clipboard.txt
close.php
close.txt
closed.txt
closers.txt
closers.zip
closes.txt
Coinbase
coinbase
coinbase.html
coinbase.json
coinbase.mp3
Coinbase.txt
coinbase.txt
coinpanel
com.txt
comb.txt
combo-email.txt
combo-gmail.txt
combo-pass.txt
combo-users.txt
combo-yahoo.txt
combo.dat
combo.json
combo.log
combo.php
combo.txt
combo.zip
combo_list.txt
combo_lists
combo_lists.txt
combolist.dat
combolist.log
combolist.txt
combolist.zip
combolist2.txt
combolists.txt
combos.html
combos.json
combos.php
combos.txt
combos.zip
comboslist2.txt
comboz.7z
comboz.json
comboz.rar
comboz.txt
comboz.zip
comm.txt
comms.txt
complaint.txt
complaints.txt
config
config.dat
config.json
config.log
Config.php
config.php
config.phps
config.ru
Config.txt
config.txt
config.zip
configs
configs.json
configs.txt
connect.txt
connection.txt
connections.txt
cont.php
contact.html
content.gzip
content.txt
contrasena.txt
contrase�±a.txt
contributors.txt
Control
control
control.jpg
control.php
control.png
controll.php
controller.php
controlpanel
Cookies.txt