forked from decal/werdlists
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprivate-file-names.txt
3000 lines (3000 loc) · 35 KB
/
private-file-names.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
account
account.0
account.1
account.1.bak
account.2
account.2.bak
account.bak
account.bak.1
account.bak.2
account.bz2
account.gz
account.htm
account.html
account.new
account.old
account.rar
accounts
accounts.0
accounts.1
accounts.1.bak
accounts.2
accounts.2.bak
accounts.bak
accounts.bak.1
accounts.bak.2
accounts.bz2
accounts.gz
accounts.htm
accounts.html
accounts.new
accounts.old
accounts.rar
accounts.tar
accounts.tar.bz2
accounts.tar.gz
accounts.tgz
accounts.txt
accounts.txt.0
accounts.txt.1
accounts.txt.2
accounts.txt.bak
accounts.txt.gz
accounts.txt.new
accounts.txt.old
accounts.txt.xz
accounts.xz
account.tar
account.tar.bz2
account.tar.gz
account.tgz
account.txt
account.txt.0
account.txt.1
account.txt.2
account.txt.bak
account.txt.gz
account.txt.new
account.txt.old
account.txt.xz
account.xz
admin
admin.0
admin.1
admin.1.bak
admin.2
admin.2.bak
admin.bak
admin.bak.1
admin.bak.2
admin.bz2
admin.gz
admin.htm
admin.html
administrator
administrator.0
administrator.1
administrator.1.bak
administrator.2
administrator.2.bak
administrator.bak
administrator.bak.1
administrator.bak.2
administrator.bz2
administrator.gz
administrator.htm
administrator.html
administrator.new
administrator.old
administrator.rar
administrators
administrators.0
administrators.1
administrators.1.bak
administrators.2
administrators.2.bak
administrators.bak
administrators.bak.1
administrators.bak.2
administrators.bz2
administrators.gz
administrators.htm
administrators.html
administrators.new
administrators.old
administrators.rar
administrators.tar
administrators.tar.bz2
administrators.tar.gz
administrators.tgz
administrators.txt
administrators.txt.0
administrators.txt.1
administrators.txt.2
administrators.txt.bak
administrators.txt.gz
administrators.txt.new
administrators.txt.old
administrators.txt.xz
administrators.xz
administrator.tar
administrator.tar.bz2
administrator.tar.gz
administrator.tgz
administrator.txt
administrator.txt.0
administrator.txt.1
administrator.txt.2
administrator.txt.bak
administrator.txt.gz
administrator.txt.new
administrator.txt.old
administrator.txt.xz
administrator.xz
admin.new
admin.old
admin.rar
admins
admins.0
admins.1
admins.1.bak
admins.2
admins.2.bak
admins.bak
admins.bak.1
admins.bak.2
admins.bz2
admins.gz
admins.htm
admins.html
admins.new
admins.old
admins.rar
admins.tar
admins.tar.bz2
admins.tar.gz
admins.tgz
admins.txt
admins.txt.0
admins.txt.1
admins.txt.2
admins.txt.bak
admins.txt.gz
admins.txt.new
admins.txt.old
admins.txt.xz
admins.xz
admin.tar
admin.tar.bz2
admin.tar.gz
admin.tgz
admin.txt
admin.txt.0
admin.txt.1
admin.txt.2
admin.txt.bak
admin.txt.gz
admin.txt.new
admin.txt.old
admin.txt.xz
admin.xz
auth
auth.0
auth.1
auth.1.bak
auth.2
auth.2.bak
auth.bak
auth.bak.1
auth.bak.2
auth.bz2
auth.gz
auth.htm
auth.html
auth.new
auth.old
author
author.0
author.1
author.1.bak
author.2
author.2.bak
author.bak
author.bak.1
author.bak.2
author.bz2
author.gz
author.htm
author.html
author.new
author.old
author.rar
authors
authors.0
authors.1
authors.1.bak
authors.2
authors.2.bak
authors.bak
authors.bak.1
authors.bak.2
authors.bz2
authors.gz
authors.htm
authors.html
authors.new
authors.old
authors.rar
authors.tar
authors.tar.bz2
authors.tar.gz
authors.tgz
authors.txt
authors.txt.0
authors.txt.1
authors.txt.2
authors.txt.bak
authors.txt.gz
authors.txt.new
authors.txt.old
authors.txt.xz
authors.xz
author.tar
author.tar.bz2
author.tar.gz
author.tgz
author.txt
author.txt.0
author.txt.1
author.txt.2
author.txt.bak
author.txt.gz
author.txt.new
author.txt.old
author.txt.xz
author.xz
auth.rar
auths
auths.0
auths.1
auths.1.bak
auths.2
auths.2.bak
auths.bak
auths.bak.1
auths.bak.2
auths.bz2
auths.gz
auths.htm
auths.html
auths.new
auths.old
auths.rar
auths.tar
auths.tar.bz2
auths.tar.gz
auths.tgz
auths.txt
auths.txt.0
auths.txt.1
auths.txt.2
auths.txt.bak
auths.txt.gz
auths.txt.new
auths.txt.old
auths.txt.xz
auths.xz
auth.tar
auth.tar.bz2
auth.tar.gz
auth.tgz
auth.txt
auth.txt.0
auth.txt.1
auth.txt.2
auth.txt.bak
auth.txt.gz
auth.txt.new
auth.txt.old
auth.txt.xz
auth.xz
auto
auto.0
auto.1
auto.1.bak
auto.2
auto.2.bak
auto.bak
auto.bak.1
auto.bak.2
auto.bz2
auto.gz
auto.htm
auto.html
auto.new
auto.old
auto.rar
auto.tar
auto.tar.bz2
auto.tar.gz
auto.tgz
auto.txt
auto.txt.0
auto.txt.1
auto.txt.2
auto.txt.bak
auto.txt.gz
auto.txt.new
auto.txt.old
auto.txt.xz
auto.xz
boot
boot.0
boot.1
boot.1.bak
boot.2
boot.2.bak
boot.bak
boot.bak.1
boot.bak.2
boot.bz2
boot.gz
boot.htm
boot.html
boot.new
boot.old
boot.rar
boot.tar
boot.tar.bz2
boot.tar.gz
boot.tgz
boot.txt
boot.txt.0
boot.txt.1
boot.txt.2
boot.txt.bak
boot.txt.gz
boot.txt.new
boot.txt.old
boot.txt.xz
boot.xz
change
change.0
change.1
change.1.bak
change.2
change.2.bak
change.bak
change.bak.1
change.bak.2
change.bz2
change.gz
change.htm
change.html
change.new
change.old
change.rar
changes
changes.0
changes.1
changes.1.bak
changes.2
changes.2.bak
changes.bak
changes.bak.1
changes.bak.2
changes.bz2
changes.gz
changes.htm
changes.html
changes.new
changes.old
changes.rar
changes.tar
changes.tar.bz2
changes.tar.gz
changes.tgz
changes.txt
changes.txt.0
changes.txt.1
changes.txt.2
changes.txt.bak
changes.txt.gz
changes.txt.new
changes.txt.old
changes.txt.xz
changes.xz
change.tar
change.tar.bz2
change.tar.gz
change.tgz
change.txt
change.txt.0
change.txt.1
change.txt.2
change.txt.bak
change.txt.gz
change.txt.new
change.txt.old
change.txt.xz
change.xz
cmds
cmds.0
cmds.1
cmds.1.bak
cmds.2
cmds.2.bak
cmds.bak
cmds.bak.1
cmds.bak.2
cmds.bz2
cmds.gz
cmds.htm
cmds.html
cmds.new
cmds.old
cmds.rar
cmds.tar
cmds.tar.bz2
cmds.tar.gz
cmds.tgz
cmds.txt
cmds.txt.0
cmds.txt.1
cmds.txt.2
cmds.txt.bak
cmds.txt.gz
cmds.txt.new
cmds.txt.old
cmds.txt.xz
cmds.xz
code
code.0
code.1
code.1.bak
code.2
code.2.bak
code.bak
code.bak.1
code.bak.2
code.bz2
code.gz
code.htm
code.html
code.new
code.old
coder
coder.0
coder.1
coder.1.bak
coder.2
coder.2.bak
code.rar
coder.bak
coder.bak.1
coder.bak.2
coder.bz2
coder.gz
coder.htm
coder.html
coder.new
coder.old
coder.rar
coders
coders.0
coders.1
coders.1.bak
coders.2
coders.2.bak
coders.bak
coders.bak.1
coders.bak.2
coders.bz2
coders.gz
coders.htm
coders.html
coders.new
coders.old
coders.rar
coders.tar
coders.tar.bz2
coders.tar.gz
coders.tgz
coders.txt
coders.txt.0
coders.txt.1
coders.txt.2
coders.txt.bak
coders.txt.gz
coders.txt.new
coders.txt.old
coders.txt.xz
coders.xz
coder.tar
coder.tar.bz2
coder.tar.gz
coder.tgz
coder.txt
coder.txt.0
coder.txt.1
coder.txt.2
coder.txt.bak
coder.txt.gz
coder.txt.new
coder.txt.old
coder.txt.xz
coder.xz
codes
codes.0
codes.1
codes.1.bak
codes.2
codes.2.bak
codes.bak
codes.bak.1
codes.bak.2
codes.bz2
codes.gz
codes.htm
codes.html
codes.new
codes.old
codes.rar
codes.tar
codes.tar.bz2
codes.tar.gz
codes.tgz
codes.txt
codes.txt.0
codes.txt.1
codes.txt.2
codes.txt.bak
codes.txt.gz
codes.txt.new
codes.txt.old
codes.txt.xz
codes.xz
code.tar
code.tar.bz2
code.tar.gz
code.tgz
code.txt
code.txt.0
code.txt.1
code.txt.2
code.txt.bak
code.txt.gz
code.txt.new
code.txt.old
code.txt.xz
code.xz
command
command.0
command.1
command.1.bak
command.2
command.2.bak
command.bak
command.bak.1
command.bak.2
command.bz2
command.gz
command.htm
command.html
command.new
command.old
command.rar
commands
commands.0
commands.1
commands.1.bak
commands.2
commands.2.bak
commands.bak
commands.bak.1
commands.bak.2
commands.bz2
commands.gz
commands.htm
commands.html
commands.new
commands.old
commands.rar
commands.tar
commands.tar.bz2
commands.tar.gz
commands.tgz
commands.txt
commands.txt.0
commands.txt.1
commands.txt.2
commands.txt.bak
commands.txt.gz
commands.txt.new
commands.txt.old
commands.txt.xz
commands.xz
command.tar
command.tar.bz2
command.tar.gz
command.tgz
command.txt
command.txt.0
command.txt.1
command.txt.2
command.txt.bak
command.txt.gz
command.txt.new
command.txt.old
command.txt.xz
command.xz
compile
compile.0
compile.1
compile.1.bak
compile.2
compile.2.bak
compile.bak
compile.bak.1
compile.bak.2
compile.bz2
compile.gz
compile.htm
compile.html
compile.new
compile.old
compiler
compiler.0
compiler.1
compiler.1.bak
compiler.2
compiler.2.bak
compile.rar
compiler.bak
compiler.bak.1
compiler.bak.2
compiler.bz2
compiler.gz
compiler.htm
compiler.html
compiler.new
compiler.old
compiler.rar
compiler.tar
compiler.tar.bz2
compiler.tar.gz
compiler.tgz
compiler.txt
compiler.txt.0
compiler.txt.1
compiler.txt.2
compiler.txt.bak
compiler.txt.gz
compiler.txt.new
compiler.txt.old
compiler.txt.xz
compiler.xz
compile.tar
compile.tar.bz2
compile.tar.gz
compile.tgz
compile.txt
compile.txt.0
compile.txt.1
compile.txt.2
compile.txt.bak
compile.txt.gz
compile.txt.new
compile.txt.old
compile.txt.xz
compile.xz
config
config.0
config.1
config.1.bak
config.2
config.2.bak
config.bak
config.bak.1
config.bak.2
config.bz2
config.gz
config.htm
config.html
config.new
config.old
config.rar
configs
configs.0
configs.1
configs.1.bak
configs.2
configs.2.bak
configs.bak
configs.bak.1
configs.bak.2
configs.bz2
configs.gz
configs.htm
configs.html
configs.new
configs.old
configs.rar
configs.tar
configs.tar.bz2
configs.tar.gz
configs.tgz
configs.txt
configs.txt.0
configs.txt.1
configs.txt.2
configs.txt.bak
configs.txt.gz
configs.txt.new
configs.txt.old
configs.txt.xz
configs.xz
config.tar
config.tar.bz2
config.tar.gz
config.tgz
config.txt
config.txt.0
config.txt.1
config.txt.2
config.txt.bak
config.txt.gz
config.txt.new
config.txt.old
config.txt.xz
config.xz
data
data.0
data.1
data.1.bak
data.2
data.2.bak
data.bak
data.bak.1
data.bak.2
database
database.0
database.1
database.1.bak
database.2
database.2.bak
database.bak
database.bak.1
database.bak.2
database.bz2
database.gz
database.htm
database.html
database.new
database.old
database.rar
databases
databases.0
databases.1
databases.1.bak
databases.2
databases.2.bak
databases.bak
databases.bak.1
databases.bak.2
databases.bz2
databases.gz
databases.htm
databases.html
databases.new
databases.old
databases.rar
databases.tar
databases.tar.bz2
databases.tar.gz
databases.tgz
databases.txt
databases.txt.0
databases.txt.1
databases.txt.2
databases.txt.bak
databases.txt.gz
databases.txt.new
databases.txt.old
databases.txt.xz
databases.xz
database.tar
database.tar.bz2
database.tar.gz
database.tgz
database.txt
database.txt.0
database.txt.1
database.txt.2
database.txt.bak
database.txt.gz
database.txt.new
database.txt.old
database.txt.xz
database.xz
data.bz2
data.gz
data.htm
data.html
data.new
data.old
data.rar
data.tar
data.tar.bz2
data.tar.gz
data.tgz
data.txt
data.txt.0
data.txt.1
data.txt.2
data.txt.bak
data.txt.gz
data.txt.new
data.txt.old
data.txt.xz
data.xz
dump
dump.0
dump.1
dump.1.bak
dump.2
dump.2.bak
dump.bak
dump.bak.1
dump.bak.2
dump.bz2
dump.gz
dump.htm
dump.html
dump.new
dump.old
dump.rar
dumps
dumps.0
dumps.1
dumps.1.bak
dumps.2
dumps.2.bak
dumps.bak
dumps.bak.1
dumps.bak.2
dumps.bz2
dumps.gz
dumps.htm
dumps.html
dumps.new
dumps.old
dumps.rar
dumps.tar
dumps.tar.bz2
dumps.tar.gz
dumps.tgz
dumps.txt
dumps.txt.0
dumps.txt.1
dumps.txt.2
dumps.txt.bak
dumps.txt.gz
dumps.txt.new
dumps.txt.old
dumps.txt.xz
dumps.xz
dump.tar
dump.tar.bz2
dump.tar.gz
dump.tgz
dump.txt
dump.txt.0
dump.txt.1
dump.txt.2
dump.txt.bak
dump.txt.gz
dump.txt.new
dump.txt.old
dump.txt.xz
dump.xz
edit
edit.0
edit.1
edit.1.bak
edit.2
edit.2.bak
edit.bak
edit.bak.1
edit.bak.2
edit.bz2
edit.gz
edit.htm
edit.html
editing
editing.0
editing.1
editing.1.bak
editing.2
editing.2.bak
editing.bak
editing.bak.1
editing.bak.2
editing.bz2
editing.gz
editing.htm
editing.html
editing.new
editing.old
editing.rar
editing.tar
editing.tar.bz2
editing.tar.gz
editing.tgz
editing.txt
editing.txt.0
editing.txt.1
editing.txt.2
editing.txt.bak
editing.txt.gz
editing.txt.new
editing.txt.old
editing.txt.xz
editing.xz
edit.new
edit.old
editor
editor.0
editor.1
editor.1.bak
editor.2
editor.2.bak
editor.bak
editor.bak.1
editor.bak.2
editor.bz2
editor.gz
editor.htm
editor.html
editor.new
editor.old
editor.rar
editors
editors.0
editors.1
editors.1.bak
editors.2
editors.2.bak
editors.bak
editors.bak.1
editors.bak.2
editors.bz2
editors.gz
editors.htm
editors.html
editors.new
editors.old
editors.rar
editors.tar
editors.tar.bz2
editors.tar.gz
editors.tgz
editors.txt
editors.txt.0
editors.txt.1
editors.txt.2
editors.txt.bak
editors.txt.gz
editors.txt.new
editors.txt.old
editors.txt.xz
editors.xz
editor.tar
editor.tar.bz2
editor.tar.gz
editor.tgz
editor.txt
editor.txt.0
editor.txt.1
editor.txt.2
editor.txt.bak