-
Notifications
You must be signed in to change notification settings - Fork 1
/
Wizard.txt
2110 lines (2110 loc) · 21.6 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.txt
00.txt
000.txt
1
1.json
1.txt
1.zip
10
10.txt
10.zip
100.txt
100.zip
1000.txt
10000.txt
100000.txt
1pass.txt
2
2.txt
2.zip
20.txt
2000.txt
2021
2021.txt
2022
2022.txt
2023
2023.txt
2023emails.txt
2023final.txt
2023list.txt
2023passwords.txt
2023users.txt
2024
2024.txt
2025.log
2025.logs
2025.txt
2025.zip
2025logs.txt
2025test.txt
2FA.txt
2fa.txt
3
3.txt
3.zip
30.txt
3389.txt
4
4.txt
4.zip
40.txt
5
5.txt
5.zip
50.txt
500.txt
5000.txt
6
6.txt
6.zip
7
7.txt
7.zip
8
8.txt
8.zip
9
9.txt
9.zip
900.txt
a
a.json
a.txt
a.zip
aa.txt
abuse.txt
abuse.zip
Acceso
acceso
acceso.dat
acceso.log
acceso.txt
access.log
access/access.txt
access_fiercephish.log
access_logs
access_logs.txt
account.txt
account_number.txt
account_numbers.txt
accountnumber.txt
accountnumbers.txt
accounts.txt
accountz.txt
accts.txt
acctz.txt
ADA.txt
ada.txt
addies.txt
address.json
address.zip
addresses.json
addy.txt
ADMIN
Admin
admin
Admin.php
admin.php
Admin.txt
admin.txt
admin.zip
admin/admin.txt
admin/crypto.txt
admin/cryptos.txt
admin/help.txt
admin/index.html
admin/log.txt
admin/logged.txt
admin/logs.txt
admin/lol.txt
admin/ok.txt
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
adminlogin
adminpanel
Admins
admins
admins.zip
admins/list
adobe.txt
ads
ads.txt
ahorrar.txt
Airdrop.txt
airdrop.txt
all
all.log
all.txt
all.zip
Alpha
alpha
alpha.txt
amazon.txt
American.txt
american.txt
Americans.txt
americans.txt
AMEX.txt
amex.txt
Android
Android.txt
android.txt
anon
anonymous
AOL.txt
aol.txt
aols.txt
api
api-key.txt
api.txt
api_key.txt
api_keys.txt
apikey.txt
apikeys.txt
apis
apis.txt
apple.txt
approach.txt
Apps.txt
arb.txt
asdf
asdf.txt
asdfasdf
asdfasdf.txt
asdff
ATT.txt
att.txt
au.txt
aus.txt
auth
auth.txt
authorize
AutoFill.txt
Autofill.txt
autofill.txt
avax.txt
AVAX.txt
azure.txt
b.txt
b.zip
back
back.txt
back.zip
Back.zip
backd.zip
backedup
backs.zip
backup
backup.7z
backup.config
backup.dat
backup.log
backup.rar
backup.txt
backup.zip
Backup.zip
backup2.txt
backup3
backup3.zip
backupdb
backups
backups.7z
backups.dat
backups.log
backups.txt
backups.zip
Backups.zip
backupz.txt
Bad.txt
bad.txt
bad.zip
bad_ips.txt
badips.txt
ban
ban.txt
ban.zip
ban_ips.txt
BANCO
Banco
banco
Banco.txt
banco.txt
banips.txt
bank.dat
bank.log
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
banning.dat
banning.log
banning.txt
bans
bans.log
bans.txt
bans.zip
base.txt
bch
bch.txt
bch.zip
beta.txt
beta.zip
betterment.txt
Binance
binance.txt
bisq.txt
Bitcoin
bitcoin.dat
bitcoin.log
Bitcoin.txt
bitcoin.txt
bitcoincash
bitcoincash.txt
bitcoins.txt
bitmart.txt
bittrex.txt
bitwarden.com
black.txt
blacklist.dat
blacklist.log
blacklist.txt
Blacklist.txt
blacklist.zip
blacklist_ips.txt
blacklisted.dat
blacklisted.log
blacklisted.txt
blacklistips.txt
block
block.txt
Blockchain
blockchain
Blockchain.txt
blockchain.txt
blocked
blocked.txt
Blocklist.txt
blocks.txt
bnb.txt
Bookmarks.txt
bookmarks.txt
bot.config
bot.txt
botnet
botnet.txt
botnetpanel
botnetproxies.txt
botnetproxy.txt
botnets
botpanel
bots
bots.txt
bots.zip
botted.txt
botz.txt
Bounty
bounty
Bounty.txt
bounty.txt
bower.json
brasil.txt
brazil.txt
breach.txt
breached.txt
bsky.txt
btc
btc.txt
BTC.txt
bugs.txt
c.txt
c.zip
cad.txt
call.zip
called.json
called.zip
caller.json
caller.zip
callers.json
callers.zip
calls.txt
calls.zip
calls/calls.txt
can.txt
canada.txt
Capture.txt
capture.txt
Captures.txt
captures.txt
Cardano
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.zip
cats.txt
cc
CC
CC.txt
cc_submit.txt
cc_submits.txt
ccs
CCS
CCs.txt
ccs.txt
CCS.txt
ccs1.txt
ccz
CCz.txt
ccz.txt
cell.txt
change.txt
changed.txt
changes.txt
chase.txt
chat.config
chat.json
chat.log
chat.txt
chat.zip
chatbot.log
chatbot.txt
chatbot.zip
chatbots.txt
chatbotz.txt
chatgpt.txt
chatlogs.txt
chats.txt
chats.zip
check.txt
check.zip
checked.json
checked.txt
Checked.txt
checker.txt
Checker.txt
checkfirst.txt
checking.txt
chek.txt
Chek.txt
china.txt
chinese.txt
citigroup.txt
claude.txt
Clean
Clean.txt
clean_ips.txt
clean_proxies.txt
Cleaned
cleaned
Cleaned.txt
cleaned.txt
cleaned.zip
cleaned_email_list.txt
cleaned_emails.txt
cleaned_phish.txt
Clipboard.txt
close.txt
closed.txt
closers.txt
closers.zip
closes.txt
Coinbase
coinbase
Coinbase.txt
coinbase.txt
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.txt
combo.zip
combo_list.txt
combo_lists
combo_lists.txt
combolist.dat
combolist.log
combolist.txt
combolist.zip
combolist2.txt
combolists.txt
combos.json
combos.txt
combos.zip
comboslist2.txt
config
config.dat
config.json
config.log
Config.php
config.php
config.phps
config.ru
Config.txt
config.txt
config.zip
connect.txt
connection.txt
connections.txt
contrasena.txt
contrase�±a.txt
contributors.txt
Control
control
controlpanel
Cookies.txt
cookies.txt
cpanel.zip
crack.log
crack.txt
cracked
cracked.7z
cracked.log
cracked.txt
cracked.zip
cracks.log
cracks.txt
cred.txt
CreditCards.txt
creditcards.txt
creditkarma.txt
Creds.txt
creds.txt
creds/creds.txt
creds1.txt
creds2.txt
credz.txt
Crime.txt
crime.txt
Crypto
crypto.7z
crypto.dat
crypto.json
crypto.log
crypto.rar
crypto.txt
Crypto.txt
crypto.zip
crypto_com.txt
cryptos.txt
cutlet.txt
cutlets.txt
d.txt
dashpanel
data
data.txt
data.zip
database
Database
database.json
database.txt
database.zip
databases
Databases
db.txt
de.txt
debug.json
Debug.txt
debug.txt
debugged.json
december.txt
Deduped
deduped
Deduped.txt
deduped.txt
Default
default
default.json
Default.txt
default.txt
Desktop
desktop
desktop.txt
desktop.zip
Desktop.zip
developer.txt
devops.txt
dir.txt
dirbuster
discord.log
Discord.txt
discord.txt
discover.txt
docker-compose.yml
docs
Docs
docs.txt
Documents
documents
doge.dat
doge.txt
dogecoin.dat
dogecoin.txt
dollar.txt
dollars.txt
domains
domains.log
Domains.txt
domains.txt
done.dat
done.log
done.txt
donotdelete
donotdelete.txt
dot.txt
Downloads
downloads
Downloads.txt
downloads.txt
dox
dox.txt
doxx
doxx.txt
draftkings.txt
drain.txt
drain.zip
drained.txt
drainer
drainer.json
drainer.zip
drainers
drainers.txt
drains.txt
dreainer.txt
drop.txt
Dump
dump
dump.dat
dump.log
dump.txt
dumped
Dumped
dumped.dat
dumped.log
dumped.txt
dumper.txt
Dumps
dumps
dumps.dat
dumps.log
dumps.txt
dumpz
dumpz.dat
dumpz.log
dumpz.txt
duo.txt
Duped.txt
duped.txt
dupedlist.txt
e.txt
Elon
Elon.txt
elon.txt
email
email.config
email.dat
email.json
email.log
email.txt
email.zip
email1.txt
email_deduped.txt
email_lists
email_submit.txt
email_submits.txt
emailed.json
emailer.txt
emailers.txt
emailkk.txt
emaillist.json
EmailLists.txt
Emails
emails
emails.config
emails.dat
emails.json
emails.log
Emails.txt
emails.txt
emails.zip
emails/emails.txt
emails1.txt
emails2023.txt
emails2025.txt
emails_deduped.txt
emails_valid.txt
emailz.txt
england.txt
english.txt
enter.txt
entrnl.txt
entry.txt
error_fiercephish.log
etc.txt
ETH.log
eth.log
eth.txt
ETH.txt
Ethereum
Ethereum.txt
ethereum.txt
ethwallets.txt
ETHwallets.txt
euro.txt
european.txt
europeans.txt
euros.txt
example.txt
example.zip
Exodus
exodus
exodus.wallet
exploit.json
exploit.txt
exploit.zip
exploited.txt
exploits.txt
exploits.zip
f.txt
Facebook.txt
facebook.txt
Failed.log
Failed.txt
failed.txt
Fails.txt
Failure.txt
FanDuel.txt
fanduel.txt
fb.json
fb.txt
fbs.txt
feb.txt
fedex.txt
feed
feed.dat
feed.rar
feed.txt
feed.zip
feeds.dat
feeds.rar
feeds.txt
feeds.zip
files
files.zip
files/0.txt
files/1.txt
files/a.txt
files/address.txt
files/bot.txt
files/bots.txt
files/cleaned.txt
files/email.json
files/email.txt
files/emails.json
files/emails.txt
files/hit.txt
files/hits.txt
files/numbers.txt
files/phish.txt
files/phone.json
files/phone.txt
files/proxies.txt
files/proxy.txt
files/save.txt
files/saved.txt
files/saves.json
files/saves.txt
files/socks.txt
files/socks4.txt
files/socks5.txt
files/submit.txt
files/submits.txt
files/submitted.txt
files/valid.txt
final
final.json
final.log
Final.txt
final.txt
final.zip
final1.txt
final100.txt
final2.txt
final_info.txt
final_list.txt
final_save.txt
finallist.txt
finals.txt
finances.txt
find.txt
find.zip
finder
finder.log
finder.txt
finder.zip
Finds
Finds.txt
finds.txt
fingerprints.txt
finished.txt
first.json
first_name.txt
firstname.txt
fish.dat
fish.json
fish.log
fish.txt
fished.txt
format.json
format.log
format.txt
format.zip
formatted.json
formatted.log
formatted.txt
formatted.zip
found.txt
france.txt
fraud.txt
free
Free
free.txt
Free.txt
fresh
fresh.dat
fresh.json
fresh.log
fresh.txt
fresh.zip
fresh1.txt
full_logs
full_logs.txt
g.txt
gandalf.txt
gemini.txt
geo.txt
geoip.txt
geolocation
germany.txt
git.txt
github.txt
Gitlab.txt
gitlab.txt
Giveaway
giveaway
Giveaway.txt
giveaway.txt
gmail.log
Gmail.txt
gmail.txt
gmail/gmail.txt
gmails.txt
goldman.txt
good.txt
google.log
Google.txt
google.txt
gophish.txt
GPS
gps.txt
gpt.txt
Grindr.txt
grindr.txt
h.txt
hacked
Hacked
hacked.log
hacked.rar
hacked.txt
Hacked.txt
hacked.zip
Hacked.zip
hacked/hacked.txt
hacked1.txt
Hacked1.txt
hacked2.txt
hacked3.txt
harrypotter.txt
harvest.txt
harvested.txt
hash
hash.txt
hashed
hashed.txt
hashes.log
hashes.txt
hashes.zip
hbar.txt
health.txt
health.zip
healthcare
healthcare.txt
healthcare.zip
healthy.txt
healthy.zip
help
help.txt
help.zip
help/help.txt
hidden.txt
hits.json
Hosts.txt
hosts.txt
HTTP.txt
http.txt
httpproxy.txt
HTTPS.txt
https.txt
httpsproxies.txt
icp.txt
id.dat
id.rar
ID.txt
id.txt
id.zip
idk
idk.dat
idk.log
idk.rar
idk.txt
idk.zip
ids
ids.dat
IDs.txt
ids.txt
IG.txt
ig.txt
images
Images
IMAGES
img
IMG
in.txt
incoming.txt
info.dat
info.log
info.php
info.txt
init.txt
input.txt
Instagram.txt
instagram.txt
install.php
install.zip
installer
installer.txt
installs
installs.txt
installs.zip
installsbot.txt
intel
Intel
intel.dat
intel.json
intel.txt
intel.zip
interesting.txt
invalid.dat
invalid.log
Invalid.txt
invalid.txt
ip
IP
ip.dat
ip.json
ip.log
IP.txt
ip.txt
ip.zip
iPhone
iPhone.txt
iphone.txt
ips
IPS
ips.rar
ips.txt
ips.zip
ipz.txt
ira.txt
iras.txt
italian.txt
italy.txt
j.txt
j.zip
jan.txt
jpmorgan.txt
k.txt
k.zip
kash.txt
key_log.txt
key_logged.txt
key_logger.txt
keylogged.txt
keylogger.dat