-
Notifications
You must be signed in to change notification settings - Fork 23.9k
/
Common-PHP-Filenames.txt
5163 lines (5163 loc) · 73.9 KB
/
Common-PHP-Filenames.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
default.php
index.php
invocactf.php
view.html.php
helper.php
controller.php
frontend.php
backend.php
colorConfig.ini.php
config.php
router.php
view.php
search.php
user.php
menu.php
admin.php
adminlogin.php
addadminuser.php
main.php
header.php
form.php
modules.php
installer.php
footer.php
component.php
navigation.php
xoops_version.php
functions.php
login.php
core.write_file.php
core.rmdir.php
core.rm_auto.php
core.php
core.is_trusted.php
core.is_secure.php
category.php
modifier.upper.php
modifier.strip.php
modifier.spacify.php
modifier.replace.php
modifier.nl2br.php
modifier.lower.php
modifier.indent.php
modifier.escape.php
modifier.default.php
modifier.cat.php
function.popup.php
function.math.php
function.mailto.php
function.fetch.php
function.eval.php
function.debug.php
function.cycle.php
function.counter.php
compiler.assign.php
block.textformat.php
Smarty.class.php
style.php
vars.php
comment.php
newsletter.php
media.php
blockStyle.php
publisher.php
default_items.php
template.php
default_item.php
index2.php
configuration.php
image.php
categories.php
contact.php
content.php
blog_item.php
cache.php
block.php
upload.php
pagination.php
guestbook.php
poll.php
mailmanweb.php
joomla.php
install.php
file.php
articleweb.php
blog.php
mail.php
application.php
PEAR.php
register.php
module.php
list.php
error.php
database.php
banner.php
archive.php
about.php
update.php
languages.php
default_form.php
comments.php
CHANGELOG.php
weblinks.php
version.php
upgrade.php
LICENSE.php
view.feed.php
specials.php
sidebar.php
setup.php
phpinfo.php
mysql.php
modinfo.php
index.class.php
connector.php
config.inc.php
banners.php
admin.class.php
util.php
users.php
profile.php
plugin.php
help.php
example.php
client.php
calendar.php
xml.php
sql.php
news.php
import.php
fckeditor.php
english.php
csshelpers.php
class.smtp.php
class.phpmailer.php
blog_links.php
COPYRIGHT.php
testTypo.php
testForms.php
item.php
framework.php
defines.php
default_message.php
database_changes.php
customers.php
currencies.php
common.php
CREDITS.php
weblink.php
section.php
pagebreak.php
page.php
message.php
legacy.php
io.php
geshi.php
event.php
edit.php
LICENSES.php
INSTALL.php
File.php
orders.php
language.php
faq.php
commands.php
basexml.php
zones.php
xmlrpc.php
smtp.php
session.php
reviews.php
logout.php
info.php
index3.php
html.php
element.php
confirm.php
auth.php
whos_online.php
toolbar.php
single.php
plugins.php
ini.php
en_US.php
email.php
backup.php
article.php
xml_domit_rss.php
widgets.php
test.php
spellchecker.php
posting.php
pathway.php
pageNavigation.php
nl_NL.php
newsfeeds.php
newsfeed.php
manufacturers.php
manager.php
mailto.php
log.php
it_IT.php
frontpage.php
de_DE.php
cs_CZ.php
countries.php
comment_post.php
comment_edit.php
comment_delete.php
cms.php
view.raw.php
vcard.php
upgrade_config.php
theme.php
text.php
tax_rates.php
tax_classes.php
stats_customers.php
server_info.php
ru_RU.php
packingslip.php
orders_status.php
none.php
newsletters.php
nb_NO.php
link.php
invoice.php
information.php
getimage.php
geo_zones.php
ftp.php
export.php
events.php
editor_registry.php
editor.php
cpanel.php
comment_reply.php
comment_new.php
banner_manager.php
Length.php
vrtour.php
sv_SE.php
submit.php
sessions.php
popup.php
php.php
panorama.php
mysqli.php
museum.php
mod_login.php
mod_footer.php
mod_feed.php
memberlist.php
lt_LT.php
ldap.php
index_def.php
index.php.initial
images.php
home.php
general.php
gallery.php
fr_FR.php
folder.php
fi_FI.php
fastsearch.php.save
fastsearch.php
exhibits.php
exhibitions.php
exhibitdetails.php
events_photo.php
download.php
dig_exhib.php
da_DK.php
collections.php
captcha.php
about1.php
Thumbnail.php
Text.php
Tar.php
3d_exhibits1.php
3d_exhibits.php
3D_preview.php
xcache.php
viewonline.php
vert.php
uploadbusplan.php
tree.php
thumbs.php
storage.php
sitemap.php
shopping_cart.php
settings.php
search.inc.php
sampleposteddata.php
sample04.php
sample03.php
sample02.php
sample01.php
rss.php
route.php
post.php
object.php
mod_stats.php
misc.php
memcache.php
loader.php
ja_JP.php
hu_HU.php
horiz.php
forums.php
file_manager.php
feed.php
fckeditor_php5.php
fckeditor_php4.php
fantversion.php
et_EE.php
es_ES.php
define_language.php
default_links.php
default_error.php
default_address.php
author.php
apc.php
_item.php
URI.php
JSON.php
404.php
workshop1.php
viewtopic.php
viewforum.php
uninstall.php
tinymce.php
textarea.php
tcpdf.php
tag.php
strlen.php
sponsors.php
sendmail.php
searchform.php
schinese_utf8.php
schinese.php
profiler.php
pdf.php
menuleft.php
javascript.php
history.php
eaccelerator.php
default_results.php
default_logout.php
default_login.php
default_graph.php
cron.php
copy.php
complete.php
case.php
bannerclient.php
Translate.php
PEAR5.php
Img.php
zip.php
workshop.php
vcard.class.php
timetable.php
timer.php
themes.php
temp.php
table.php
string.php
simplepie.php
setting.ini.php
server.php
random.php
pressrelease.php
pl_PL.php
phpcompat.php
password.php
order.php
notification.php
move.php
modcp.php
messages.php
mamboxml.php
mambo.php
loop.php
logoff.php
inputfilter.php
index.php.bak
head.php
groupcp.php
global.php
german.php
gacl_api.class.php
gacl.class.php
factory.php
en.php
edituser.php
downloads.php
default_raw.php
database.mysqli.php
contacts.php
compat.php
behavior.php
awards.php
admin_header.php
Tidy.php
Server.php
Name.php
HTML_toolbar.php
Files.php
Default.php
Common.php
zip.lib.php
xstandard.php
xmlrpcs.php
xmlrpc_wrappers.php
xml_saxy_shared.php
xml_saxy_parser.php
xml_domit_xpath.php
xml_domit_shared.php
xml_domit_parser.php
xml_domit_doctor.php
xml_domit_cache.php
wrapper.php
workshop1.php.orig
winners3.php
winners2.php
winners1.php
winners.php
wic.php
wia.php
vote.php
utf8.php
uploadfile.php
uploader.php
uploaddogs.php
uploadbplan.php
unicode_data.php
ucwords.php
ucfirst.php
trim.php
tools.php
testingheader.php
templates.php
tcpdf_config.php
substr_replace.php
strspn.php
strrev.php
stristr.php
strcspn.php
strcasecmp.php
str_split.php
str_ireplace.php
status.php3
sql.php3
shipping.php
sessionWrite.php
sessionRead.php
select.php
sef.php
sections.php
resources.php
reset.php
remember.php
register_result.php
register_orig.php
register8.php
register7.php
register6.php
register5.php
register4.php
register3.php
register2.php
register1.php
readmore.php
rate.php
radio.php
query.php
print.php
popup_image.php
phpmailer.php
php_text_cache.php
php_http_proxy.php
path.php
patTemplate.php
patErrorManager.php
patError.php
pagenavigation.php
openid.php
offline.php
non_competitors.php
model.php
mod_wrapper.php
mod_whosonline.php
mod_syndicate.php
mod_sections.php
mod_search.php
mod_random_image.php
mod_poll.php
mod_newsflash.php
mod_mostread.php
mod_mainmenu.php
mod_latestnews.php
mod_breadcrumbs.php
mod_banners.php
mod_archive.php
mime.php
methods.php
method.upgrade.php
method.install.php
menuleftbackup.php
mentors.php
mainfile.php
loadmodule.php
load.php
lib.php
leaflet.php
launch.php
judging.php
invitation.php
indexbackup.php
images2.php
images1.php
html4strict.php
hidden.php
header.inc.php
groups.php
group.php
gmail.php
gacl_api.php
gacl.php
fsbb.php
freesansi.php
freesansbi.php
freesansb.php
freesans.php
feedcreator.php
emailcloak.php
eligible.php
editsummary.php
diff.php
details.php
deprecated.php
deletefilebp.php
deletefile.php
delete.php
default_folder.php
debug.php
date.php
cyec_2002.php
css.php
cp_functions.php
counter.php
consumer.php
constants.php
committee.php
button.php
blogger.php
beginedit8.php
beginedit7.php
beginedit6.php
beginedit5.php
beginedit4.php
beginedit3.php
beginedit2.php
beginedit.php
beginbusupload.php
backlink.php
april4videos.php
announcement1.php
album.php
action.default.php
SafeObject.php
Lang.php
HTMLDefinition.php
Gzip.php
Function.php
Font.php
Filter.php
Composite.php
Color.php
CSSDefinition.php
Border.php
April04_schedule.php
xoopsformloader.php
validation.php
validate.php
users.class.php
usergroup.php
tohtml.inc.php
timezones.php
thankform.php
tell_a_friend.php
taxonomy.php
tags.php
streams.php
spanish.php
show_intro.php
show_courses.php
rvscronjobctrl.php
rvform.php
pt_BR.php
proj_details.php
proj_cord.php
profiles.php
products_new.php
privmsg.php
privacy.php
phocagallery.php
permissions.php
pclzip.lib.php
paypal.php
parameters.php
page_info.php
options.php
new.php
mainframe.php
mailform.php
logger.php
localization.php
locale.php
links.php
k2.php
itransact.php
index.php.1317078588
iconlookup.php
http.php
functions.inc.php
french.php
format.php
footer.inc.php
filelist.php
eng.php
editorFrame.php
delete_record.php
default_image.php
default_ftp.php
db.php
database.inc.php
crypt.inc.php
create_account.php
course_structure.php
config_site.php
column_left.php
classes.php
browser.php
bookmark.php
attachments.php
attachment.php
adodb.inc.php
account.php
Yadis.php
XRIRes.php
XRI.php
XRDS.php
XML.php
Transform.php
Table.php
Required.php
Renderer.php
RenameFolder.php
RenameFile.php
Reader.php
Proprietary.php
PlainHTTPFetcher.php
ParseHTML.php
Object.php
NetPBM.php
Misc.php
Memory.php
Manager.php
ImageManager.php
ImageEditor.php
Image.php
IM.php
HTTPFetcher.php
GetFolders.php
GD.php
FileUpload.php
Extension.php
Exception.php
Empty.php
Email.php
DeleteFolder.php
DeleteFile.php
DB.php
CreateFolder.php
ConfigSchema.php
Background.php
a.php
b.php
c.php
d.php
e.php
f.php
g.php
h.php
i.php
j.php
k.php
l.php
m.php
n.php
o.php
p.php
q.php
r.php
s.php
t.php
u.php
v.php
w.php
x.php
y.php
z.php
A.php
B.php
C.php
D.php
E.php
F.php
G.php
H.php
I.php
J.php
K.php
L.php
M.php
N.php
O.php
P.php
Q.php
R.php
S.php
T.php
U.php
V.php
W.php
X.php
Y.php
Z.php
wish_list.php
widget.php
viewpmsg.php
view.pdf.php
version_compare.php
var_export.php
validations.php
utility.php
userinfo.php
user_password.php
uri.php
upimages.php
unicode.php
ucp.php
type.php
toolbar.trash.php
toolbar.sections.php
toolbar.modules.php
toolbar.messages.php
toolbar.massmail.php
toolbar.cpanel.php
toolbar.content.php
toolbar.contact.php
toolbar.config.php
toolbar.checkin.php
toolbar.cache.php
toolbar.admin.php
tiny_mce_gzip.php
thumbs_up.php
thumbs_img.php
thumbs_folder.php
thumbs_doc.php
theme_right.css.php
tbl_select.php
tbl_replace.php
tbl_printview.php
tbl_move_copy.php
tbl_indexes.php
tbl_create.php
tbl_change.php
tbl_alter.php
tbl_addfield.php
tar.php
sysinfo_system.php
sysinfo_phpinfo.php
sysinfo_config.php
statuses.php
standard.php
ssl_check.php
spacer.php
slideshow.php
sk_SK.php
site.php
simplexml.php
simplecrypt.php
shortcodes.php
shop.php
separator.php
sample.php
rvssetup.php
rvsindex.php
rvscommonfunc.php
response.php
resize.php
request.php
renderer.php
remind.php
registry.php
recordset.php
readpmsg.php
raw.php
quickFormTest.php
prune.php
product_info.php
preferences.php
portal.php
pmlite.php
pimages.php
php51x.php
php50x.php
pconfig.inc.php
pcltrace.lib.php
pcltar.lib.php
pclerror.lib.php
patterns.php
patfactory.php
password_funcs.php
parameter.php
pane.php
pagerTest.php
output.php
online.php
offset.php
observer.php
observable.php
object_info.php
notification.inc.php
network.php
native.php
mtupgrade.php
ms.php
mod_unread.php
mod_toolbar.php
mod_title.php
mod_submenu.php
mod_status.php
mod_quickicon.php
mod_popular.php
mod_online.php
mod_menu.php
mod_logged.php
mod_latest.php
method.uninstall.php
meta.php
message_stack.php
menutypes.php
menutype.php
menuitem.php
menubar.php
menu.inc.php
mcp.php
manager_old.php
mambothandler.php
mambot.php
lv.php
lostpass.php
layout.inc.php
layout.css.php
ja_vars.php
ja_templatetools.php
items.php
is_scalar.php
is_callable.php
is_a.php
inline.php
init.php
info.inc.php
index.inc.php
imagelist.php
imagelibrary.php
image_manager.php
imageTest.php
ilink.php
icon.php
html_output.php
helpsites.php
gzip.php
groupperm.php
grid.php
fpdf.php
folderlist.php
filteroutput.php
filterinput.php
filenames.php
featured.php
extension.php
exception.php
elements.php
el_GR.php
editors.php
eAccelerator.php
dutch.php
document.php
dispatcher.php
directory.php
details_up.php
details_img.php
details_folder.php
details_doc.php
default_folders.php
dbtable.php
db_printview.php
db_create.php
database_tables.php
custom.php
cookie_usage.php
contact_us.php
conn.php
configure.php
config_system.php
config_session.php
config_server.php
config_seo.php
config_metadata.php
config_mail.php
config_locale.php
config_ftp.php
config_debug.php
config_database.php
config_cache.php
config.inc.bak.php
conditions.php
components.php
compatibility.php
commonhtml.php
common.php.bak
checkout_success.php
changelog.php
cc.php
catalog.php
callback.php
cache.class.php
ca_ES.php
bzip2.php
buffer.php
box.php
bad.php
authorization.php
authentication.php
atom.php
ascii.php
arrayhelper.php
array_key_exists.php
arogroup.php
aro.php
application_top.php
advanced_search.php
adminmenus.php
administrators.php
admin.trash.php
admin.trash.html.php
admin.templates.php
admin.sections.php
admin.newsfeeds.php
admin.modules.php
admin.messages.php
admin.menus.php
admin.massmail.php
admin.login.php
admin.languages.php
admin.installer.php
admin.frontpage.php
admin.cpanel.php
admin.content.php
admin.contact.php
admin.config.php
admin.checkin.php
admin.categories.php
admin.cache.php
admin.cache.html.php
admin.banners.php
admin.admin.php
admin.admin.html.php
address_book.php
account_password.php
account_history.php
account_edit.php
XUL.php
Wordwrapper.php
URINorm.php
TrustRoot.php
Truncate.php
Time.php
TemplateCache.php
Surround.php
StripWhitespace.php
StripComments.php
Strip.php
String.php
Stat.php