-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathWizard.txt
6189 lines (6189 loc) · 67.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.php
0.txt
00.php
00.txt
000.txt
0000.txt
00000.txt
0000000.txt
1
1.gif
1.json
1.mp3
1.pdf
1.php
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
11.txt
111.txt
1111.txt
11111.txt
111111.txt
1111111.txt
1pass.txt
2
2.gif
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.html
2025.json
2025.log
2025.logs
2025.mp3
2025.mp4
2025.php
2025.rar
2025.txt
2025.zip
2025clean.txt
2025data.txt
2025list.txt
2025logs.txt
2025s.txt
2025test.txt
22.txt
222.txt
2222.txt
234234.txt
234qw.txt
2fa.7z
2fa.gzip
2fa.html
2fa.json
2fa.php
2fa.rar
2FA.txt
2fa.txt
2fa.zip
2fas.txt
3
3.php
3.txt
3.zip
30.txt
3000.txt
33.txt
333.txt
3333.txt
33333.txt
3389.txt
3rdparty
4
4.txt
4.zip
40.txt
4000.txt
420.txt
44.txt
444.txt
4444.txt
44444.txt
5
5.txt
5.zip
50.txt
500.txt
5000.txt
55.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
77.txt
777.txt
7777.txt
8
8.txt
8.zip
80.txt
8000.txt
88.txt
888.txt
8888.txt
9
9.txt
9.zip
90.txt
900.txt
99.txt
999.txt
9999.txt
99999.txt
a
a.gif
a.html
a.json
a.log
a.mp3
a.pdf
a.php
a.txt
a.zip
aa.txt
aaa.txt
aaaa.txt
aaaaa.txt
aap.gzip
aap.html
aap.json
aap.php
aap.txt
abc.txt
abhiyan.txt
abuse.txt
abuse.zip
abuses.txt
acc.php
Acceso
acceso
acceso.dat
acceso.log
acceso.txt
access.dat
access.log
access/access.txt
access_fiercephish.log
access_logs
access_logs.txt
account-info.html
account-info.php
account-info.txt
account-login.html
account-login.php
account-login.txt
account.html
account.php
account.txt
account_details.html
account_details.php
account_details.txt
account_number.txt
account_numbers.txt
accountnumber.txt
accountnumbers.txt
accounts.html
accounts.php
accounts.txt
accountz.txt
accts.txt
acctz.txt
ad.html
ada.json
ada.php
ADA.txt
ada.txt
addies.txt
address.html
address.json
address.zip
addresses.json
addy.txt
ADMIN
Admin
admin
admin-bank.html
admin-bank.php
admin-bank.txt
admin.gzip
admin.html
admin.json
Admin.php
admin.php
Admin.txt
admin.txt
admin.zip
admin/access
admin/admin
admin/admin.txt
admin/admin/login
admin/admin/panel
admin/api
admin/backup
admin/backups
admin/bot
admin/bots
admin/call
admin/calls
admin/cam
admin/cams
admin/crypto.txt
admin/cryptos.txt
admin/dash
admin/dashboard
admin/data
admin/db
admin/debug
admin/help.txt
admin/index
admin/index.htm
admin/index.html
admin/kit
admin/kitpanel
admin/kitpanel.html
admin/log
admin/log.txt
admin/logged.txt
admin/Login
admin/login
admin/login.asp
admin/login.htm
admin/login.html
admin/login.php
admin/logs
admin/logs.txt
admin/logs/
admin/logs/access-log
admin/logs/access.log
admin/logs/access_log
admin/logs/err.log
admin/logs/error-log
admin/logs/error.log
admin/logs/error_log
admin/logs/login.txt
admin/lol.txt
admin/manage
admin/manage.asp
admin/manage/admin.asp
admin/manage/login.asp
admin/mysql/
admin/mysql/index.php
admin/mysql2/index.php
admin/ok
admin/ok.txt
admin/open
admin/panel
admin/panel.html
admin/panels
admin/phish.txt
admin/phpMyAdmin
admin/phpMyAdmin/
admin/phpmyadmin/
admin/phpMyAdmin/index.php
admin/phpmyadmin/index.php
admin/phpmyadmin2/index.php
admin/pMA/
admin/pma/
admin/PMA/index.php
admin/pma/index.php
admin/pol_log.txt
admin/private/logs
admin/proxies
admin/proxy
admin/saved.txt
admin/send
admin/sender
admin/sign_in
admin/sqladmin/
admin/stats
admin/submit
admin/submit.txt
admin/submits.txt
admin/success.txt
admin/sxd/
admin/sysadmin/
admin/test
admin/test.txt
admin/testing
admin/tests
admin/upload.php
admin/uploads.php
admin/user_count.txt
admin/wallet.dat
admin/wallet.txt
admin/wallets.dat
admin/wallets.txt
admin/wat.txt
admin/web/
admin0
admin1
admin1.htm
admin1.html
admin1.php
admin1/
admin2
admin2.asp
admin2.html
admin2.old/
admin2.php
admin2/
admin2/index.php
admin2/login.php
admin3/
admin4/
admin4_account/
admin4_colon/
admin5/
admin_
admin_/
admin_admin
admin_area
admin_area.php
admin_area/
admin_area/admin
admin_area/admin.html
admin_area/admin.php
admin_area/index.html
admin_area/index.php
admin_area/login
admin_area/login.html
admin_area/login.php
admin_files
admin_index
admin_index.asp
admin_login
admin_login.html
admin_login.php
admin_login/
admin_login/admin.asp
admin_login/login.asp
admin_logon
admin_logon/
admin_main
admin_panel
admin_pass
admin_tools/
adminadmin
adminarea/
adminarea/admin.html
adminarea/admin.php
adminarea/index.html
adminarea/index.php
adminarea/login.html
adminarea/login.php
adminbot
adminbots
admincall
admincaller
adminconsole
admincontrol
admincontrol.html
admincontrol.php
admincontrol/
admincontrol/login.html
admincontrol/login.php
admincp/
admincp/index.asp
admincp/index.html
admincp/js/kindeditor/
admincp/login
admincp/login.asp
admincp/upload/
adminedit
adminemail
ADMINI
admini.json
admini.php
administrador.gzip
administrador.html
administrador.json
administrador.php
administrador.txt
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.pdf
aff.php
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
agent/admin
agent/info
agent/log
agent/login
agent/logs
agent/panel
agent/stats
agent/test
agent/user
Agents
agents
agents.txt
agents.zip
agents/admin
agents/agents
agents/login
agents/logs
agents/panel
ahorrar.txt
ai.gzip
ai.html
ai.json
ai.mp3
ai.mp4
ai.php
ai.rar
ai.txt
ai.zip
ai1wm-backups
Airdrop.txt
airdrop.txt
ajax
ajskdfhk.txt
akaun.txt
akaunti.txt
aksdfhjje.txt
akun.txt
ali
ali.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
amana.txt
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
anda.gzip
anda.html
anda.json
anda.php
anda.txt
Android
Android.txt
android.txt
androids.txt
animated.gif
anon
anonymous
AOL.txt
aol.txt
aols.txt
aolz.txt
API
api
api-doc
api-docs
api-key.txt
API.html
api.html
API.json
api.json
api.log
api.php
api.py
API.txt
api.txt
API.zip
api.zip
api/
api/2/explore/
api/api
api/call
api/data
api/device
api/device/service
api/error_log
api/info
api/infos
api/jsonws
api/last
api/login.json
api/package_search/v4/documentation
api/stats
api/swagger
api/swagger-ui.html
api/swagger.yml
api/test
api/testing
api/tests
api/user
api/user/info
api/v1
api/v2
api/v3
api_key.txt
api_keys.txt
apibuild.pyc
apidoc
apidocs
apikey.gzip
apikey.txt
apikey.zip
apikeys.txt
apis
apis.json
apis.php
APIS.txt
apis.txt
apis.zip
apiserver-aggregator-ca.cert
apiserver-aggregator.cert
apiserver-aggregator.key
apiserver-client.crt
apiserver-key.pem
apiz
apiz.txt
APP
App
app
app.config
app.js
app.php
app.txt
app/
app/.htaccess
app/file.php
app/file.txt
app/files.php
app/files.txt
app/info
app/stats
app/storage/
app/storage/logs/
app/storage/logs/laravel
app/test.php
app/test.txt
APPLE
Apple
apple
apple.txt
apple.zip
apples.txt
approach.txt
apps
Apps.txt
apps.txt
apps/test.php
apps/test.txt
apr.txt
April.txt
arb.php
arb.txt
asaydhan.gzip
asaydhan.html
asaydhan.log
asaydhan.php
asaydhan.rar
asaydhan.txt
asaydhan.zip
asd3we.txt
asdf
asdf.js
asdf.txt
asdfae.txt
asdfas.txt
asdfasdf
asdfasdf.txt
asdfasfs.txt
asdfawf.txt
asdff
asdfg.txt
asdfs.txt
asdfsdg.txt
asdgv.txt
askdjfh.txt
asset
asset.txt
assets
assets.json
assets.php
assets.txt
ATT.txt
att.txt
au.txt
audio.mp3
audio.txt
aug.txt
August.txt
aus.txt
auth
auth.7z
auth.gzip
auth.json
auth.php
auth.rar
auth.txt
auth.zip
auth/api
auth/login
auth/pass
authorize
auths
auths.txt
AutoFill.txt
Autofill.txt
autofill.txt
AVAX.txt
avax.txt
ayan.gzip
ayan.html
ayan.log
ayan.php
ayan.rar
ayan.txt
ayan.zip
azure.txt
b.mp3
b.php
b.txt
b.zip
baan-rok-tuk.php
baan-rok-tuk.txt
baanchee.txt
bab.zip
back
back-up
back-ups
back.gzip
back.html
back.jpg
back.php
back.png
back.txt
Back.zip
back.zip
backback
backback.zip
backd.zip
backdoor
backedup
backend
backend.gzip
backends
backs.zip
backup
backup-db
backup.7z
backup.config
backup.dat
backup.gzip
backup.html
backup.jpg
backup.log
backup.png
backup.rar
backup.txt
Backup.zip
backup.zip
backup2.txt
backup3
backup3.zip
backupdb
backupdb.gzip
backups
backups.7z
backups.dat
backups.gzip
backups.html
backups.jpg
backups.log
backups.png
backups.txt
Backups.zip
backups.zip
backupz
backupz.txt
backz
Bad.txt
bad.txt
bad.zip
bad_ips.txt
badips.txt
baepfawm.gzip
baepfawm.html
baepfawm.json
baepfawm.php
baepfawm.txt
balance.gzip
balance.json
balance.php
balance.txt
balance.zip
balances.gzip
balances.html
balances.php
balances.txt
ban
Ban.txt
ban.txt
ban.zip
ban_ips.txt
banchi.gzip
banchi.html
banchi.log
banchi.php
banchi.rar
banchi.txt
banchi.zip
banchitang.gzip
banchitang.html
banchitang.log
banchitang.php
banchitang.rar
banchitang.txt
banchitang.zip
BANCO
Banco
banco
Banco.txt
banco.txt
banhji-tang.gzip
banhji-tang.html
banhji-tang.log
banhji-tang.php
banhji-tang.rar
banhji-tang.txt
banhji-tang.zip
banhji.gzip
banhji.html
banhji.log
banhji.php
banhji.rar
banhji.txt
banhji.zip
banips.txt
bank-admin.html
bank-admin.php
bank-admin.txt
bank-login.html
bank-login.php
bank-login.txt
bank.dat
bank.gzip
bank.html
bank.html.1
bank.html.bak
bank.html.old
bank.html.swp
bank.html~
bank.jpg
bank.json
bank.log
bank.mp3
bank.mp4
bank.php
bank.php.1
bank.php.bak
bank.php.old
bank.php.swp
bank.php~
bank.png
bank.rar
Bank.txt
bank.txt
bank.txt.1
bank.txt.bak
bank.txt.old
bank.txt.swp
bank.txt~
bank.zip
bank1.txt
bank_log
bank_logs
bank_logs.txt
bankaccount.html
bankaccount.php
bankaccount.txt
banking-portal.html
banking-portal.php
banking-portal.txt
banking.html
banking.php
banking.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
bantuek.gzip
bantuek.html
bantuek.json
bantuek.php
bantuek.txt
bantueklaew.gzip
bantueklaew.html
bantueklaew.json
bantueklaew.php
bantueklaew.txt
barua
barua.php
barua.txt
barua_pepe.php
barua_pepe.txt
baruapepe.php
baruapepe.txt
base.html
base.json
base.php
Base.txt
base.txt
batua.gzip
batua.html
batua.json
batua.php
batua.txt
baxup
bb.txt
bbb.txt
bch
bch.php
bch.txt
bch.zip
bckup
bep-bat.php
bep-bat.txt
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
biaodan.php
biaodan.txt
biden.txt
Binance
binance.html
binance.json
binance.mp3
binance.php
binance.rar
Binance.txt
binance.txt
binance.zip
BINS
Bins
bins