forked from milo2012/pathbrute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exploitdb_php.txt
executable file
·16065 lines (16065 loc) · 451 KB
/
exploitdb_php.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
/index.php/admin/filemanager/sa/getZipFile?path=/../../../../../../../etc/passwd
/limesurvey/index.php
/limesurvey/index.php/admin/surveysgroups/sa/create
/net_tools.php
/image/image.php
/include/views/graphs/graphStatus/displayServiceStatus.php
/lepton/modules/wysiwyg/save.php
/images/gmapfp/file.php
/english/home.php
/gmapfp/file.php
/com_hdwplayer/models/search.php
/lib/crud/search.crud.php
/mnemo/data.php
/admin/imagepaster/image-upload.php
/forget
/include/configuration.php
/admin/manage-settings.php
/save-settings.php
/admin/employees/add_employee
/wp-admin/admin.php?page=cpabc_appointments.php
/turba/add.php
/trean/add.php
/commands.inc.php
/lib/crud/userprocess.php
/services/portal/edit.php
/lib/ajaxHandlers/ajaxAddTemplate.php
/nagiosxi/admin/monitoringplugins.php
/nagiosxi/includes/components/profile/profile.php
/cart_edit.php
/common/lib.php
/modules/agenda/myagenda.php
/modules/group/group.php
/election/admin/ajax/op_kandidat.php
/election/admin/kandidat.php
/amssplus_4_31_install/amssplus/modules/mail/main/maildetail.php
/qdPM/index.php/login
/plus/deluser.php
/iwp-client/readme.txt
/eleve_cours.php
/office_admin/?pid=42&action=addadmin
/admin/user/index.php
/admin/user/photos/exp.php
/eonapi/getApiKey
/eonapi/createEonUser
/eonapi/deleteEonUser
/lilac/autodiscovery.php
/laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd
/graph_realtime.php?action=init
/admin/user/users/create
/graph_realtime.php
/info/about.php
/rest/v1/curo/
/cardgate/payment/callback
/Candid/index.php
/innoobec/index.php
/graph_realtime.php
/modules/mail/main/maildetail.php
/atutor/mods/_core/users/admin_delete.php
/virtual/download.php
/include/libs/nusoap.php
/soplanning/www/projets.php
/soplanning/www/tmpubhkt.php
/soplanning/www/export_ical.php
/soplanning/www/process/xajax_server.php
/wp-content/plugins/tutor/classes/Quiz.php
/wp-content/plugins/wordfence/lib/wordfenceClass.php
/class-admin-upgrade.php
/instructors.php
/index.php?p=/dashboard/settings/branding
/viewtestdrive.php
/find_matches
/lilac/autodiscovery.php
/admin/user/controller.php
/objects/playlistsFromUser.json.php
/wbm/index.php
/wbm/login.php
/wbm/configtools.php
/centreon/main.get.php
/webmail/
/rest/api/latest/groupuserpicker
/umotion/modules/system/externalframe.php?context=configuration
/umotion/modules/system/update_module.php
/umotion/modules/system/user_login.php
/plugins/error/404.php
/lib/ajaxHandlers/ajaxArchiveFiles.php
/lib/crud/userprocess.php
/cupseasylive/userdelete.php
/cupseasylive/passwordmychange.php
/webtareas/general/home.php
/webtareas/includes/general_serv.php
/edit_book.php
/ruko/index.php
/store/bootstrap/img
/wp-admin/update.php
/wp-admin/plugin-install.php
/wp-content/plugins/shell/shell.php
/admin/user/add
/admin_add.php
/Option/languageOptions.php
/hospital/hospital/hms/doctor/search.php
/hospital/hospital/hms/doctor/add-patient.php
/hospital/hospital/hms/doctor/view-patient.php
/hospital/hospital/hms/admin/change-password.php
/hospital/hospital/hms/admin/doctor-specilization.php
/template/header.php
/functions/database_functions.php
/admin/uploadimg/
/admin/gallery.php
/users/dashboard.php
/users/complaintdocs/command.php
/dfsms/add-category.php
/dfsms/index.php
/elaniin/login.php
/my-profile.php
/onlinecourse/index.php
/studentphoto/command.php
/onlinecourse/my-profile.php
/netting/islem2.php
/onlinecourse/studentphoto/simple.php
/BloodX-master/login.php
/hospital/hospital/hms/doctor/search.php
/hospital/hospital/hms/doctor/add-patient.php
/hospital/hospital/hms/doctor/view-patient.php
/hospital/hospital/hms/admin/change-password.php
/hospital/hospital/hms/admin/doctor-specilization.php
/admin/productimages/
/hms/admin/dashboard.php
/admin/insert-product.php
/hms/admin/change-password.php
/hms/admin/index.php
/homeautomation_v3_3_2/?page=conf-systemplugins
/homeautomation_v3_3_2/?page=conf-usercontrol
/properties/authentication/UserManager.php
/properties/authentication/UserEdit.php
/raspberry/include/checklogin.php
/modules/login/login.module.php
/changeparams.php
/antitheft.php
/restart.php
/bridge.php
/elearning-script-master/login.php
/plus/pass_reset.php?L=english&pmc_username="><script>alert('xss')</script>
/rss/rss_news.php
/rss/rss_upcoming.php
/ona/login.php
/accessories
/webclient.php
/inovicing/app/admin/pageEditGroup.php
/wp-json/wp/v2/users
/inovicing/app/admin/pageEditGroup.php
/app/index.php
/app/detaf.php
/app/command.php
/app/datasend.php
/refresh.php
/index.php/core/ajax/share.php
/clinic/disease_symptoms_view.php
/operator_panel/exec.php
/user_settings/user_dashboard.php
/admin/new-content/index.php
/admin/ajax/upload-images
/admin/dashboard/index.php
/tematres/vocab/admin.php
/badging/bg/webshell.php
/badging/badge_print_v0.php
/badging/badge_template_v0.php
/badging/badge_layout_new_v0.php
/badging/badge_template_print.php
/fudforum/liquidsky.php
/fudforum/adm/admbrowse.php
/fudforum/adm/admuser.php
/cbas/index.php?m=servers&a=start_pulling&id=1
/badging/badge_template_v0.php?layout=<script>confirm('XSS')</script>
/cbas/index.php?m=auth&a=login
/card_scan.php
/get_router_show.php
/add_router_operation.php
/includes/add_comment_sql.php
/views/single_post.php
/addEvent.php
/upload/exec.php
/foods-exec.php
/zabbix/charts.php
/zabbix/screens.php
/zabbix/report2.php
/zabbix/overview.php
/zabbix/srv_status.php
/zabbix/toptriggers.php
/zabbix/hostinventories.php
/zabbix/hostinventoriesoverview.php
/zabbix/zabbix.php
/osm/report/
/osm/map.php
/zabbix.php
/labcollector/html/login.php
/labcollector/html/retrieve_password.php
/index.php?routestring=ajax/render/widget_php
/index.php?routestring=ajax/render/widget_php
/app/admin/custom-fields/filter-result.php
/product_info.php
/chamilo//main/auth/inscription.php
/chamilo/main/social/myfiles.php
/chamilo/main/inc/lib/elfinder/filemanager.php?&CKEditor=content&CKEditorFuncNum=0
/wp-admin/options.php
/admin/system_advanced.php?lang=en
/php/CreateEvent.php
/korisnikinfo.php
/college/principalcheck.php
/ticket/login.php
/ticket/cancel.php
/phpmyadmin/setup/index.php
/societe/card.php
/dolibarr/htdocs/societe/card.php
/dolibarr/htdocs/comm/action/card.php
/dolibarr/htdocs/comm/propal/card.php
/dolibarr/htdocs/categories/viewcat.php
/php/add-item.php
/app/services/services.php
/app/services/service_edit.php
/core/user_settings/user_dashboard.php
/wpdmpro/category-short-code/?orderby=publish_date
/wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc
/filethingy/ft2.php
/sentrifugo/index.php
/sentrifugo/index.php/employee/add
/sentrifugo/index.php/mydetails/documents
/sentrifugo/public/uploads/employeedocs/1565996140_5_shell.php
/install/checkConfiguration.php
/wp-admin/admin.php?page=woo_feed_manage_feed&link=%3E%3Cscript%3Ealert`zerodays.lol`;%3C/script%3E
/catalog.php?filename=../../../../../../../../../etc/passwd
/sqlitemanager/main.php
/wp-admin/options-general.php?page=wp-add-mime-types%2Fincludes%2Fadmin.php
/objects/userCreate.json.php
/models/customfields.php
/saveSettings.php
/server_side/scripts/server_processing.php
/homeedit.php?delincome=778
/models/ticket.php
/models/userfields.php
/gate.php
/ARMBot/upload.php
/news.php?slug=x
/user/files.php
/repository/repository_ajax.php?action=signin
/wp-content/plugins/wp-database-backup/readme.txt
/wp-admin/tools.php
/wp-admin/admin.php?page=simple_wp_membership&member_action=bulk
/proposals/create_proposal
/ovidentia/index.php?tg=delegat&idx=mem&id=1
/Encryption/Encrypter.php
/redcap/index.php
/redcap/Calendar/index.php
/redcap/DataQuality/index.php
/redcap/ProjectSetup/index.php
/redcap/Design/online_designer.php
/redcap/surveys/
/pingTest.php
/openDoor.php
/main.get.php
/tcpPortTest.php
/specialCard.php
/personalSetting.php
/include/configuration/configGenerate/xml/generateFiles.php
/nagiosql
/nagvis
/nagiosxi/includes/dashlets/rss_dashlet/magpierss/scripts/magpie_debug.php
/tbl_sql.php
/wp-admin/uploads/articulate_uploads/
/ulicms/admin/index.php
/ajax_output.php
/ProductNode.php
/webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini
/common/error.php
/userui/ticket.php
/adminui/oval_list.php
/adminui/oval_detail.php
/common/ajax_lookup_list.php
/filter/jmol/iframe.php
/filter/jmol/js/jsmol/php/jsmol.php
/app/controllers/LoginController.php
/app/controllers/EntityController.php
/admin/theme-edit.php
/surveys_submit.php
/iem/surveys_submit.php
/system/password.save.php
/system/ownpassword.save.php
/system/time.ntp.php
/smartdomuspad/modules/reporting/track_import_export.php
/pasthr/server.php/search?keyword=1901418
/index-pc.php
/Login/Login.php
/Card/Card_Edit_GetJson.php
/Permission/Insert_Permission.php
/Permission/Get_Permission_From_DB.php
/modules/patch/gerar_pdf.php?cid=
/chat.ghp?username=1&password=&room=1&sex=1
/body2.ghp?username=1&password=&room=1
/ads.inc.php
/admin-post.php
/index.php?option=com_ariquiz&view=category&categoryId=SQLi&Itemid=236
/index.php?option=com_ariquiz&view=category&categoryId=6%27and%200%20union%20select%201,2,3--%20-&Itemid=236
/humhub-1.3.12/protected/vendor/codeception/codeception/tests/data/app/view/index.php
/web/index.php?option=com_jifile&task=filesystem.download&filename=index.php
/WebPanel/server_side/scripts/server_processing.php
/WebPanel/server_side/scripts/server_processing.php?table=passwords&primary=password_id&clmns=a%3A6%3A%7Bi%3A0%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A11%3A%22server_time%22%3Bs%3A2%3A%22dt%22%3Bs%3A11%3A%22server_time%22%3B%7Di%3A1%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A7%3A%22pc_name%22%3Bs%3A2%3A%22dt%22%3Bs%3A7%3A%22pc_name%22%3B%7Di%3A2%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A6%3A%22client%22%3Bs%3A2%3A%22dt%22%3Bs%3A6%3A%22client%22%3B%7Di%3A3%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A4%3A%22host%22%3Bs%3A2%3A%22dt%22%3Bs%3A4%3A%22host%22%3B%7Di%3A4%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A8%3A%22username%22%3Bs%3A2%3A%22dt%22%3Bs%3A8%3A%22username%22%3B%7Di%3A5%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A3%3A%22pwd%22%3Bs%3A2%3A%22dt%22%3Bs%3A3%3A%22pwd%22%3B%7D%7D
/photos/images/WebPanel/server_side/scripts/server_processing.php?table=logs&primary=log_id&clmns=a%3A6%3A%7Bi%3A0%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A6%3A%22log_id%22%3Bs%3A2%3A%22dt%22%3Bs%3A6%3A%22log_id%22%3B%7Di%3A1%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A11%3A%22server_time%22%3Bs%3A2%3A%22dt%22%3Bs%3A11%3A%22server_time%22%3B%7Di%3A2%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A4%3A%22hwid%22%3Bs%3A2%3A%22dt%22%3Bs%3A4%3A%22hwid%22%3B%7Di%3A3%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A7%3A%22pc_name%22%3Bs%3A2%3A%22dt%22%3Bs%3A7%3A%22pc_name%22%3B%7Di%3A4%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A3%3A%22log%22%3Bs%3A2%3A%22dt%22%3Bs%3A3%3A%22log%22%3B%7Di%3A5%3Ba%3A2%3A%7Bs%3A2%3A%22db%22%3Bs%3A9%3A%22ip_addres%22%3Bs%3A2%3A%22dt%22%3Bs%3A9%3A%22ip_addres%22%3B%7D%7D
/upload/scp/users.php
/wp-admin/admin-ajax.php?action=/../../../../../../index
/ulicms/admin/inc/loginform.php
/?mobile=1&mp_idx=%22;$.getScript(%27//127.0.0.1/z%27);//
/core/modules/dashboard.php
/service/krashrpt.php
/wp-admin/admin-ajax.php?action=../../../../../index.php
/wp-admin/async-upload.php
/pages/crc_handler.php?method=profile&func=update
/pages/crc_handler.php?method=login
/pages/exec.php?exec_module=itop-config&exec_page=config.php&exec_env=production&c%5Bmenu%5D=ConfigEditor
/search-results.php?category=
/index.php?action=3&fm_current_dir=
/index.php?cat=1&exp=&shop=1
/PhreeBooksERP/index.php?&p=bizuno/image/manager&imgTarget=&imgMgrPath=&imgSearch=&imgAction=upload
/index.php?&p=bizuno/image/manager&imgTarget='+target+'&imgMgrPath='+path+'&imgSearch='+search+'&imgAction=
/index.php?option=com_advertisementboard&Itemid=132&task=show_rss_categories&catname=
/third_party/kcfinder/browse.php
/moduleinterface.php
/pages/ajax.render.php
/gallery.php?gallery_id=1
/haberarsiv.php?cid=1
/arama.php?T1=btnVote=G%C3%B6nder&ara=1
/uyelik.php
/yonetim/admingiris.php
/fonksiyonlar.php
/kelimeara
/datagetir.php
/yonetim/login.php
/modules/forums/post-new-submit.php
/modules/forums/forum-thread.php
/modules/pages/contact-submit.php
/placeto/admin/edit.php?page=key
/admin/production/login.php
/loginaction.php
/ad/addclick.php?&id=1
/simplesearch_results.php
/advsearch_results.php
/specialcase_results.php
/locational_results.php
/registration2.php
/articles/portalLogin.php
/laundry/index.php/admin/cloth_crud/create
/laundry/index.php/admin/customer_crud/create
/laundry/index.php/admin/employee_crud/new
/laundry/index.php/admin/expenses_crud/create
/laundry/index.php/admin/service_crud/create
/interface/registercustomer/onlineregsuccess.php?cn=</font><script>alert(1);</script><font>&result=
/interface/registercustomer/onlineregsuccess.php?cn=</font><script>alert(1);</script><font>&result=
/interface/registerreseller/onlineregfailure.php?cn=gar&result=</font><script>alert(1);</script><font>
/interface/registerclient/onlineregfailure.php?cn=gar&result=</font><script>alert(1);</script><font>
/interface/registercustomer/onlineregfailure.php?cn=gar&result=</font><script>alert(1);</script><font>
/app/fileupload_page.php?id=_id_&msg=v
/admin/moduleinterface.php
/uploads/images/shell.php
/question/question.php
/course/modedit.php
/mod/quiz/edit.php
/course/jumpto.php
/course.view.php
/quiz/view.php
/course/mod.php
/.view.php
/haproxy/haproxy_listeners_edit.php
/wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php
/gracemedia-media-player/templates/files/ajax_controller.php
/php/setup.php
/php/tiger_shell.php
/php/change_config.php
/admin/replayMsg.php
/php/SecSignal.php
/Web/dashboard.php
/Web/custom-favicon.php
/zzzphp/admin015/save.php
/Web/admin/manage_theme.php
/admin/add_account.php
/admin/delete_account.php?admin_id=1
/admin/edit_room.php
/ck_upload_handler.php
/index.php/show/news/1
/node/1?_format=hal_json
/rest/type/shortcut/default
/sitemgr/configuration/geography/language/language_file.php
/sitemgr/langcenter/language_file.php
/netflow/servlet/CReportPDFServlet
/find/assets/external/data_2.php
/assets/external/data_2.php
/external/data_2.php
/xampp/cds-fpdf.php
/sitemgr/login.php
/external/data.php
/xampp/cds.php
/location.php
/pages.php?title=privacy-policy&id=2
/pages.php?id=2%27%20AND%20(SELECT%204588%20FROM(SELECT%20COUNT(*),CONCAT(0x3a3a,user(),0x3a3a,database(),0x3a3a,version(),0x3a3a,FLOOR(RAND(0)*2))x%20FROM%20INFORMATION_SCHEMA.PLUGINS%20GROUP%20BY%20x)a)--%20-
/categorysearch.php?cateid=<scRiPt>alert(1)</ScrIpT>
/list-details.php?view
/CMSsite/post.php?post=1%20and%20(sleep(10))
/qdpm/index.php/users
/qdpm/index.php
/admin/index.php?module=tools-trashbin&action=threadrestore&tid=1
/assets/add/dns.php
/assets/edit/host.php
/assets/add/category.php
/assets/add/ssl-provider.php
/assets/add/ssl-provider-account.php
/lbadmin/config/changeip.php
/oscommerce/catalog/product_reviews_write.php?products_id=19&reviews_id=99999999/**/oR/**/7096077=7096077/**/aNd/**/7193=7193
/oscommerce/catalog/shopping_cart.php
/SuiteCRM/index.php?module=Users&action=DetailView&record=1
/tiki/vendor_extra/elfinder/php/connector.minimal.php
/interfaces_assign.php
/services_ntpd_gps.php
/firewall_rules_edit.php
/services_igmpproxy_edit.php
/diag_traceroute.php
/elfinder/php/connector.minimal.php
/wp-admin/edit.php?post_type=wd_ads_ads&export=export_csv&path=../wp-config.php
/admin/index.php?module=tools-ip_history_logs
/main/login.php
/cm/category.php
/main/spediens.php
/main/op-doku.php
/main/indexframe.php
/forgot-password.php
/modules/laboratory/labor.php
/modules/news/newscolumns.php
/modules/med_depot/medlager.php
/modules/news/headline-read.php
/client/download_pdf.php
/modules/fotolab/fotolab_pass.php
/modules/ambulatory/ambulatory.php
/modules/nursing/nursing-fastview.php
/modules/nursing/nursing-schnellsicht.php
/modules/nursing/nursing-patient-such-start.php
/index.php?m=admin&c=custom&a=themeexporthandle&theme_name=../../../etc/passwd
/php/save/savedescriptions.php?dashID=%2d%31%27%20%55%4e%49%4f%4e%20%53%45%4c%45%43%54%20%31%2c%32%2c%33%2c%34%2c%35%2c%36%2c%37%2c%38%2c%39%2c%28%53%45%4c%45%43%54%20%47%52%4f%55%50%5f%43%4f%4e%43%41%54%28%73%63%68%65%6d%61%5f%6e%61%6d%65%20%53%45%50%41%52%41%54%4f%52%20%30%78%33%63%36%32%37%32%33%65%29%20%46%52%4f%4d%20%49%4e%46%4f%52%4d%41%54%49%4f%4e%5f%53%43%48%45%4d%41%2e%53%43%48%45%4d%41%54%41%29%2c%31%31%2d%2d%20%2d
/index.php/framework-crud-updateaction?id=1%20%41%4e%44%28%53%45%4c%45%43%54%20%31+%46%52%4f%4d%20%28%53%45%4c%45%43%54%20%43%4f%55%4e%54%28%2a%29%2c%43%4f%4e%43%41%54%28%28%53%45%4c%45%43%54%28%53%45%4c%45%43%54%20%43%4f%4e%43%41%54%28%43%41%53%54%28%44%41%54%41%42%41%53%45%28%29%20AS+%43%48%41%52%29%2c%30%78%37%65%2c%30%78%34%39%36%38%37%33%36%31%36%65%35%33%36%35%36%65%36%33%36%31%36%65%29%29%20%46%52%4f%4d%20%49%4e%46%4f%52%4d%41%54%49%4f%4e%5f%53%43%48%45%4d%41%2e%54%41%42%4c%45%53%20%57%48%45%52%45%20%74%61%62%6c%65%5f%73%63%68%65%6d%61%3d%44%41%54%41%42%41%53%45%28%29%20%4c%49%4d%49%54%20%30%2c%31%29%2c%46%4c%4f%4f%52%28%52%41%4e%44%28%30%29%2a%32%29%29%78%20%46%52%4f%4d%20%49%4e%46%4f%52%4d%41%54%49%4f%4e%5f%53%43%48%45%4d%41%2e%54%41%42%4c%45%53%20%47%52%4f%55%50%20%42%59%20%78%29%61%29&crud=expense
/index.php/framework-crud-detailaction?crud=reserves&id=4+%41%4e%44%28%53%45%4c%45%43%54%20%31+%46%52%4f%4d%20%28%53%45%4c%45%43%54%20%43%4f%55%4e%54%28%2a%29%2c%43%4f%4e%43%41%54%28%28%53%45%4c%45%43%54%28%53%45%4c%45%43%54%20%43%4f%4e%43%41%54%28%43%41%53%54%28%44%41%54%41%42%41%53%45%28%29+%41%53%20%43%48%41%52%29%2c%30%78%37%65%2c%30%78%34%39%36%38%37%33%36%31%36%65%35%33%36%35%36%65%36%33%36%31%36%65%29%29%20%46%52%4f%4d%20%49%4e%46%4f%52%4d%41%54%49%4f%4e%5f%53%43%48%45%4d%41%2e%54%41%42%4c%45%53%20%57%48%45%52%45%20%74%61%62%6c%65%5f%73%63%68%65%6d%61%3d%44%41%54%41%42%41%53%45%28%29%20%4c%49%4d%49%54%20%30%2c%31%29%2c%46%4c%4f%4f%52%28%52%41%4e%44%28%30%29%2a%32%29%29%78%20%46%52%4f%4d%20%49%4e%46%4f%52%4d%41%54%49%4f%4e%5f%53%43%48%45%4d%41%2e%54%41%42%4c%45%53%20%47%52%4f%55%50%20%42%59%20%78%29%61%29&backTo=dashboard
/category/xxx%27%20%55%4e%49%4f%4e%20%53%45%4c%45%43%54%20%31%2c%43%4f%4e%43%41%54%5f%57%53%28%30%78%32%30%33%61%32%30%2c%55%53%45%52%28%29%2c%44%41%54%41%42%41%53%45%28%29%2c%56%45%52%53%49%4f%4e%28%29%29%2c%33%2c%34%2c%35%2c%36%2c%37%2c%38%2c%39%2c%31%30%2c%31%31%2c%31%32%2c%31%33%2c%31%34%2c%31%35%2c%31%36%2c%31%37%2c%31%38%2c%31%39%2c%32%30%2c%32%31%2c%32%32%2d%2d%20%2d
/php/photos/index.php
/php/profile/index.php
/cashbook.php
/includes/pdfstream.php
/scripts/vmhost.php
/scripts/vsethost.php
/fileman/php/download.php
/imp/login.php
/thinkphp/public/
/profile_detail.php
/assets/lib/front_ajax.php
/assets/lib/export_ajax.php
/dashboard/Patient/info.php
/_inc/bridges/php-local/index.php
/assets/lib/service_method_ajax.php
/dashboard/Patient/patientdetails.php
/add_widget.php
/login_check.php
/_inc/pos.php
/add_email.php
/index.php?route=property/category&filter_area=
/admin/invoice.php
/index.php?option=com_jpprojects&view=projects&tmpl=component&format=json
/index.php?route=job/jobdetail&job_id=%2d%39%31%27%20%55%4e%49%4f%4e%20%53%45%4c%45%43%54%20%31%2c%32%2c%33%2c%34%2c%35%2c%36%2c%37%2c%38%2c%39%2c%31%30%2c%31%31%2c%31%32%2c%31%33%2c%31%34%2c%31%35%2c%31%36%2c%31%37%2c%31%38%2c%31%39%2c%28%53%45%4c%45%43%54%20%47%52%4f%55%50%5f%43%4f%4e%43%41%54%28%74%61%62%6c%65%5f%6e%61%6d%65%20%53%45%50%41%52%41%54%4f%52%20%30%78%33%63%36%32%37%32%33%65%29%20%46%52%4f%4d+%49%4e%46%4f%52%4d%41%54%49%4f%4e%5f%53%43%48%45%4d%41%2e%54%41%42%4c%45%53%20%57%48%45%52%45%20%54%41%42%4c%45%5f%53%43%48%45%4d%41%3d%44%41%54%41%42%41%53%45%28%29%29%2c%32%31%2c%32%32%2d%2d%20%2d
/index.php?route=product/category&path=%33%33%5f%36%34%31%34%39%39%39%39%39%27%20%2f%2a%21%31%33%33%33%37%50%72%6f%63%65%44%75%72%65%2a%2f%20%41%6e%41%6c%79%73%65%20%28%65%78%74%72%61%63%74%76%61%6c%75%65%28%30%2c%63%6f%6e%63%61%74%28%30%78%32%37%2c%30%78%33%61%2c%40%40%76%65%72%73%69%6f%6e%29%29%2c%30%29%2d%2d%20%2d
/hucart_cn/adminsys/index.php?load=admins&act=edit_info&act_type=add
/events_edit.php
/shield/forgot.php
/modules/getdata.php
/lib/PHPMailer/class.smtp.php
/backoffice/forgot.php
/searchs?search=%45%66%65%27%20%2f%2a%21%31%31%31%31%31%55%4e%49%4f%4e%2a%2f%20%2f%2a%21%31%31%31%31%31%53%45%4c%45%43%54%2a%2f%20%31,%76%65%72%73%69%6f%6e%28%29,%33%2c%34%2c%35,%36%2c%37%2c%38%2c%39%2c%31%30,%31%31%2c%31%32%2c%31%33%2c%31%34%2c%31%35,%31%36%2c%31%37%2d%2d%20%2d&search_from=entries
/events_edit.php?id=%2d%32%33%36%27%20%2f%2a%21%31%31%31%31%31%55%4e%49%4f%4e%2a%2f%20%2f%2a%21%31111%31%53%45%4c%45%43%54%2a%2f%20%31%2c%32%2c%33%2c%76%65%72%73%69%6f%6e%28%29%2c%35%2c%36%2c%37%2c%38%2c%39%2d%2d%20%2d
/index_d.php
/restore.php
/conf/sql.php
/showfile.php
/mdwiki.php
/doli/htdocs/admin/dict.php
/file/php
/fileman/Uploads
/fileman/index.html
/fileman/php/upload.php
/fileman/php/copydir.php
/fileman/php/copyfile.php
/fileman/php/fileslist.php
/admin-panel-path/index.php?p=admin/actions/entries/save-entry
/wp-content/plugins/baggage-freight/upload-package.php
/frontaccounting/admin/attachments.php
/st/wstmart_v2.0.8_181212/index.php/admin/staffs/add.html
/admin/index.php
/ajax.php?page=include/ajax/delete_item_general&delete_item=1&name=delete_user&id=[ID])
/index.php?search_string=%27%3E%3Cscript%3Ealert(%27PoC%20CVE-2018-19828%27)%3C%2Fscript%3E
/index.php?module=users/login
/filemanager/ajax_calls.php?action=get_file&sub_action=edit&preview_mode=text
/filemanager/ajax_calls.php?action=copy_cut
/filemanager/execute.php?action=paste_clipboard
/filemanager/execute.php?action=delete_file
/filemanager/execute.php?action=delete_folder
/filemanager/ajax_calls.php?action=save_img
/reviews/action.php
/reviews/campaign_add.php
/reviews/uploads/264082phpinfo.php
/public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=system&vars[1][]=php%20-r%20'phpinfo();'
/wp-content/plugins/wp-autosuggest/autosuggest.php
/admin/action/add_city.php
/assets/add/registrar-accounts.php
/admin/modules/user/controller.php
/filemanager/execute.php
/filemanager/upload.php
/category.php
/login.php?referer=%22%3E%3Cscript%3Ealert('Cinta%20Infinita')%3C/script%3E
/admin/dw/add-server.php
/07.5s1/_plain/index.php
/0_admin/modules/Wochenkarte/frontend/index.php
/0x4148.php.call
/1/howex.php3
/1024/includes/download.php
/1082_webserve-01/index.php
/1082_webserve-01/news/form.php
/1082_webserve-01/news/include/customize.php
/11in1/admin/do.php
/123.php
/123tkShop/shop/admin.php
/14/index.php
/1_0/admin/index.php
/2003/dienste/phpdownloadlinks_0.6/load_page.php
/2007/administrator/components/com_joomlaflashfun/admin.joomlaflashfun.php
/21new/galerie_data/galerie_onfly.php
/21new/galerie_index.php
/22_ultimate/search.php
/22_ultimate/templates/header.php
/2532gigs/backup.php
/2Moons/CombatReport.php
/2Moons/includes/classes/class.FlyingFleetHandler.php
/2Moons/includes/classes/class.Lang.php
/2Moons/includes/classes/class.Records.php
/2Moons/includes/common.php
/2Moons/includes/libs/Smarty/Smarty.class.php
/2Moons/includes/libs/Smarty/sysplugins/smarty_internal_resource_php.php
/2Moons/includes/libs/Smarty/sysplugins/smarty_internal_templatecompilerbase.php
/2Moons/includes/pages/ShowTopKB.php
/2Moons/includes/pages/adm/ShowModVersionPage.php
/2bgal/disp_album.php
/2fly_gift.php
/2p1p0b3/upload/admin.php
/3.01/general/index.php
/31337.php
/4/vBSupport.php
/404.php
/4images/4images/global.php
/4images/categories.php
/4um/newthread.php
/5000/HSRS/addcode.php
/5star_rating/admin/control_panel_sample.php
/60cycleCMS.2.5.2/private/changeUserPass.php
/60cycleCMS/private/select.php
/60cyclecms/private/edit.php
/60cyclecms/private/preview.php
/696969/piggy_marty.php
/696969/piggy_marty_creator.php
/7788bdbc/gallery/index.php/AJAXProxy/
/7788bdbc/gallery/index.php/ImageEdit/7/
/8080/ilias.php
/A-Blog/navigation/donation.php
/A-Blog/navigation/latestnews.php
/A-Blog/navigation/links.php
/A-Blog/navigation/search.php
/A-Blog/sources/myaccount.php
/ACGVnews/glossaire.php
/ACGVnews/header.php
/AContent/course_category/index.php
/ADMIN.php/index.html
/ADMIN/header.php
/ADMIN/index.php
/AIOCP/public/code/cp_downloads.php
/AIOCP/public/code/cp_menu_data_file.php
/AJA/modules.php
/AL-Caricatier/view_caricatier.php
/API/index.php
/API/process/checkPidStatus.php
/AST_agent_time_sheet.php
/AST_timeonVDADall.php
/ATutor/about.php
/ATutor/browse.php
/ATutor/browse.php/jscripts/infusion/framework/fss/
/ATutor/contact.php
/ATutor/directory.php
/ATutor/documentation/common/frame_toc.php
/ATutor/documentation/common/print.php
/ATutor/documentation/common/search.php
/ATutor/documentation/common/vitals.inc.php
/ATutor/forum/subscribe_forum.php
/ATutor/inbox/index.php
/ATutor/include/classes/module/module.class.php
/ATutor/include/classes/phpmailer/class.phpmailer.php
/ATutor/login.php/index.php
/ATutor/login.php/jscripts/infusion/
/ATutor/login.php/mods/_standard/flowplayer/
/ATutor/mods/_core/courses/users/create_course.php
/ATutor/mods/_core/tool_manager/index.php
/ATutor/mods/_standard/calendar/getlanguage.php
/ATutor/mods/_standard/calendar/index_mystart.php
/ATutor/mods/_standard/chat/chat.php
/ATutor/mods/_standard/chat/filterHistory.php
/ATutor/mods/_standard/forums/forum/view.php
/ATutor/mods/_standard/social/index_public.php
/ATutor/password_reminder.php
/ATutor/registration.php/themes/default/ie_styles.css
/ATutor/search.php
/ATutor/search.php/index.php
/ATutor/themes/default/social/basic_profile.tmpl.php
/ATutor/themes/default/tile_search/index.tmpl.php
/ATutor/tile.php
/ATutor/users/profile.php
/A_PHP_Scripts_News_Management_System_03/news/admin/login.php
/A_PHP_Scripts_News_Management_System_03/news/admin/register.php
/A_PHP_Scripts_News_Management_System_03/news/admin/system/include.php
/AbstractController.php
/AccountGroups.php
/AccountSections.php
/AdaptCMS/admin.php
/AdaptCMS/index.php
/AdaptCMS_Lite_1.4_2/index.php
/AdaptCMS_Lite_1.4_2/plugins/rss_importer_functions.php
/AddCustomerContacts.php
/AddCustomerNotes.php
/AddCustomerTypeNotes.php
/Admin/ADM_Pagina.php
/Admin/Login_form.php
/Admin/News/List.php
/Admin/admin1953.php
/Admin/article_suppr.php
/Admin/comment_accepter.php
/Admin/comment_refuser.php
/Admin/login.php
/Admin/login_index.php
/Admin/rtf_parser.php
/Administrator/filemanager/filemanager.php
/Ads/thankes.php
/Advanced-Image-Hosting-V2.2/index.php
/Advertisement/cgi/index.php
/AgedDebtors.php
/AgedSuppliers.php
/Agora_/mdweb/admin/inc/organisations/country_insert.php
/Agora_/mdweb/admin/inc/organisations/form_org.inc.php
/AjaxExplorer/ajaxexplorer/ae.user/owner/myprofile/terminal.php
/AjaxExplorer/ajaxexplorer/index.php
/Aligro/
/AllMyGuests
/Aqar/admin/aksam.php
/Aqar/admin/amaken.php
/Arastta/admin/index.php
/Areas.php
/ArticleSetup/upload/admin/authoredit.php
/ArticleSetup/upload/admin/categoryedit.php
/ArticleSetup/upload/admin/pageedit.php
/ArticleSetup/upload/author/submit.php
/ArticleSetup/upload/feed.php
/ArticleSetup/upload/search.php
/ArticleView.php
/Assignment.php
/Audio&VideoLibrary/admin/index.php
/Audit/Commerce/HackMe/shop/Admin/SHOP_KONFIGURATION.php
/Audit/Commerce/HackMe/shop/Admin/shop_kunden_mgmt.php
/Audits/CMS/pligg_1.1.2/search.php
/Audits/bilboblog/footer.php
/Audits/other/openauto_full_v1.6.3/Captcha.php
/AutoIndex/index.php
/Auto_Classifieds/articlesdetails.php
/BE_config.php
/BKMobile%20CMS/user/gallery1.php
/Base/example_1.php
/BaseCommand.php
/BaseLoader.php
/BaseView.php
/Beautifier/Core.php
/Bigware_Shop/modules/basic_pricing/configmain/main_bigware_115.php
/Bigware_Shop/modules/basic_pricing/configmain/main_bigware_12.php
/BlogPHPv2/index.php
/Blog_CMS/admin/plugins/NP_UserSharing.php
/BoZoN-master/index.php
/Board/list3.php
/Board/read.php
/Boxes.php
/Bug.php
/Business_Directory/info.php
/Business_Directory/search.php
/CHAMILOSCRIPT/main/social/profile.php
/CMSimple/2author/index.php
/CMSimple/plugins/filebrowser/classes/required_classes.php
/CONFIG/errmsg.inc.php
/CP/account_manage.php/login.php
/CaptchaSecurityImages.php
/Cart/admin/upload.php
/Category.php
/Ceica/login.php
/Ch99.php
/CheckUpload.php
/Class/class/scripts/export.php
/Classes/Evenement.php
/Classes/Event.php
/Classes/Event_for_month.php
/Classes/Event_for_week.php
/Classes/My_Log.php
/Classes/My_Smarty.php
/ClipperCMS-clipper_1.3.0/manager/index.php
/CoffieNet/admin/admin.php
/Commence/admin/includes/include_all_fns.php
/Commence/admin/phase/include_all_phase.php
/Commence/admin/phase/phase1.php
/Commence/admin/phase/phase2.php
/Commence/admin/phase/phase3.php
/Commence/admin/phase/phase4.php
/Commence/admin/phase/phasebase.php
/Commence/includes/db_connect.php
/Commence/includes/include_all_fns.php
/Commence/includes/main_fns.php
/Commence/includes/output_fns.php
/Commence/includes/page_includes/page.php
/Commence/includes/page_includes/pagebase.php
/Commence/includes/user_authen_fns.php
/Commence/reviewer/includes/include_all_fns.php
/Commence/reviewer/phase/include_all_phase.php
/Commence/reviewer/phase/phase1.php
/Commence/reviewer/phase/phase2.php
/Commence/reviewer/phase/phase3.php
/Commence/reviewer/phase/phase4.php
/Commence/reviewer/phase/phasebase.php
/Commence/user/phase/include_all_phase.php
/Commence/user/phase/phase1.php
/Commence/user/phase/phase2.php
/Commence/user/phase/phase3.php
/Commence/user/phase/phase4.php
/Commence/user/phase/phasebase.php
/Community/viewtopic.php
/Compose.php
/Concrete/index.php/login/do_login/
/Contact/contact.php
/Core/core.inc.php
/CoupleDB.php
/Cpanel/account
/CreativeFiles/downloads.php
/D8/ab4u/images/c.php
/D8/upload/index.php
/DBHcms/index.php
/DMS/index.php
/DOCEBO205/modules/credits/help.php
/DON3/applications/don3_requiem.don3app/don3_requiem.php
/DON3/applications/frontpage.don3app/frontpage.php
/DRS/include/libs/internals/core.process_compiled_include.php
/DRS/include/libs/internals/core.write_compiled_include.php
/DRS/include/libs/plugins/function.config_load.php
/DSM/Backup/processbackup.php
/DSM/loader.php
/DVD/moviedetails.php
/Dacio_imgGal-v1.6/index.php
/Dasher.php
/Data/Log/
/DbbS/profile.php
/DbbS/suntzu.php
/Denapars/admin.php
/DetailFile.php
/Dir_phNNTP/article-raw.php
/DiscReply.php
/DiscView.php
/Discussions.php
/Discuz/misc.php
/Discuz/post.php
/DoceboLMS_404/doceboCore/index.php
/DoceboLMS_404/docebolms/index.php/index.php
/DoceboLMS_404/index.php
/Document.php
/Documentation/tests/bug-559668.php
/Dolphin/gzip_loader.php
/Dolphin/tags.php
/Download-Shop/view_item.php
/DynaTracker_v151/action.php
/DynaTracker_v151/includes_handler.php
/E-Store/admin/index.php
/EMPLOYERS/index.php
/EN/research/default.php
/EasyFileUploader/settings-users-edit.php
/EdgeSketch/adminlogin.php
/Electricks/Electricks/Electricks-shop/pages/user_signup.php
/Employer_Details.php
/English_manual_version_2.php
/EsContacts/add_groupe.php
/EsContacts/contacts.php
/EsContacts/groupes.php
/EsContacts/importer.php
/EsContacts/login.php
/EsContacts/search.php
/EsFaq/questions.php
/EventView.php
/Events_Locator/search.php
/Exophpdesk_/pipe.php
/FAQMasterFlex/faq.php
/FCKeditor/editor/filemanager/upload/php/upload.php
/FCMS/familynews.php
/FCMS/inc/getChat.php
/FCMS/messageboard.php
/FCMS/prayers.php
/FCMS/settings.php
/FR/admin/admin.php
/FR/admin/agenteditor.php
/FR/agentdisplay.php
/FTP2FTP/download2.php
/FWUpgrade.php
/Facts.php
/Factux/admin_modif.php
/Factux/article_new.php
/Factux/article_update.php
/Factux/backup.php
/Factux/backup_timeout.php
/Factux/bon_suite.php
/Factux/ca_annee.php
/Farsi1/index.php
/Fee.php
/Ffm/admin/ffmpeg.php
/Ffm/admin/uploadfiles.php
/Ffm/admin/wget.php
/FileManager/postlet/javaUpload.php
/FileProcessingScripts/PHP/UploadedFiles/
/Final/login/ava_up1.php
/Final/login/ava_up12.php
/Final/login/ava_upl.php
/Final/login/ava_upl2.php
/Firmware.php
/Forum/topics.php
/ForumAuthDetails.php
/ForumOxalis/index.php
/ForumReply.php
/Forums/bb_smilies.php
/Free/clients/reset.php
/Free/clients/tickets.php
/FreeFAQ/dl_axxess.php
/FreeHost/register.php
/FreeHost/u/indoushka/Ch99.php.zip
/FreeHost/upload.php
/FreeSMS/pages/crc_evaluation.php
/FreeSMS/pages/crc_handler.php
/FreeSMS/pages/crc_login.php
/Full_Release/include/body_admin.inc.php
/Full_Release/include/body_comm.inc.php
/FunGamez/index.php
/GEDCOM_to_MySQL2/php/index.php
/GEDCOM_to_MySQL2/php/info.php
/GEDCOM_to_MySQL2/php/prenom.php
/GENU/comments/search.php
/GENU/news/search.php
/GENU/posts/search.php
/GF-3XPLORER/explorer/phpinfo.php
/GForge/account/verify.php
/GQFileManager/index.php
/Galerie/upload.php
/Gallery/phpThumb.php
/Gallery/suntzu.php
/Gbook_mx4.1.0/gbookmx/gbook.php
/Geeklog/fckeditor/editor/filemanager/upload/
/General_Classifieds/browse.php
/General_Classifieds/search.php
/GeniXCMS-master/GeniXCMS-master/gxadmin/index.php
/GeoAuctions/index.php
/GeoAuctionsEnterprise/index.php
/GetSimple_2.01/admin/download.php
/GnuBoard/bbs/poll_result.php
/GnuBoard/common.php
/HELPBOT_MODULE/HelpbotController.class.php
/HELPBOT_MODULE/calc.php
/HPE/clickerr.php3
/HPE/lang/de.php
/HPE/lang/fr.php
/HPE/loadcatnews.php3
/HPE/motd.php3
/HPE/plugins/mod.news.php3
/HPE/plugins/mod.newslog.php3
/HPE/plugins/news.htmlnews.php3
/HPE/plugins/news.xmlbi.php3
/HPE/plugins/news.xmlphp.php3
/HPE/plugins/page.dmoz.show.php3
/HPE/plugins/page.newnews.show.php3
/HPE/plugins/page.randnews.show.php3
/HPE/plugins/page.teaser.show.php3
/HPE/thememaker.php3
/Hexjector/hexjector.php
/Home_Classifieds/articlesdetails.php
/Home_Classifieds/search.php
/IBSng/util/show_multistr.php
/IDS/Init.php
/IT/more-news.php
/Image_voting/index.php
/Imprint.php
/Include/Start.php
/Include/functions_folder.php
/Include/functions_hacking.php
/Include/functions_message.php
/Include/lib.inc.php3
/Include/variables.php3
/Includes/validsession.php
/Index.php
/InterPhoto/MyWebsiteImages
/InterPhoto/MyWebsiteImages/
/InterPhoto/UploadImages/
/InterPhoto/admin/backup/
/InterPhoto/admin/includes/
/InterPhoto/config/
/InterPhoto/includes/
/InterPhoto/languages/
/InterPhoto/library/
/InterPhoto/library/smarty/libs/Smarty_Compiler.class.php
/InterPhoto/library/smarty/libs/plugins/modifier.date_format.php
/InterPhoto/templates/
/InterPhoto/upgrade/
/Invision/admin.php
/IssueTrak/IssueSearch_Process.asp
/Istgah/view_ad.php
/JED/Medi-QnA/Medi-QnA.php
/Javabridge/source.php
/Jeebles_Directory/index.php
/Jeebles_Directory/subdirectory/index.php
/Job_Details.php
/Jokes/joke.php
/Jokes/results.php
/Joomla/index.php
/Joomla375/index.php
/KCFinder/browse.php
/KU_ROOTDIRpost.php
/Kayako/index.php
/Kiasabz/admin/main.php
/Kiasabz/essay.php
/Kiasabz/news.php
/KikChat/myroom/
/KikChat/private.php
/KikChat/rooms/get.php
/KubeSupport/install/index.php
/LEPTON_stable_2.2.0/upload/config.php
/LEPTON_stable_2.2.0/upload/install/save.php
/LNE/LightNEasy.php
/LabWiki/index.php
/LabWiki/recentchanges.php
/LightBlog/blog_script.php
/LightBlog9.6/view_member.php
/LightNEasy.php
/LightNEasy/install1.php
/Lineage%20ACM/lineweb_1.0.5/admin/edit_ads.php
/Lineage%20ACM/lineweb_1.0.5/admin/edit_news.php
/Lineage%20ACM/lineweb_1.0.5/admin/index.php
/LinkTrader/ratelink.php
/ListFile.php
/LivingLocal/listtest.php
/Locator/record.php
/Login.php
/LoginDashboard/admin/dashboard.php
/LoginDashboard/admin/index.php
/LoginDashboard/code/ajaxChangePassword.php
/LoginDashboard/index.php
/LogoStore/search.php
/Lokomedia/adminweb/media.php
/Luxusmailer5/home.php
/Luxusmailer5/paidbanner.php
/MAINT_3_2_0/index.php
/MD5/index.php
/MFH/download.php
/MMchat/chatconfig.php
/MMchat/chathead.php
/MOD_forum_fields_parse.php
/MPS/member.php
/Madirish_Webmail/index.php
/Madirish_Webmail/lib/addressbook.php
/MailForm/HTML/index.php
/MamboV4.6.3/mambots/editors/mostlyce/jscripts/tiny_mce/filemanager/connectors/php/connector.php
/MamboV4.6RC2/components/com_extcalendar/admin_events.php
/MamboV4.6RC2/components/com_extcalendar/lib/mail.inc.php
/Max/index.php
/Max/install/install.php
/Member_Admin/editimage.php
/Member_Admin/index.php
/Member_Admin/login.php
/Member_Admin/logo/
/Members/index.inc.php
/Members/root/index.inc.php
/Mercury/f_state.php
/MessageBoard/messages.php
/Mobile/main/chatsmileys.php
/MobileNews.php
/Module/Galerie.php
/MyBoard/rep.php
/MyCP/active_user.php
/MyCP/deactive_user.php
/MyCP/industry-list.php
/MyCP/job-list.php
/MyCP/job-pack.php
/MyCP/unverified_user.php