gitextract_pasmfpt5/ ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── FeatureRequest.md │ │ ├── TestRequest.md │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── false_positive_negative_report.md │ └── workflows/ │ ├── docker-build-push.yaml │ └── update-worker-manifest.yml ├── .gitignore ├── COPYING ├── COPYING.LibWhisker ├── Dockerfile ├── README.md ├── documentation/ │ ├── manpage.xml │ ├── nikto.1 │ ├── nikto_schema_mysql.sql │ ├── nikto_schema_postgresql.sql │ └── perltidyrc └── program/ ├── .timestamp ├── databases/ │ ├── db_404_strings │ ├── db_content_search │ ├── db_dictionary │ ├── db_favicon │ ├── db_headers_common │ ├── db_headers_suggested │ ├── db_multiple_index │ ├── db_options │ ├── db_outdated │ ├── db_realms │ ├── db_server_msgs │ ├── db_tests │ ├── db_useragents │ └── db_variables ├── nikto.conf.default ├── nikto.pl ├── plugins/ │ ├── LW2.pm │ ├── nikto_apacheusers.plugin │ ├── nikto_auth.plugin │ ├── nikto_cgi.plugin │ ├── nikto_content_search.plugin │ ├── nikto_cookies.plugin │ ├── nikto_core.plugin │ ├── nikto_dictionary_attack.plugin │ ├── nikto_favicon.plugin │ ├── nikto_fileops.plugin │ ├── nikto_headers.plugin │ ├── nikto_ms10_070.plugin │ ├── nikto_msgs.plugin │ ├── nikto_multiple_index.plugin │ ├── nikto_negotiate.plugin │ ├── nikto_options.plugin │ ├── nikto_optionsbleed.plugin │ ├── nikto_outdated.plugin │ ├── nikto_paths.plugin │ ├── nikto_put_del_test.plugin │ ├── nikto_report_csv.plugin │ ├── nikto_report_html.plugin │ ├── nikto_report_json.plugin │ ├── nikto_report_sqlg.plugin │ ├── nikto_report_text.plugin │ ├── nikto_report_xml.plugin │ ├── nikto_robots.plugin │ ├── nikto_shellshock.plugin │ ├── nikto_siebel.plugin │ ├── nikto_sitefiles.plugin │ ├── nikto_springboot.plugin │ ├── nikto_ssl.plugin │ └── nikto_tests.plugin ├── templates/ │ ├── htm_close.tmpl │ ├── htm_end.tmpl │ ├── htm_host_head.tmpl │ ├── htm_host_item.tmpl │ ├── htm_start.tmpl │ ├── htm_summary.tmpl │ └── nikto.dtd └── utils/ ├── nikto-bulk.sh └── replay.pl