-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaths.txt
2221 lines (2220 loc) · 23.2 KB
/
paths.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
/
__admin
__init__.py
__main__.py
__pycache__
_.htaccess
_.htpasswd
_
_adm
_admin_
_admin.php
_admin
_archive
_assets
_backup
_bak
_bkp
_build
_cache
_cat/health
_cat/indices
_catalogs
_catalogs/masterpage
_cluster/health
_code
_common.xsl
_common
_conf
_config.yaml
_config.yml
_config
_data.sql
_data
_db_backups
_db_updates
_dbadmin
_default
_dev
_Dockerfile
_files
_functions
_index.php
_index
_install
_layouts
_log
_NOTES
_old
_phpmyadmin
_private
_site.yml
_temp
_test
_tests
_themes
_thumbs
_tmp
_users
!
..;/
..
../../../../../../../../../../../etc/hosts
../../../../../../../../../../etc/hosts
../../../../../../../../../../etc/passwd
../../../../../../../../../../etc/passwd%00
..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\passwd
./../.env
./admin/.
.0
.admin
.ansible
.autotest
.aws
.aws/config
.aws/credentials
.azure/accessTokens.json
.babel.json
.babelrc.js
.babelrc
.backup
.bak
.bash_aliases
.bash_history
.bash_profile
.bashrc
.bin
.bkp
.boto
.bowerrc
.build.sh
.build
.buildlog
.bundle
.cache
.capistrano
.capistrano/metrics
.cargo
.cargo/.crates.toml
.cask
.cert
.cfg
.cfignore
.chef/config.rb
.circleci
.circleci/circle.yml
.circleci/config.yml
.circleci/ssh-config
.classpath
.coafile
.cobalt
.cobalt/sysmanage/../admin/.htaccess
.codacy.yml
.codeclimate.json
.codeclimate.yml
.codecov.yml
.codefresh/codefresh.yml
.codekit-cache
.codeship.yml
.com.old
.com
.components
.composer
.composer/auth.json
.composer/composer.json
.concrete/DEV_MODE
.condarc
.conf
.config.php
.config
.config/docker/config.json
.config/filezilla/sitemanager.xml
.config/gatsby/config.json
.config/gcloud
.config/gcloud/access_tokens.db
.config/gcloud/active_config
.config/gcloud/config_sentinel
.config/gcloud/configurations/config_default
.config/gcloud/credentials.db
.config/gcloud/credentials
.config/gcloud/gce
.config/gcloud/logs
.config/karma.conf.js
.config/pip/pip.conf
.config/sftp.json
.config/stripe/config.toml
.config/yarn/global/package.json
.config/yarn/global/yarn.lock
.configuration
.cookiecutterrc
.cordova/config.json
.core
.coverage
.coveragerc
.cpan
.cpanel
.cpanel/caches/config
.credential
.credentials
.crt
.csproj
.csv
.curlrc
.data
.db.xml
.db.yaml
.db
.deployignore
.deployment
.dev
.devcontainer
.devcontainer/devcontainer.json
.devcontainer/Dockerfile
.doc
.docker
.docker/.env
.docker/config.json
.docker/laravel/app/.env
.dockercfg
.dockerignore
.docs
.dropbox
.dump
.eclipse
.editorconfig
.eggs
.elasticbeanstalk
.env_1
.env_sample
.env-example
.env.backup
.env.bak
.env.dev.local
.env.dev
.env.development.local
.env.development
.env.dist
.env.docker.dev
.env.docker
.env.example
.env.json
.env.local
.env.old
.env.php
.env.prod.local
.env.prod
.env.production.local
.env.production
.env.yaml
.env.yml
.env
.env~
.environment
.envrc
.envs
.error_log
.filetree
.firebaserc
.ftp
.ftppass
.ftpquota
.functions
.gem
.gem/credentials
.gemfile
.gemrc
.gems
.gemspec
.git-credentials
.git.php
.git
.git/COMMIT_EDITMSG
.git/config
.git/HEAD
.git/index
.git/info
.git/logs
.git/objects
.git/packed-refs
.git/refs
.git2
.gitattributes
.gitconfig
.github
.github/.dependabot
.github/dependabot.yml
.github/workflows/docker.yml
.gitignore
.gitignore~
.gitkeep
.gitlab-ci.yml
.gitlab-ci/.env
.gitlab/route-map.yml
.gitmodules
.golangci.yml
.gradle
.gradle/gradle.properties
.graphqlrc.js
.graphqlrc.json
.graphqlrc.toml
.graphqlrc.yaml
.graphqlrc.yml
.graphqlrc
.hash
.hgrc
.history
.hta
.htaccess-dev
.htaccess-old
.htaccess.bak
.htaccess.bak1
.htaccess.old
.htaccess.save
.htaccess.txt
.htaccess
.htaccess~
.htaccess2
.htaccessbak
.htaccessold
.htpasswd.bak
.htpasswd
.htpasswds
.htpasswrd
.httpd.conf
.htusers
.id
.ignore
.install
.irb_history
.irb-history
.irbrc
.key
.keys.yml
.keys
.kube/config
.local
.log.txt
.log
.login
.maintenance
.mypy_cache
.mysql_history
.next
.nodemonignore
.npm
.npmignore
.npmrc
.nuget
.nuxt
.nvmrc
.old
.pass
.passwd
.password
.passwords
.pgpass
.php
.phpmyadmin
.pid
.pip
.prod
.production
.profile
.project-settings.yml
.project
.pryrc
.psqlrc
.pwd.lock
.pwd
.python_history
.rbenv
.remote-sync.json
.remote
.repl_history
.rhosts
.root
.rsync_cache
.rvmrc
.s3cfg
.secret
.secrets
.serverless
.session
.sessions
.settings
.sh_history
.sh
.shrc
.sql
.sqlite_history
.sqlite
.sqlite3
.src
.ssh
.ssh/authorized_keys
.ssh/config
.ssh/google_compute_engine.pub
.ssh/google_compute_engine
.ssh/id_dsa.pub
.ssh/id_dsa
.ssh/id_rsa.pub
.ssh/id_rsa
.ssh/known_hosts
.subversion
.svn
.sync.yml
.tar.gz
.tar
.temp
.tmp
.trash
.txt
.user.ini
.users
.vagrant
.venv
.version
.vimrc
.vscode
.vscode/ftp-sync.json
.vscode/launch.json
.vscode/sftp.json
.vscode/tasks.json
.well-known
.well-known/acme-challenge
.well-known/host-meta.json
.well-known/host-meta
.well-known/oauth-authorization-server
.well-known/openpgpkey
.well-known/pki-validation
.well-known/reload-config
.wget-hsts
.workspace
.wp-cli/config.yml
.xml
.yarnrc
.zcompdump
.zfs
.zip
.zprofile
.zsh_history
.zsh
.zshenv
.zshrc
\\
\\\\
&
%20..
%20admin%20
%2e/admin
%2e%2e//google.com
%3f
%61dmin
%75%73%65%72%2e%70%68%70
%c0
%ff
~
0.html
0.log
0.php
0.sql.tar.gz
0.sql
0.tar.gz
0.tar
0.txt
0.zip
0
01.sql
1-to-2.sql
1.0
1.htaccess
1.htpasswd
1.log
1.php
1.sql.tar.gz
1.sql
1.tar.gz
1.tar
1.txt
1.zip
1
10.php
10.txt
10
11.txt
11
123.txt
123
1234.txt
1234
12345.txt
12345
2-to-3.sql
2.0
2.php
2.sql
2.tar.gz
2.txt
2.zip
2
2020.sql.tar.gz
2020.sql
2020.tar.gz
2020.tar
2020.zip
2020/wp-login.php
2021.sql.tar.gz
2021.sql
2021.tar.gz
2021.tar
2021.zip
2021/wp-login.php
2022.sql.tar.gz
2022.sql
2022.tar.gz
2022.tar
2022.zip
2022/wp-login.php
2023.sql.tar.gz
2023.sql
2023.tar.gz
2023.tar
2023.zip
2023/wp-login.php
3
360
7.php
7.txt
777.php
8.php
8.txt
a.crt
a.htaccess
a.out
a.php
a.sql
a.txt
a
a%5c.aspx
a%5c.php
access.log
access.txt
account.js
account
account/create
account/log-in
account/login
account/new
account/register
account/settings
account/sign-in
account/sign-up
account/signin
account/signup
accounts.sql
accounts.txt
accounts
acme-challenge
acme
actions
activate.sh
activate
actuator
actuator/caches
actuator/dump
actuator/env
actuator/events
actuator/health
actuator/info
actuator/sessions
actuator/status
actuators
actuators/dump
actuators/health
actuators/shutdown
add
addon
addons
adduser
admin.conf
admin.js
admin.passwd
admin.php
admin.txt
ADMIN.txt
admin.zip
admin
ADMIN
admin/../admin
admin/.env
admin/.htaccess
admin/~
admin/config.php
admin/config
admin/index.php
admin/upload.php
admin%20
admin2
administration
after.sh
alter.sql
ansible.cfg
ansible
apache-ssl
apache.conf
apache
api-doc
api-doc/swagger.json
api-docs
api-docs/swagger.json
api.log
api.php
api
api/.env
api/config.js
api/config
api/doc
api/doc/swagger.json
api/docs
api/docs/swagger.json
api/env
api/error_log
api/search
api/user
api/users
api/v1
api/v2
api/v3
api/whoami
apidoc
apidoc/swagger.json
apidocs
apidocs/swagger.json
apiserver-key.pem
apiserver.crt
apiserver.key
apiserver.pem
app.config
app.env
app.js
app.json
app.log
app.php
app.sql.tar.gz
app.sql
app.tar.gz
app.yaml
app.yml
app.zip
app
app/.env
app/.htaccess
app/autoload.php
app/cache
app/composer.json
app/composer.lock
app/config.js
app/config
app/config/config.yml
app/config/database.yml
app/data
app/dev
app/docs
app/log
app/logs
app/models
app/resources
app/src
app/storage
app/tmp
app/vendor
appenv
application.conf
application.log
application.sql.tar.gz
application.sql
application.tar.gz
application.zip
application
application/cache
application/logs
applications
apps.json
apps
apps/test
appsettings.json
apt.sh
archive.php
archive.sh
archive.sql
archive.tar.gz
archive.tar
archive.zip
archive
archives.bak
archives
assets
assets/.env
assets/app.js
assets/application.js
assets/npm-debug.log
attachments
attachments/.htaccess
attachments/index.html
audio
audit.log
auth.php
auth.rb
auth
auth/login
authenticate.php
authenticate
authorize
authorized_keys
auto.log
auto.sh
autobackup.sh
autobuild.sh
autoclean.sh
autoconfig.json
autoconfig.sh
autogen.sh
autoload.php
autorun.sh
aws
azure-pipelines.yml
b.php
b.sql
b.tar.gz
b.txt
b
back.php
back.sql.tar.gz
back.sql
back.tar.gz
back.txt
back.zip
back
backdoor.php
backdoor
backend.php
backend.sql
backend.txt
backend.zip
backend
backend/.env
backup_db.sql
backup.cfg
backup.db
backup.htpasswd
backup.old
backup.sh
backup.sql.tar.gz
backup.sql
backup.sqlite
backup.sqlite3
backup.tar.gz
backup.tar
backup.txt
backup.wp-config.php
backup.zip
backup
backup/.env
backup/data.sql
backup/database.sql
backup/db.sql
backup/dump.sql
backup/mysql.sql
backup/wordpress.sql
backup0
backup1
backup2
backup2019.sql
backup2020.sql
backup2021.sql
backup2022.sql
backup2023.sql
backup2024.sql
backupconfig.php
backups.old
backups.sql
backups.tar.gz
backups.tar
backups.zip
backups
backups/data.sql
backups/database.sql
backups/db_backup.sql
backups/db.sql
backups/dbdump.sql
backups/dump.sql
backups/mysql.sql
backups/site.sql
backups/wordpress.sql
bak.sql.tar.gz
bak.sql
bak.tar.gz
bak.zip
bak
base.sh
base.sql
basic_auth.csv
bd.sql
before_install.sh
before_script.sh
before.sh
beta
billing
bin.json
bin.xml
bin
bin/console
bin/libs
bkp.sql.tar.gz
bkp.sql
bkp.tar.gz
bkp.txt
bkp.zip
bkp
bkup
blobs.sql
blocks.php
blog/.env
boot.sh
bot.txt
bower.json
bugs
bugtracker
build_all.sh
build-all.sh
build-dist.sh
build.log
build.sh
build
build/.env
buildall.sh
builder.sh
bundle.sh
c.txt
ca-certificates.crt
ca-key.pem
ca.crt
ca.key
ca.pem
cache
cache/index.html
cacti.sql
cacti
calendar.sql
cart
categories.sql
cc.php
cert
certs
cfg.php
cfg
cgi-bin
cgi-bin/index.html
cgi-bin/info.php
cgi-bin/login.php
cgi.php
cgi
CHANGELOG.log
CHANGELOG.md
CHANGELOG.txt
CHANGELOG
check_for_upgrade.sh
check-all.sh
check-config.sh
check.php
check.sh
checkout
chef.sh
Cheffile
ci_build.sh
ci.sh
ci
ci/build.sh
ci/pipeline.yml
class
classes.php
clean.sh
clean.sql.tar.gz
clean.sql
clean.tar.gz
clean.zip
cleanup.log
cleanup.sh
clear.sh
clear.sql
clear
cli
client.ovpn
client.sh
client.sql.tar.gz
client.sql
client.tar.gz
client.zip
client
client/.env
clients.sql.tar.gz
clients.sql
clients.sqlite
clients.tar.gz
clients.zip
clients
clone.sh
cloud-config.txt
cloud-provider.yaml
cloud-provider.yml
cloud.txt
cloud
cmd.php
cmd.sh
cmd
cms.sql
cni-conf.json
co
cobalt
code.php
code
codeception.yml
codes
com
command.php
command
comment
comments.sql
comments
common.js
common.php
common
company.sql
component.php
components.php
components
composer.json
composer.lock
composer.php
conf.php
conf
conf/.env
config.inc.php
config.js
config.json
config.local
config.log
config.php
config.sh
config.txt
config.xml
config.yaml
config.yml
config
config/.env
config/app.php
config/app.yml
config/aws.yml
config/database.yml
config/db.js
config/db.json
config/db.yml
config/default.json
config/default.yml
config/deploy.sh
config/routes.php
config/s3.json
config/s3.yaml
config/s3.yml
config/secrets.json
config/secrets.yml
config/services.json
config/services.php
config/services.yml
config/xml
configs
configuration.php
configuration
console.log
console
construct
container
containers
content.json
content.php
content.sql
content
CONTRIBUTORS
controller/config
controllers.php
controllers
controlpanel
controls
convert.sh
cookie.php
cookie
cookies
copy.sh
copy.sql
core.js
core.php
core
cpanel
create_db.sql
create_tables.sql
create.sh
create.sql
create
credentials.csv
credentials.json
credentials.txt
credentials
cron.log
cron.php
cron.sh
cron
csv
custom
customer
customers.csv
customers.log
customers.sql
customers.sqlite
customers.txt
customers
dashboard.php
dashboard
data.db
data.php
data.sql.tar.gz
data.sql
data.sqlite
data.sqlite3
data.tar.gz
data.txt
data.zip
data
data/.env
data/backup
data/backups