-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
ffuf.lst
4819 lines (4819 loc) · 60.7 KB
/
ffuf.lst
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
__/anotherpage
__/test
__admin
__app
__backup
__cache/
__class__.yaml
__config
__console.log
__content
__data
__debug__
__docs__
__documents
__dummy.html
__history/
__index
__init__.py
__MACOSX
__mysql_errors.log
__namespace__.yaml
__pma___
__pycache__/
__recovery/
__services
__shared
__SQL
__system__
__template
__templates
__tools
__uploads
__users
_.htpasswd
_/activities
_/health
_about
_abs
_action
_actions
_activate
_activex
_addons
_addproduct
_address
_addtocart
_adm
_admin
_admin_
_admin.html
_admin/
_Admin/
_admincp
_administracion
_administration
_adminpages
_adpage
_ads
_adserver
_adtest
_adv
_advanced
_advertise
_advertising
_aff
_affiliate
_affinoversion
_ah
_ah/background
_ah/bounce
_ah/counter
_ah/health
_ah/mail/
_ah/queue/apply-changes
_ah/queue/retire-bid
_ah/queue/retire-tx
_ah/remote_api
_ah/start
_ah/stop
_ah/warmup
_ah/xmpp/message/chat/
_ajax
_ajaxratings
_all_dbs
_alpha
_alsobought
_alt
_amazon
_ana
_analog
_analytics
_ani
_anim
_animations
_announcements
_antiguo
_ao
_ap
_api
_app
_app_bin
_app_code
_app_offline
_applet
_applets
_application
_applications
_apps
_archiv
_archive
_archived
_archiver
_archives
_archivos
_aree
_art
_articles
_artperpage
_ascx
_asp
_aspnet_client
_aspx
_assets
_ast
_async
_async_call
_attachments
_audio
_auth
_AuthChangeUrl
_authforms
_autoindex
_aweb
_awm_file
_awstats
_awstats_icons
_awstats/
_back
_back_up
_backend
_backoffice
_backup
_backup_
_backup_old
_backupdb
_backups
_bak
_baks
_baner
_bank
_banner
_banners
_base
_basket
_batch
_bbs
_bbtparts
_bd
_bestsell
_bet
_beta
_betterbook.yaml
_bf
_bfr_img
_bilder
_bin
_binding
_bits
_bk
_bkp
_bkup
_blank
_ble
_blnk
_blocks
_blog
_blog2
_blogs
_board
_boarders
_book
_bookings
_books
_border
_borders
_bors
_bottom
_box
_bu
_buf
_bugs
_build
_build/
_buttons
_buy
_c
_cache
_cache/
_cadastro
_cal
_calculators
_calendar
_callback
_callouts
_campaign
_campaigns
_capca
_captcha
_careers
_cart
_cartnav
_cartNav
_cat/health
_cat/indices
_catalog
_catalogs
_cc
_ccbcue
_ccn
_cdn
_cert
_cfc
_cfcs
_cfg
_cftags
_cfxtags
_cgi
_cgi_bin
_cgi-bin
_cgidata
_cgitemp
_char.sql
_chat
_chcounter
_check
_check_authen
_check_spell
_ci
_cincs
_cj
_class
_classes
_clickheat
_client
_clients
_closed
_cluster/stats
_cm_admin
_cms
_cmseditor
_cobrandpsp
_code
_colorbox
_com
_com_images
_comm
_common
_common.xsl
_comp
_company
_compile
_component
_components
_comps
_conf
_config
_config-rating
_config-rating2
_config.inc
_config.yml
_configs
_configuration
_confirm
_conflist
_conn
_connect
_connections
_console
_constants
_cont
_contact
_content
_contentindex
_contents
_contribute
_control
_controller
_controllers
_controls
_convert
_copies
_copy
_core
_counter
_counters
_countries
_cover
_cpix
_cron
_cronjobs
_crons
_crontab
_crossDomain
_cruise
_cs
_cs_apps
_cs_upload
_cs_xmlpub
_css
_css_js
_css2
_csv
_ct
_cti_pvt
_cti_txt
_cts
_ctsi
_cultural
_custom
_customer
_customtags
_cusudi
_cv
_cwtools
_d
_da
_data
_data-cached
_data.sql
_data/
_database
_database2
_databases
_dataprocessing
_date
_dave
_day
_db
_db_backup
_db_backups
_db_import
_db_interface
_db_updates
_db.sql
_dbadmin
_dbAdmin
_dbase
_de
_dealership
_debug
_debug.log
_debugbar/open
_default
_deinit
_del
_delall
_delete
_deleted
_delitem
_demo
_demosourse
_deried
_derived
_design
_designs
_detail
_details
_dev
_dev_store
_development
_devtools
_devy
_df
_diary
_diet
_dii
_directoresavfeed
_directory
_disc
_disc1
_disc2
_disc3
_disc5
_discussion
_discussion1
_disid
_display_methods
_dist_error_
_distiller
_diversen
_dlls
_dn
_dnu
_do
_doc
_Dockerfile
_docs
_documentation
_documentbank
_documents
_dokumente
_domain
_down
_download
_download_files
_downloads
_dpalogos
_draft
_drawrating
_dropdowns
_dsn
_dualpayment
_dummy
_dump
_dumper
_dwn
_DynaCacheEsi
_DynaCacheEsi/
_e
_e-alarmy
_ecards
_eccomerce_
_edit
_edit_
_edititem
_editor
_editori
_editoru
_editqty
_en
_engine
_entries
_epresence
_err
_erreurs
_erro
_error
_error_docs
_error_pages
_errordocs
_errormsg
_errorpages
_errors
_es
_estate
_estaticas
_estilos
_estore
_etc
_eumm/
_eventcalendar
_eweb
_ewebeditor
_example
_excel
_exec
_expand
_experimental
_expired
_exploits
_export
_exports_
_ext
_extensions
_extern
_external
_exthp
_extranet
_extras
_family
_faq
_fav
_fb
_fbfiles_dist
_fck
_fckeditor
_featured
_feed
_feed-comments
_feedback
_feeds
_felt
_ffp
_fields
_file
_files
_fileupload
_fla
_flash
_flashapp
_flickr
_flowplayer
_flv
_fm
_fnc
_fonc
_fonds
_font
_fonte
_fonts
_foot
_fpclass/
_framework
_frizz/
_funcion/
_funciones/
_function/
_functions/
_g
_gatools
_gestione
_gesuche
_go
_google
_gotcha
_goto
_gr
_graphics
_gsdata_
_guestbook
_gui
_h5ai/
_handlers
_hbg
_health
_healthz
_hhdocs
_hidden
_hide
_highslide
_hint
_history
_hlev
_hold
_holding
_holiday2002
_home
_homepage
_hp
_hrblock
_hrBlock
_htaccess
_htc
_html
_htmleditor
_htmlemail
_htmltemplates
_iframes
_iis_customdocs
_image
_imagenes
_imagens
_images
_img
_img_upload
_imgd
_imgs
_immediacy
_import
_imppic
_in
_inactive
_inc
_inc_
_inc_commons
_inc_special
_inc/
_incl
_include
_include/
_includes
_includes_
_includes_old
_includes/
_incs
_index
_indexation
_indices/delete
_indices/mapping
_info
_info/
_informer
_informer_
_init
_inoc
_ins
_insert
_install
_install_
_installation
_int
_interface
_intern
_internal
_internal/capabilities/
_internat
_intra
_irc
_it
_java
_java_tools
_javascript
_javascripts
_jcr_content
_jquery
_js
_jscript
_jscss
_jsgo/
_json
_jsp
_jument
_junk
_jx
_lab
_labs
_laetis
_landing
_landingLog
_landingpages
_lang
_lang_r
_language
_languages
_later
_launch
_layout
_layouts
_layouts/
_lbstatus
_ld
_left
_leftmenu
_legacy
_lenders
_lib
_libraries
_library
_libs
_licences
_license
_lightwindow
_link
_linking
_links
_list
_listings
_live
_livezilla
_lizenz
_lng
_lnk
_local
_log
_log_redirect
_log/
_logdata
_logfiles
_login
_logo
_logos
_logout
_logs
_logs/
_LPHPMYADMIN/
_mail
_mailer
_mailing
_mails
_main
_maint
_maintenance
_manage
_management
_manager
_manual
_map
_maps
_marketing
_master
_masterpages
_masters
_mdb
_me
_mecache
_meconf
_media
_mediaimages
_mediaplayer
_mediawiki
_medienid
_meiew
_mem_bin
_mem_bin/
_member
_members
_menu
_menueditor
_menues
_menus
_messages
_meta
_metadata
_mgxftp
_mgxroot
_micro
_min
_misc
_mm
_mmdbscripts
_mmDBScripts
_mmsererscripts
_mmserverscripts
_mmServerscripts
_mmServerScripts
_mmServerScripts/
_mobile
_mockup
_mod
_mod_files
_model
_modeles
_mods
_module
_modules
_modulos
_moje
_monitor
_monitor_
_monopoly
_moodle
_more
_moteur
_moya
_mrtg
_mshtml
_msptp
_mssql.sql
_mt
_mtrack
_music
_my
_myaccount
_myadmin
_mygallery
_mysererscripts
_mysql
_n
_nav
_navigation
_new
_new-design
_newcmm
_news
_news_admin_
_newses_
_newsite
_newsletter
_newsletters
_ng
_nicolasap
_nipd
_nocrawl
_nodes
_noindex
_note
_notes
_notes/
_noticias
_notify
_notinuse
_notused
_noupload
_novo
_novo/
_numbers
_nv
_objects
_obsolete
_octopress.yml
_old
_older
_oldfiles
_oldimages
_oldrandi
_oldroot
_oldsite
_oldwebsite
_ols
_omniture
_ontv
_open
_openads
_orders
_original
_out
_overlay
_overlays
_p
_packager
_page
_pagelistmenu
_pagepieces
_pages
_pagesection
_paginas
_panels
_parse
_partner
_partners
_parts
_passwords
_pay
_payment
_paypal
_pcs
_pda
_pdf
_pdfs
_pear
_pedidos
_pending
_people
_pg/
_pgs
_pgtres
_phpmyadmin
_phpmyadmin/
_ping
_pkginfo.txt
_play/
_ppadmin
_pprof
_price
_print
_printabletext
_printpage
_printPage
_priv
_priv8/
_privado/
_privados/
_private
_private/
_private1
_privateassets
_process
_process-email
_processing
_prod
_production
_profile
_profiler
_programs
_project
_projects
_promotions
_protected
_prototip
_provate
_proxy
_pruebas
_prw_
_ps
_psd
_psitemap
_pt
_pub
_public
_public_tools
_publication
_publicidad
_publish
_Pvt_Extensions
_pw
_pwa
_pwk
_qrcode
_qt
_queries
_query.php
_quit
_r2
_rade
_radio
_rainbow
_rd
_readme
_rec
_recent
_recent_
_recommend
_recovery
_recvpo
_recycler_
_redaktion
_redesign
_redir
_redirect
_redirects
_ref
_refract
_register
_reklama
_release
_remote
_remove_config.yaml
_removed
_rentals_rates
_report
_reports
_repository
_reqdis
_res
_resetp
_resizeplugin
_resource_
_resources
_restart
_restricted
_resx
_review
_reviewlist
_reviews
_revslider
_rewrite
_rfpposting
_robots
_root
_rotate
_rpc
_rss
_runtime
_s
_safe
_sales
_salesmodules
_sandbox
_sav
_save
_sbox
_schedule
_scheduler
_scr
_script
_script.js
_script.js.map
_scriptjs
_search
_self
_server
_service
_services
_sess
_sessions
_setadrs
_setship
_setsitecookie
_setsiteCookie
_settings
_setup
_share
_shared
_shared_content
_site/
_siteadmin
_siteinfo
_sitemap
_sitemap_app
_sitemaps
_sites
_siteshape
_sitewide
_sito
_skin
_skins
_skins_tmp
_sklep
_slave_01
_smarty
_sms
_snippets
_social
_sock/
_soft
_solmyr
_sounds
_source
_sources
_sp
_spam_status
_speaker
_special
_specials
_splash
_sponsor
_sponsors
_spry
_spryassets
_sql