Full Code of sullo/nikto for AI

main 29836d5db6a4 cached
80 files
2.1 MB
555.4k tokens
2 symbols
1 requests
Download .txt
Showing preview only (2,221K chars total). Download the full file or copy to clipboard to get everything.
Repository: sullo/nikto
Branch: main
Commit: 29836d5db6a4
Files: 80
Total size: 2.1 MB

Directory structure:
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

================================================
FILE CONTENTS
================================================

================================================
FILE: .dockerignore
================================================
.git
.gitignore
.gitattributes
.editorconfig
.github
COPYING
devdocs
documentation
README.md


================================================
FILE: .editorconfig
================================================
root = true

[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[*.{pl,plugin}]
indent_style = space
indent_size = 4

[*.{xml,tmpl}]
indent_style = space
indent_size = 2


================================================
FILE: .gitattributes
================================================
*   text=auto eol=lf


================================================
FILE: .github/FUNDING.yml
================================================
patreon: sullo


================================================
FILE: .github/ISSUE_TEMPLATE/FeatureRequest.md
================================================
---
name: Feature Request
about: Request a new feature for Nikto
title: 'Feature: '
labels: 'enhancement'
assignees: ''

---
### Description

### Links/Info



================================================
FILE: .github/ISSUE_TEMPLATE/TestRequest.md
================================================
---
name: New Test 
about: Reqeust a new test in Nikto
title: 'Test Request: '
labels: 'check'
assignees: ''

---
### Description

### Path

### Matching text (in response)

### Links/Info



================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug Report
about: Report an issue found in Nikto
title: 'Bug: '
labels: bug
assignees: ''

---
### Expected behavior

### Actual behavior

### Steps to reproduce

1.
2.
3.

### Nikto version

Run:

```
./nikto.pl -Version
```

and paste the output here.

### Further technical info

E.g. you can obtain Nikto debug output by running `-D D` and redirecting to a file.
You may also scrub the output of hostnames and IPs by specifying `-D DS`.


================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false


================================================
FILE: .github/ISSUE_TEMPLATE/false_positive_negative_report.md
================================================
---
name: False positive / negative Report
about: Report a false positive / negative found by Nikto
title: 'False Positive/Negative: '
labels: bug
assignees: ''

---

### Output of suspected false positive / negative

Post any useful information like the ID of the test causing the false positive.

### Debug output

Run:

```
./nikto.pl -host targethost -Save false_positive
```

This saves all positive responses to a new `false_positive` directory. Afterwards look
for the related ID of the false positive / negative and paste it below.


================================================
FILE: .github/workflows/docker-build-push.yaml
================================================
name: Build and Push Docker Image

on:
  push:
    branches:
      - master

permissions:
  contents: read
  packages: write

jobs:
  build-and-push:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout repository
        uses: actions/checkout@v4

      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v3

      - name: Log in to GitHub Container Registry
        uses: docker/login-action@v3
        with:
          registry: ghcr.io
          username: ${{ github.actor }}
          password: ${{ secrets.GITHUB_TOKEN }}

      - name: Extract metadata for Docker
        id: meta
        uses: docker/metadata-action@v5
        with:
          images: ghcr.io/${{ github.repository_owner }}/nikto
          tags: |
            latest
            type=ref,event=branch
            type=sha

      - name: Build and push Docker image
        uses: docker/build-push-action@v5
        with:
          context: .
          file: Dockerfile
          push: true
          platforms: linux/amd64,linux/arm64
          tags: ${{ steps.meta.outputs.tags }}
          labels: ${{ steps.meta.outputs.labels }}


================================================
FILE: .github/workflows/update-worker-manifest.yml
================================================
name: Update build timestamp + manifest

on:
  push:
    branches: ["main"]
    # Prevent infinite loops: the commit that only updates program/.timestamp
    # will NOT trigger this workflow.
    paths-ignore:
      - "program/.timestamp"

permissions:
  contents: write

jobs:
  update:
    # Extra safety: don't run if somehow triggered by the bot anyway
    if: github.actor != 'github-actions[bot]'
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v4
        with:
          fetch-depth: 1

      - name: Compute epoch + parse Nikto version
        id: meta
        shell: bash
        run: |
          set -euo pipefail

          EPOCH="$(git log -1 --format=%ct)"
          echo "epoch=$EPOCH" >> "$GITHUB_OUTPUT"

          # Parse Nikto version from: $VARIABLES{'version'} = "2.6.0";
          VERSION="$(perl -ne 'if(/\$VARIABLES\{\s*["'\''"]version["'\''"]\s*\}\s*=\s*["'\''"]([^"'\''"]+)["'\''"]\s*;/){print $1; exit}' program/nikto.pl)"

          if [ -z "${VERSION:-}" ]; then
            echo "Failed to parse version from program/nikto.pl (\$VARIABLES{version})." >&2
            exit 1
          fi

          echo "version=$VERSION" >> "$GITHUB_OUTPUT"

      - name: Update program/.timestamp
        shell: bash
        run: |
          set -euo pipefail
          mkdir -p program
          echo "${{ steps.meta.outputs.epoch }}" > program/.timestamp

      - name: Commit and push program/.timestamp if changed
        shell: bash
        run: |
          set -euo pipefail

          # Stage first so new files are included
          git add program/.timestamp

          # If staging produced no changes, exit
          if git diff --cached --quiet; then
            echo "program/.timestamp unchanged"
            exit 0
          fi

          git config user.name "github-actions[bot]"
          git config user.email "github-actions[bot]@users.noreply.github.com"
          git commit -m "chore: update program/.timestamp [skip ci]"
          git push

      - name: Update Cloudflare Worker manifest
        shell: bash
        env:
          UPDATE_URL: ${{ secrets.CF_WORKER_UPDATE_URL }}
          UPDATE_TOKEN: ${{ secrets.CF_WORKER_UPDATE_TOKEN }}
          VERSION: ${{ steps.meta.outputs.version }}
          EPOCH: ${{ steps.meta.outputs.epoch }}
        run: |
          set -euo pipefail

          if [ -z "${UPDATE_URL:-}" ] || [ -z "${UPDATE_TOKEN:-}" ]; then
            echo "Missing CF_WORKER_UPDATE_URL or CF_WORKER_UPDATE_TOKEN secrets." >&2
            exit 1
          fi

          curl -fsS -X POST "$UPDATE_URL" \
            -H "Authorization: Bearer $UPDATE_TOKEN" \
            -H "Content-Type: application/json" \
            -d "{\"version\":\"$VERSION\",\"epoch\":$EPOCH}"


================================================
FILE: .gitignore
================================================
.DS_Store
tests/udb_*
nikto.conf
.cursor


================================================
FILE: COPYING
================================================
##########################################################################################
# Copyright (C) 2001–2026 Chris Sullo. All rights reserved.
#
# This license notice applies to: Nikto's code only
#
# See COPYING.libwhisker for LibWhisker licensing information.
#
# Database files are NOT licensed under the GPL and may only be distributed as part of
# the official Nikto package or installer, for use exclusively with Nikto.
#
# For full licensing terms and commercial use policies, visit:
# https://cirt.net/Nikto-Licensing
##########################################################################################

This program is free software: you can redistribute it and/or modify  
it under the terms of the GNU General Public License version 3,  
as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful,  
but WITHOUT ANY WARRANTY; without even the implied warranty of  
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  
GNU General Public License for more details.

The full license text is available at: https://www.gnu.org/licenses/gpl-3.0.txt


================================================
FILE: COPYING.LibWhisker
================================================
LW2 Copyright (c) 2009, Jeff Forristal (wiretrip.net)
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.


================================================
FILE: Dockerfile
================================================
FROM alpine:3.23.3

LABEL version="2.6.0" \
      author="Author Paul Sec (https://github.com/PaulSec), Nikto User https://github.com/drwetter" \
      docker_build="docker build -t sullo/nikto:2.6.0 ." \
      docker_run_basic="docker run --rm sullo/nikto:2.6.0 -h http://www.example.com" \
      docker_run_advanced="docker run --rm -v $(pwd):/tmp sullo/nikto:2.6.0 -h http://www.example.com -o /tmp/out.json"

RUN echo 'Installing packages for Nikto.' && \
    apk add --no-cache \
      perl \
      perl-net-ssleay \
      perl-json \
      perl-io-socket-ssl \
      perl-xml-writer \
      perl-mime-base64 \
      perl-xml-libxml

RUN echo 'Creating the nikto group.' && \
  addgroup -S nikto && \
  echo 'Creating the nikto user.' && \
  adduser -S -G nikto -g "Nikto user" -s /bin/sh nikto

ENV  PATH=${PATH}:/opt/nikto
USER nikto

COPY --chown=nikto:nikto ["program/", "/opt/nikto"]
ENTRYPOINT ["/opt/nikto/nikto.pl"]


================================================
FILE: README.md
================================================
nikto
=====
[![alt text](https://cirt.net/wp-content/uploads/2025/12/patreon.png "Become a patron of Nikto!")](https://www.patreon.com/sullo)


Nikto web server scanner  - https://cirt.net/Nikto2 

Full documentation - https://github.com/sullo/nikto/wiki

Run normally:

~~~
git clone https://github.com/sullo/nikto
# Main script is in program/
cd nikto/program
# Run using the shebang interpreter
./nikto.pl -h http://www.example.com
# Run using perl (if you forget to chmod)
perl nikto.pl -h http://www.example.com
~~~

Run as a Docker container from ghcr.io:
`docker pull ghcr.io/sullo/nikto:latest`

Run as a Docker container from Dockerfile:

~~~bash
git clone https://github.com/sullo/nikto.git
cd nikto
docker build -t sullo/nikto .
# Call it without arguments to display the full help
docker run --rm sullo/nikto
# Basic usage
docker run --rm sullo/nikto -h http://www.example.com
# To save the report in a specific format, mount /tmp as a volume:
docker run --rm -v $(pwd):/tmp sullo/nikto -h http://www.example.com -o /tmp/out.json
~~~

Basic usage:

```
   Options:
       -Add-header         Add HTTP headers (can be used multiple times, one per header pair)
       -ask+               Whether to ask about submitting updates
                               yes   Ask about each (default)
                               no    Don't ask, don't send
                               auto  Don't ask, just send
       -check6             Check if IPv6 is working (connects to ipv6.google.com or value set in nikto.conf)
       -Cgidirs+           Scan these CGI dirs: "none", "all", or values like "/cgi/ /cgi-a/"
       -config+            Use this config file
       -Display+           Turn on/off display outputs:
                               1     Show redirects
                               2     Show cookies received
                               3     Show all 200/OK responses
                               4     Show URLs which require authentication
                               D     Debug output
                               E     Display all HTTP errors
                               P     Print progress to STDOUT
                               S     Scrub output of IPs and hostnames
                               V     Verbose output
       -dbcheck           Check database and other key files for syntax errors
       -evasion+          Encoding technique:
                               1     Random URI encoding (non-UTF8)
                               2     Directory self-reference (/./)
                               3     Premature URL ending
                               4     Prepend long random string
                               5     Fake parameter
                               6     TAB as request spacer
                               7     Change the case of the URL
                               8     Use Windows directory separator (\)
                               A     Use a carriage return (0x0d) as a request spacer
                               B     Use binary value 0x0b as a request spacer
        -followredirects   Follow 3xx redirects to new location
        -Format+           Save file (-o) format. Can specify multiple formats separated by commas (e.g., htm,sql,txt,json,xml):
                               csv   Comma-separated-value
                               json  JSON Format
                               htm   HTML Format
                               sql   Generic SQL (see docs for schema)
                               sqld  SQL Direct (directly inserts into MySQL/PostgreSQL database)
                               txt   Plain text
                               xml   XML Format
                               (if not specified the format will be taken from the file extension passed to -output)
                               Note: sqld format requires DB_TYPE, DB_HOST, DB_PORT, DB_NAME in nikto.conf
                                     and NIKTO_DB_USER, NIKTO_DB_PASS environment variables
       -Help              This help information
       -host+             Target host/URL
       -id+               Host authentication to use, format is id:pass or id:pass:realm
       -ipv4              IPv4 Only
       -ipv6              IPv6 Only
       -key+              Client certificate key file
       -list-plugins      List all available plugins, perform no testing
       -maxtime+          Maximum testing time per host (e.g., 1h, 60m, 3600s)
       -mutate+           Guess additional file names:
                               1     Test all files with all root directories
                               2     Guess for password file names
                               3     Enumerate user names via Apache (/~user type requests)
                               4     Enumerate user names via cgiwrap (/cgi-bin/cgiwrap/~user type requests)
                               5     Attempt to brute force sub-domain names, assume that the host name is the parent domain
                               6     Attempt to guess directory names from the supplied dictionary file
       -mutate-options    Provide information for mutates
       -nocheck           Don't check for updates on startup
       -nocookies         Do not use cookies from responses in requests (cookies are stored and sent by default)
       -nointeractive     Disables interactive features
       -nolookup          Disables DNS lookups
       -noslash           Strip trailing slash from URL (e.g., '/admin/' to '/admin')
       -nossl             Disables the use of SSL
       -no404             Disables nikto attempting to guess a 404 page
       -Option            Over-ride an option in nikto.conf, can be issued multiple times
       -output+           Write output to this file ('.' for auto-name)
       -Pause+            Pause between tests (seconds)
       -Platform+         Platform of target (nix, win, all)
       -Plugins+          List of plugins to run (default: ALL)
       -port+             Port to use (default 80)
       -RSAcert+          Client certificate file
       -root+             Prepend root value to all requests, format is /directory
       -Save              Save positive responses to this directory ('.' for auto-name)
       -ssl               Force ssl mode on port
       -Tuning+           Scan tuning:
                               1     Interesting File / Seen in logs
                               2     Misconfiguration / Default File
                               3     Information Disclosure
                               4     Injection (XSS/Script/HTML)
                               5     Remote File Retrieval - Inside Web Root
                               6     Denial of Service
                               7     Remote File Retrieval - Server Wide
                               8     Command Execution / Remote Shell
                               9     SQL Injection
                               0     File Upload
                               a     Authentication Bypass
                               b     Software Identification
                               c     Remote Source Inclusion
                               d     WebService
                               e     Administrative Console
                               x     Reverse Tuning Options (i.e., include all except specified)
       -timeout+          Timeout for requests (default 10 seconds)
       -Userdbs           Load only user databases, not the standard databases
                               all   Disable standard dbs and load only user dbs
                               tests Disable only db_tests and load udb_tests
       -useragent         Force User-Agent instead of pulling from database
       -url+              Target host/URL (alias of -host)
       -useproxy          Use the proxy defined in nikto.conf, or argument http://server:port
       -Version           Print plugin and database versions
       -vhost+            Virtual host (for Host header)
       -404code           Ignore these HTTP codes as negative responses (always). Format is "302,301".
       -404string         Ignore this string in response body content as negative response (always). Can be a regular expression.
            + requires a value
```

# Nikto DSL Matchers

Nikto's test database supports a mini-DSL for matching responses. The following matchers are supported:

- `BODY:` and `!BODY:` — Match or exclude content in the response body.
- `HEADER:` and `!HEADER:` — Match or exclude content in HTTP headers.
- `COOKIE:` and `!COOKIE:` — Match or exclude content in HTTP cookies. (NEW)
- `CODE:` and `!CODE:` — Match or exclude HTTP status codes.

You can combine multiple matchers with `&&` (AND). Example:

    BODY:login&&!BODY:logout&&HEADER:X-Powered-By&&COOKIE:sessionid

This will match if the response body contains "login", does not contain "logout", the headers include "X-Powered-By", and a cookie named "sessionid" is present.

License
=======
Copyright (C) 2001–2026 Chris Sullo. All rights reserved.

This license notice applies to: Nikto's code only

See [COPYING.LibWhisker](COPYING.LibWhisker) for LibWhisker licensing information.

Database files are NOT licensed under the GPL and may only be distributed as part of the official Nikto package or installer, for use exclusively with Nikto.

For full licensing terms and commercial use policies, visit:
https://cirt.net/Nikto-Licensing

This program is free software: you can redistribute it and/or modify  it under the terms of the GNU General Public License version 3,  as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful,  but WITHOUT ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  GNU General Public License for more details.

The full license text is available at: https://www.gnu.org/licenses/gpl-3.0.txt

See [COPYING](COPYING) for the complete license notice.


================================================
FILE: documentation/manpage.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY description SYSTEM "sections/description.xml">
<!ENTITY options SYSTEM "sections/options.xml">
<!ENTITY files SYSTEM "sections/files.xml">
<!ENTITY bugs SYSTEM "sections/bugs.xml">
<!ENTITY authors SYSTEM "sections/authors.xml">
<!ENTITY product "nikto.pl">
]>

<refentry id="commands.nikto">
  <refentryinfo>
    <productname>&product;</productname>
  </refentryinfo>
 
  <refmeta>
    <refentrytitle>&product;</refentrytitle>
    <manvolnum>1</manvolnum>
    <refmiscinfo class="version">2.5.0</refmiscinfo>
    <refmiscinfo class="source">http://www.cirt.net/</refmiscinfo>
    <refmiscinfo class="manual">Vulnerability Scanner</refmiscinfo>
  </refmeta>

  <refnamediv>
    <refname>nikto.pl</refname>
    <refpurpose>Scan web server for known vulnerabilities</refpurpose>
  </refnamediv>

  <refsynopsisdiv>
    <cmdsynopsis>
      <command>nikto.pl</command>
      <arg choice="opt" rep="repeat">options</arg>
    </cmdsynopsis>
  </refsynopsisdiv>

  <refsect1>
    <title>Description</title>
    <para>
      Nikto is an Open Source web server scanner which performs comprehensive tests against web servers for multiple items that are generally considered dangerous. It checks for:
    </para>
    <itemizedlist>
      <listitem><para>Server and software misconfigurations</para></listitem>
      <listitem><para>Default files and programs</para></listitem>
      <listitem><para>Insecure files and programs</para></listitem>
      <listitem><para>Outdated servers and programs</para></listitem>
      <listitem><para>Dangerous files</para></listitem>
      <listitem><para>Other problems</para></listitem>
    </itemizedlist>
    <para>
      Nikto is built on LibWhisker2 (LW2) and can run on any platform which has a Perl environment. It supports SSL, proxies, host authentication, attack encoding and more. It can be updated automatically from the command-line, and supports the optional submission of updated version data back to the maintainers.
    </para>
  </refsect1>

  <refsect1>
    <title>Options</title>
    <variablelist>
      <varlistentry>
        <term><option>-ask</option> <replaceable>yes|no|auto</replaceable></term>
        <listitem>
          <para>Whether to ask about submitting updates. Options: yes (ask about each), no (don't ask, don't send), auto (don't ask, just send).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Add-header</option> <replaceable>header:value</replaceable></term>
        <listitem>
          <para>Add HTTP headers (can be used multiple times, one per header pair).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-check6</option></term>
        <listitem>
          <para>Check if IPv6 is working (connects to ipv6.google.com or value set in nikto.conf).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Cgidirs</option> <replaceable>dirs</replaceable></term>
        <listitem>
          <para>Scan these CGI directories. Special words "none" or "all" may be used. A literal value for a CGI directory such as "/cgi-test/" may be specified (must include trailing slash).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-config</option> <replaceable>file</replaceable></term>
        <listitem>
          <para>Use this config file instead of the default nikto.conf.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-dbcheck</option></term>
        <listitem>
          <para>Check database and other key files for syntax errors.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Display</option> <replaceable>options</replaceable></term>
        <listitem>
          <para>Turn on/off display outputs: 1 (Show redirects), 2 (Show cookies received), 3 (Show all 200/OK responses), 4 (Show URLs which require authentication), D (Debug output), E (Display all HTTP errors), P (Print progress to STDOUT), S (Scrub output of IPs and hostnames), V (Verbose output).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-evasion</option> <replaceable>technique</replaceable></term>
        <listitem>
          <para>Encoding technique: 1 (Random URI encoding), 2 (Directory self-reference), 3 (Premature URL ending), 4 (Prepend long random string), 5 (Fake parameter), 6 (TAB as request spacer), 7 (Change the case of the URL), 8 (Use Windows directory separator), A (Use carriage return as request spacer), B (Use binary value 0x0b as request spacer).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-followredirects</option></term>
        <listitem>
          <para>Follow 3xx redirects to new location.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Format</option> <replaceable>format</replaceable></term>
        <listitem>
          <para>Save file format: csv (Comma-separated-value), json (JSON Format), htm (HTML Format), sql (Generic SQL, see docs for schema), sqld (SQL Direct, directly inserts into MySQL/PostgreSQL database), txt (Plain text), xml (XML Format). Multiple formats can be specified as a comma-separated list. If not specified, the format will be taken from the file extension passed to -output. Note: sqld format requires DB_TYPE, DB_HOST, DB_PORT, DB_NAME in nikto.conf and NIKTO_DB_USER, NIKTO_DB_PASS environment variables.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Help</option></term>
        <listitem>
          <para>Display extended help information.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-host</option> <replaceable>target</replaceable></term>
        <listitem>
          <para>Host(s) to target. Can be an IP address, hostname or text file of hosts. A single dash (-) maybe used for stdout. Can also parse nmap -oG style output.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-id</option> <replaceable>id:pass[:realm]</replaceable></term>
        <listitem>
          <para>ID and password to use for host Basic host authentication. Format is "id:password" or "id:password:realm".</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-ipv4</option></term>
        <listitem>
          <para>IPv4 Only.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-ipv6</option></term>
        <listitem>
          <para>IPv6 Only.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-key</option> <replaceable>file</replaceable></term>
        <listitem>
          <para>Client certificate key file.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-list-plugins</option></term>
        <listitem>
          <para>List all available plugins, perform no testing.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-maxtime</option> <replaceable>time</replaceable></term>
        <listitem>
          <para>Maximum testing time per host (e.g., 1h, 60m, 3600s).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-mutate</option> <replaceable>options</replaceable></term>
        <listitem>
          <para>Guess additional file names: 1 (Test all files with all root directories), 2 (Guess for password file names), 3 (Enumerate user names via Apache), 4 (Enumerate user names via cgiwrap), 6 (Attempt to guess directory names from dictionary file).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-mutate-options</option> <replaceable>options</replaceable></term>
        <listitem>
          <para>Provide information for mutates.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-no404</option></term>
        <listitem>
          <para>Disables nikto attempting to guess a 404 page.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-nocookies</option></term>
        <listitem>
          <para>Do not use cookies from responses in requests.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-nointeractive</option></term>
        <listitem>
          <para>Disable interactive features.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-nolookup</option></term>
        <listitem>
          <para>Do not perform name lookups on IP addresses.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-noslash</option></term>
        <listitem>
          <para>Strip trailing slash from URL (e.g., '/admin/' to '/admin').</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-nossl</option></term>
        <listitem>
          <para>Do not use SSL to connect to the server.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Option</option> <replaceable>name=value</replaceable></term>
        <listitem>
          <para>Over-ride an option in nikto.conf, can be issued multiple times.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-output</option> <replaceable>file</replaceable></term>
        <listitem>
          <para>Write output to the file specified ('.' for auto-name). The format used will be taken from the file extension. This can be over-ridden by using the -Format option.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Pause</option> <replaceable>seconds</replaceable></term>
        <listitem>
          <para>Seconds (integer or floating point) to delay between each test.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Platform</option> <replaceable>platform</replaceable></term>
        <listitem>
          <para>Platform of target: nix (Unix/Linux), win (Windows), or all (both).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Plugins</option> <replaceable>list</replaceable></term>
        <listitem>
          <para>List of plugins to run (default: ALL).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-port</option> <replaceable>ports</replaceable></term>
        <listitem>
          <para>TCP port(s) to target. To test more than one port on the same host, specify the list of ports. Ports can be specified as a range (i.e., 80-90), or as a comma-delimited list, (i.e., 80,88,90). If not specified, port 80 is used.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-RSAcert</option> <replaceable>file</replaceable></term>
        <listitem>
          <para>Client certificate file.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-root</option> <replaceable>path</replaceable></term>
        <listitem>
          <para>Prepend root value to all requests, format is /directory.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Save</option> <replaceable>directory</replaceable></term>
        <listitem>
          <para>Save positive responses to this directory ('.' for auto-name).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-ssl</option></term>
        <listitem>
          <para>Only test SSL on the ports specified. Using this option will dramatically speed up requests to HTTPS ports, since otherwise the HTTP request will have to timeout first.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-timeout</option> <replaceable>seconds</replaceable></term>
        <listitem>
          <para>Seconds to wait before timing out a request. Default timeout is 10 seconds.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Tuning</option> <replaceable>options</replaceable></term>
        <listitem>
          <para>Tuning options will control the test that Nikto will use against a target. By default, if any options are specified, only those tests will be performed. If the "x" option is used, it will reverse the logic and exclude only those tests. Use the reference number or letter to specify the type, multiple may be used:</para>
          <itemizedlist>
            <listitem><para>0 - File Upload</para></listitem>
            <listitem><para>1 - Interesting File / Seen in logs</para></listitem>
            <listitem><para>2 - Misconfiguration / Default File</para></listitem>
            <listitem><para>3 - Information Disclosure</para></listitem>
            <listitem><para>4 - Injection (XSS/Script/HTML)</para></listitem>
            <listitem><para>5 - Remote File Retrieval - Inside Web Root</para></listitem>
            <listitem><para>6 - Denial of Service</para></listitem>
            <listitem><para>7 - Remote File Retrieval - Server Wide</para></listitem>
            <listitem><para>8 - Command Execution / Remote Shell</para></listitem>
            <listitem><para>9 - SQL Injection</para></listitem>
            <listitem><para>a - Authentication Bypass</para></listitem>
            <listitem><para>b - Software Identification</para></listitem>
            <listitem><para>c - Remote Source Inclusion</para></listitem>
            <listitem><para>d - WebService</para></listitem>
            <listitem><para>e - Administrative Console</para></listitem>
            <listitem><para>x - Reverse Tuning Options (i.e., include all except specified)</para></listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-url</option> <replaceable>target</replaceable></term>
        <listitem>
          <para>Target host/URL (alias of -host).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Userdbs</option> <replaceable>type</replaceable></term>
        <listitem>
          <para>Load only user databases, not the standard databases. Options: all (Disable standard dbs and load only user dbs), tests (Disable only db_tests and load udb_tests).</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-useragent</option> <replaceable>string</replaceable></term>
        <listitem>
          <para>Over-rides the default useragent.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-useproxy</option> <replaceable>proxy</replaceable></term>
        <listitem>
          <para>Use the HTTP proxy defined in the configuration file, or given as argument in the format http://server:port.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-Version</option></term>
        <listitem>
          <para>Display the Nikto software, plugin and database versions.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-vhost</option> <replaceable>hostname</replaceable></term>
        <listitem>
          <para>Specify the Host header to be sent to the target.</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-404code</option> <replaceable>codes</replaceable></term>
        <listitem>
          <para>Ignore these HTTP codes as negative responses (always). Format is "302,301".</para>
        </listitem>
      </varlistentry>

      <varlistentry>
        <term><option>-404string</option> <replaceable>string</replaceable></term>
        <listitem>
          <para>Ignore this string in response body content as negative response (always). Can be a regular expression.</para>
        </listitem>
      </varlistentry>
    </variablelist>
  </refsect1>

  <refsect1>
    <title>DSL Matchers</title>
    <para>
      Nikto's test database supports a mini-DSL for matching responses. The following matchers are supported:
      <itemizedlist>
        <listitem><para><literal>BODY:</literal> and <literal>!BODY:</literal> — Match or exclude content in the response body.</para></listitem>
        <listitem><para><literal>HEADER:</literal> and <literal>!HEADER:</literal> — Match or exclude content in HTTP headers.</para></listitem>
        <listitem><para><literal>COOKIE:</literal> and <literal>!COOKIE:</literal> — Match or exclude content in HTTP cookies. (NEW)</para></listitem>
        <listitem><para><literal>CODE:</literal> and <literal>!CODE:</literal> — Match or exclude HTTP status codes.</para></listitem>
      </itemizedlist>
      <para>You can combine multiple matchers with <literal>&amp;&amp;</literal> (AND). Example:</para>
      <programlisting>
        BODY:login&amp;&amp;!BODY:logout&amp;&amp;HEADER:X-Powered-By&amp;&amp;COOKIE:sessionid
      </programlisting>
      <para>This will match if the response body contains "login", does not contain "logout", the headers include "X-Powered-By", and a cookie named "sessionid" is present.</para>
    </para>
  </refsect1>

  <refsect1>
    <title>Files</title>
    <variablelist>
      <varlistentry>
        <term><filename>nikto.conf</filename></term>
        <listitem>
          <para>The Nikto configuration file. This sets Nikto's global options. Several nikto.conf files may exist and are parsed in the below order. As each configuration file is loaded is supersedes any previously set configuration:</para>
          <itemizedlist>
            <listitem><para>System wide (e.g. /etc/nikto.conf)</para></listitem>
            <listitem><para>Home directory (e.g. $HOME/nikto.conf)</para></listitem>
            <listitem><para>Current directory (e.g. ./nikto.conf)</para></listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term><filename>${NIKTO_DIR}/databases/db*</filename></term>
        <listitem>
          <para>Database files that nikto uses to check for vulnerabilities and issues within the web server.</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term><filename>${NIKTO_DIR}/plugins/*.plugin</filename></term>
        <listitem>
          <para>All nikto's plugins exist here. Nikto itself is just a wrapper script to manage CLI and pass through to the plugins.</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term><filename>${NIKTO_DIR}/templates</filename></term>
        <listitem>
          <para>Contains the templates for nikto's output formats.</para>
        </listitem>
      </varlistentry>
    </variablelist>
  </refsect1>

  <refsect1>
    <title>Bugs</title>
    <para>
      The current features are not supported:
    </para>
    <itemizedlist>
      <listitem>
        <para>SOCKS Proxies</para>
      </listitem>
    </itemizedlist>
  </refsect1>

  <refsect1>
    <title>Authors</title>
    <para>
      Nikto is written and maintained by Chris Sullo and David Lodge. See the main documentation for other contributors.
    </para>
    <para>
      All code is Copyright CIRT, Inc., except LibWhisker which is Copyright (c) 2009, Jeff Forristal (wiretrip.net). Other portions of code may be (C) as specified.
    </para>
  </refsect1>

  <refsect1>
    <title>See also</title>
    <para>
      <ulink url="http://www.cirt.net/">Nikto Homepage</ulink>
    </para>
  </refsect1>
</refentry>


================================================
FILE: documentation/nikto.1
================================================
'\" t
.\"     Title: nikto.pl
.\"    Author: [see the "Authors" section]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\"      Date: 12/24/2025
.\"    Manual: Vulnerability Scanner
.\"    Source: http://www.cirt.net/ 2.5.0
.\"  Language: English
.\"
.TH "NIKTO\&.PL" "1" "12/24/2025" "http://www\&.cirt\&.net/ 2\&.5" "Vulnerability Scanner"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
nikto.pl \- Scan web server for known vulnerabilities
.SH "SYNOPSIS"
.HP \w'\fBnikto\&.pl\fR\ 'u
\fBnikto\&.pl\fR [options...]
.SH "DESCRIPTION"
.PP
Nikto is an Open Source web server scanner which performs comprehensive tests against web servers for multiple items that are generally considered dangerous\&. It checks for:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Server and software misconfigurations
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Default files and programs
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Insecure files and programs
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Outdated servers and programs
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Dangerous files
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Other problems
.RE
.PP
Nikto is built on LibWhisker2 (LW2) and can run on any platform which has a Perl environment\&. It supports SSL, proxies, host authentication, attack encoding and more\&. It can be updated automatically from the command\-line, and supports the optional submission of updated version data back to the maintainers\&.
.SH "OPTIONS"
.PP
\fB\-ask\fR \fIyes|no|auto\fR
.RS 4
Whether to ask about submitting updates\&. Options: yes (ask about each), no (don\*(Aqt ask, don\*(Aqt send), auto (don\*(Aqt ask, just send)\&.
.RE
.PP
\fB\-Add\-header\fR \fIheader:value\fR
.RS 4
Add HTTP headers (can be used multiple times, one per header pair)\&.
.RE
.PP
\fB\-check6\fR
.RS 4
Check if IPv6 is working (connects to ipv6\&.google\&.com or value set in nikto\&.conf)\&.
.RE
.PP
\fB\-Cgidirs\fR \fIdirs\fR
.RS 4
Scan these CGI directories\&. Special words "none" or "all" may be used\&. A literal value for a CGI directory such as "/cgi\-test/" may be specified (must include trailing slash)\&.
.RE
.PP
\fB\-config\fR \fIfile\fR
.RS 4
Use this config file instead of the default nikto\&.conf\&.
.RE
.PP
\fB\-dbcheck\fR
.RS 4
Check database and other key files for syntax errors\&.
.RE
.PP
\fB\-Display\fR \fIoptions\fR
.RS 4
Turn on/off display outputs: 1 (Show redirects), 2 (Show cookies received), 3 (Show all 200/OK responses), 4 (Show URLs which require authentication), D (Debug output), E (Display all HTTP errors), P (Print progress to STDOUT), S (Scrub output of IPs and hostnames), V (Verbose output)\&.
.RE
.PP
\fB\-evasion\fR \fItechnique\fR
.RS 4
Encoding technique: 1 (Random URI encoding), 2 (Directory self\-reference), 3 (Premature URL ending), 4 (Prepend long random string), 5 (Fake parameter), 6 (TAB as request spacer), 7 (Change the case of the URL), 8 (Use Windows directory separator), A (Use carriage return as request spacer), B (Use binary value 0x0b as request spacer)\&.
.RE
.PP
\fB\-followredirects\fR
.RS 4
Follow 3xx redirects to new location\&.
.RE
.PP
\fB\-Format\fR \fIformat\fR
.RS 4
Save file format: csv (Comma\-separated\-value), json (JSON Format), htm (HTML Format), sql (Generic SQL, see docs for schema), sqld (SQL Direct, directly inserts into MySQL/PostgreSQL database), txt (Plain text), xml (XML Format)\&. Multiple formats can be specified as a comma\-separated list\&. If not specified, the format will be taken from the file extension passed to \-output\&. Note: sqld format requires DB_TYPE, DB_HOST, DB_PORT, DB_NAME in nikto\&.conf and NIKTO_DB_USER, NIKTO_DB_PASS environment variables\&.
.RE
.PP
\fB\-Help\fR
.RS 4
Display extended help information\&.
.RE
.PP
\fB\-host\fR \fItarget\fR
.RS 4
Host(s) to target\&. Can be an IP address, hostname or text file of hosts\&. A single dash (\-) maybe used for stdout\&. Can also parse nmap \-oG style output\&.
.RE
.PP
\fB\-id\fR \fIid:pass[:realm]\fR
.RS 4
ID and password to use for host Basic host authentication\&. Format is "id:password" or "id:password:realm"\&.
.RE
.PP
\fB\-ipv4\fR
.RS 4
IPv4 Only\&.
.RE
.PP
\fB\-ipv6\fR
.RS 4
IPv6 Only\&.
.RE
.PP
\fB\-key\fR \fIfile\fR
.RS 4
Client certificate key file\&.
.RE
.PP
\fB\-list\-plugins\fR
.RS 4
List all available plugins, perform no testing\&.
.RE
.PP
\fB\-maxtime\fR \fItime\fR
.RS 4
Maximum testing time per host (e\&.g\&., 1h, 60m, 3600s)\&.
.RE
.PP
\fB\-mutate\fR \fIoptions\fR
.RS 4
Guess additional file names: 1 (Test all files with all root directories), 2 (Guess for password file names), 3 (Enumerate user names via Apache), 4 (Enumerate user names via cgiwrap), 6 (Attempt to guess directory names from dictionary file)\&.
.RE
.PP
\fB\-mutate\-options\fR \fIoptions\fR
.RS 4
Provide information for mutates\&.
.RE
.PP
\fB\-no404\fR
.RS 4
Disables nikto attempting to guess a 404 page\&.
.RE
.PP
\fB\-nocookies\fR
.RS 4
Do not use cookies from responses in requests\&.
.RE
.PP
\fB\-nointeractive\fR
.RS 4
Disable interactive features\&.
.RE
.PP
\fB\-nolookup\fR
.RS 4
Do not perform name lookups on IP addresses\&.
.RE
.PP
\fB\-noslash\fR
.RS 4
Strip trailing slash from URL (e\&.g\&., \*(Aq/admin/\*(Aq to \*(Aq/admin\*(Aq)\&.
.RE
.PP
\fB\-nossl\fR
.RS 4
Do not use SSL to connect to the server\&.
.RE
.PP
\fB\-Option\fR \fIname=value\fR
.RS 4
Over\-ride an option in nikto\&.conf, can be issued multiple times\&.
.RE
.PP
\fB\-output\fR \fIfile\fR
.RS 4
Write output to the file specified (\*(Aq\&.\*(Aq for auto\-name)\&. The format used will be taken from the file extension\&. This can be over\-ridden by using the \-Format option\&.
.RE
.PP
\fB\-Pause\fR \fIseconds\fR
.RS 4
Seconds (integer or floating point) to delay between each test\&.
.RE
.PP
\fB\-Platform\fR \fIplatform\fR
.RS 4
Platform of target: nix (Unix/Linux), win (Windows), or all (both)\&.
.RE
.PP
\fB\-Plugins\fR \fIlist\fR
.RS 4
List of plugins to run (default: ALL)\&.
.RE
.PP
\fB\-port\fR \fIports\fR
.RS 4
TCP port(s) to target\&. To test more than one port on the same host, specify the list of ports\&. Ports can be specified as a range (i\&.e\&., 80\-90), or as a comma\-delimited list, (i\&.e\&., 80,88,90)\&. If not specified, port 80 is used\&.
.RE
.PP
\fB\-RSAcert\fR \fIfile\fR
.RS 4
Client certificate file\&.
.RE
.PP
\fB\-root\fR \fIpath\fR
.RS 4
Prepend root value to all requests, format is /directory\&.
.RE
.PP
\fB\-Save\fR \fIdirectory\fR
.RS 4
Save positive responses to this directory (\*(Aq\&.\*(Aq for auto\-name)\&.
.RE
.PP
\fB\-ssl\fR
.RS 4
Only test SSL on the ports specified\&. Using this option will dramatically speed up requests to HTTPS ports, since otherwise the HTTP request will have to timeout first\&.
.RE
.PP
\fB\-timeout\fR \fIseconds\fR
.RS 4
Seconds to wait before timing out a request\&. Default timeout is 10 seconds\&.
.RE
.PP
\fB\-Tuning\fR \fIoptions\fR
.RS 4
Tuning options will control the test that Nikto will use against a target\&. By default, if any options are specified, only those tests will be performed\&. If the "x" option is used, it will reverse the logic and exclude only those tests\&. Use the reference number or letter to specify the type, multiple may be used:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
0 \- File Upload
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
1 \- Interesting File / Seen in logs
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
2 \- Misconfiguration / Default File
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
3 \- Information Disclosure
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
4 \- Injection (XSS/Script/HTML)
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
5 \- Remote File Retrieval \- Inside Web Root
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
6 \- Denial of Service
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
7 \- Remote File Retrieval \- Server Wide
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
8 \- Command Execution / Remote Shell
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
9 \- SQL Injection
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
a \- Authentication Bypass
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
b \- Software Identification
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
c \- Remote Source Inclusion
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
d \- WebService
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
e \- Administrative Console
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
x \- Reverse Tuning Options (i\&.e\&., include all except specified)
.RE
.RE
.PP
\fB\-url\fR \fItarget\fR
.RS 4
Target host/URL (alias of \-host)\&.
.RE
.PP
\fB\-Userdbs\fR \fItype\fR
.RS 4
Load only user databases, not the standard databases\&. Options: all (Disable standard dbs and load only user dbs), tests (Disable only db_tests and load udb_tests)\&.
.RE
.PP
\fB\-useragent\fR \fIstring\fR
.RS 4
Over\-rides the default useragent\&.
.RE
.PP
\fB\-useproxy\fR \fIproxy\fR
.RS 4
Use the HTTP proxy defined in the configuration file, or given as argument in the format http://server:port\&.
.RE
.PP
\fB\-Version\fR
.RS 4
Display the Nikto software, plugin and database versions\&.
.RE
.PP
\fB\-vhost\fR \fIhostname\fR
.RS 4
Specify the Host header to be sent to the target\&.
.RE
.PP
\fB\-404code\fR \fIcodes\fR
.RS 4
Ignore these HTTP codes as negative responses (always)\&. Format is "302,301"\&.
.RE
.PP
\fB\-404string\fR \fIstring\fR
.RS 4
Ignore this string in response body content as negative response (always)\&. Can be a regular expression\&.
.RE
.SH "DSL MATCHERS"
.PP
Nikto\*(Aqs test database supports a mini\-DSL for matching responses\&. The following matchers are supported:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
BODY:
and
!BODY:
\(em Match or exclude content in the response body\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
HEADER:
and
!HEADER:
\(em Match or exclude content in HTTP headers\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
COOKIE:
and
!COOKIE:
\(em Match or exclude content in HTTP cookies\&. (NEW)
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
CODE:
and
!CODE:
\(em Match or exclude HTTP status codes\&.
.RE
.PP You can combine multiple matchers with && (AND)\&. Example:
.sp
.if n \{\
.RS 4
.\}
.nf
        BODY:login&&!BODY:logout&&HEADER:X\-Powered\-By&&COOKIE:sessionid
      
.fi
.if n \{\
.RE
.\}
.PP This will match if the response body contains "login", does not contain "logout", the headers include "X\-Powered\-By", and a cookie named "sessionid" is present\&.
.SH "FILES"
.PP
nikto\&.conf
.RS 4
The Nikto configuration file\&. This sets Nikto\*(Aqs global options\&. Several nikto\&.conf files may exist and are parsed in the below order\&. As each configuration file is loaded is supersedes any previously set configuration:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
System wide (e\&.g\&. /etc/nikto\&.conf)
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Home directory (e\&.g\&. $HOME/nikto\&.conf)
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Current directory (e\&.g\&. \&./nikto\&.conf)
.RE
.RE
.PP
${NIKTO_DIR}/databases/db*
.RS 4
Database files that nikto uses to check for vulnerabilities and issues within the web server\&.
.RE
.PP
${NIKTO_DIR}/plugins/*\&.plugin
.RS 4
All nikto\*(Aqs plugins exist here\&. Nikto itself is just a wrapper script to manage CLI and pass through to the plugins\&.
.RE
.PP
${NIKTO_DIR}/templates
.RS 4
Contains the templates for nikto\*(Aqs output formats\&.
.RE
.SH "BUGS"
.PP
The current features are not supported:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
SOCKS Proxies
.RE
.SH "AUTHORS"
.PP
Nikto is written and maintained by Chris Sullo and David Lodge\&. See the main documentation for other contributors\&.
.PP
All code is Copyright CIRT, Inc\&., except LibWhisker which is Copyright (c) 2009, Jeff Forristal (wiretrip\&.net)\&. Other portions of code may be (C) as specified\&.
.SH "SEE ALSO"
.PP
\m[blue]\fBNikto Homepage\fR\m[]\&\s-2\u[1]\d\s+2
.SH "NOTES"
.IP " 1." 4
Nikto Homepage
.RS 4
\%http://www.cirt.net/
.RE


================================================
FILE: documentation/nikto_schema_mysql.sql
================================================
CREATE TABLE `nikto_table` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `scanid` varchar(32) DEFAULT NULL,
  `testid` varchar(6) NOT NULL,
  `ip` varchar(15) DEFAULT NULL,
  `hostname` text DEFAULT NULL,
  `port` int(5) DEFAULT NULL,
  `tls` tinyint(1) DEFAULT NULL,
  `refs` text DEFAULT NULL,
  `httpmethod` text DEFAULT NULL,
  `uri` text DEFAULT NULL,
  `message` text DEFAULT NULL,
  `request` blob DEFAULT NULL,
  `response` mediumblob DEFAULT NULL,
  PRIMARY KEY (`id`)
);

-- MySQL/MariaDB specific column types:
--   request: BLOB (64KB limit)
--   response: MEDIUMBLOB (16MB limit)
-- The plugin automatically truncates data to fit within these limits:
--   request: 48KB raw (fits in 64KB BLOB after base64 encoding)
--   response: 12MB raw (fits in 16MB MEDIUMBLOB after base64 encoding)


================================================
FILE: documentation/nikto_schema_postgresql.sql
================================================
CREATE TABLE nikto_table (
  id serial NOT NULL,
  scanid varchar(32) DEFAULT NULL,
  testid varchar(6) NOT NULL,
  ip varchar(15) DEFAULT NULL,
  hostname text DEFAULT NULL,
  port integer DEFAULT NULL,
  tls smallint DEFAULT NULL,
  refs text DEFAULT NULL,
  httpmethod text DEFAULT NULL,
  uri text DEFAULT NULL,
  message text DEFAULT NULL,
  request bytea DEFAULT NULL,
  response bytea DEFAULT NULL,
  PRIMARY KEY (id)
);

-- PostgreSQL specific column types:
--   request: bytea (theoretical limit ~1GB, practical limits apply)
--   response: bytea (theoretical limit ~1GB, practical limits apply)
-- The plugin automatically truncates data for performance and cross-DB compatibility:
--   request: 48KB raw (matches MySQL BLOB limit)
--   response: 12MB raw (matches MySQL MEDIUMBLOB limit)
-- PostgreSQL bytea can store much larger data, but these limits ensure consistent
-- behavior across database types and prevent performance issues with very large responses



================================================
FILE: documentation/perltidyrc
================================================
# perltidy options for nikto development
# copy to ~/.perltidyrc
-lp
-vt=2
-pt=2
-cti=3
-bar
-nolq
-l=100


================================================
FILE: program/.timestamp
================================================
1773974668


================================================
FILE: program/databases/db_404_strings
================================================
#######################################################################
# File Source: https://cirt.net
# (c) 2001 Chris Sullo, All Rights Reserved.
# This file may only be distributed and used with the full Nikto package.
# This file may not be used with any software product without written permission from 
# Chris Sullo (sullo@cirt.net)
#
# Note:
# By submitting updates to this file you are transferring any and all copyright
# interest in the data to Chris Sullo so it can modified, incorporated into this product
# relicensed or reused.
#######################################################################
# Strings to be used for 404 content match
#######################################################################
Access Failed
an error
Bad Request
Client Authentication Remote Service
could not find
error has occurred
Error 404
Error Occurred While Processing Request
Error processing SSI file
ExtendNet DX Configuration
FireWall-1 message
forcelogon.htm
IMail Server Web Messaging
Management Console	
name=qt id="search" size=40 value=" "
No web site is configured at this address
not found
parameter is incorrect                                   # IIS 5.0 500 error
Please identify yourself:
Reload acp_userinfo database
RSA SecurID User Name Request
The userid or password that was specified is not valid.  # Tivoli server administrator   
TYPE=password	                                         # As in "<input type=password>"
Unable to complete your request
unable to open
Web access denied
Hack Attempts
does not exist                                           # SAP NetWeaver
<b>Wrong URL.                                            # Cisco SSL VPN
page may no longer exist
page no longer exist
Your session has expired				# cPanel webmail
no longer available
Request Rejected
More about this error					# MS Lync 2010
No target SAP system for request			# SAP web server
no valid destination server available for		# SAP web server
unauthorized public IP address				# BigIP
<TITLE>Invalid URL</TITLE>                              # AkamaiGhost
WebContentNotFound


================================================
FILE: program/databases/db_content_search
================================================
#######################################################################
# File Source: https://cirt.net
# (c) 2001 Chris Sullo, All Rights Reserved.
# This file may only be distributed and used with the full Nikto package.
# This file may not be used with any software product without written permission from
# Chris Sullo (sullo@cirt.net)
#
# Note:
# By submitting updates to this file you are transferring any and all copyright
# interest in the data to Chris Sullo so it can modified, incorporated into this product
# relicensed or reused.
#######################################################################
# Matchers can be regex and support etractors. 
# WARNING: these match every response--be efficient and minimal.
#######################################################################
"nikto_id","references","matchstring","message"
"750500","CWE-548","[iI]ndex\s[oO]f\s\/","Directory indexing found."
"750501","","(Warning(?:<\/b>)?:\s+(?:include|require)(?:_once)?\()","PHP include error may indicate local or remote file inclusion is possible. The error is: $1 ."
"750502","","failed to open stream: No such file or directory in (?:<b>)?([a-zA-Z]:\\|\/)","PHP include error reveals the full path to the web root. The error is: $1 ."
"750503","","mysql_p?connect\(","Potential PHP MySQL database connection string found."
"750504","","pgp_p?connect\(","Potential PHP PostgreSQL database connection string found."
"750505","","sqlite_p?open\(","Potential PHP SQLite database connection string found."
"750506","","mssql_p?connect\(","Potential PHP MSSQL database connection string found."
"750507","","Call to undefined function.*\(\) in \/","PHP error reveals file system path."
"750508","CVE-2006-5272","FrameworkLog.xsl\"\\?>.*<version>([0-2]|3\.(?:[0-5]|6\.0\.(?:[0-4]|5(?:[0-3]|4[0-5]))))","McAfee Common Management Agent version $1 found."
"750509","","However, we found documents with names similar to the one you requested","The mod_speling module can reveal otherwise 'hidden' files in directories."
"750510","","makes use of the Zend Scripting Language","Output from the phpinfo() function was found."
"750511","","SQLSTATE\[","A database error may reveal internal details about the running database."
"750512","CWE-548","jetty-dir.css\" REL=\"stylesheet\" TYPE=\"text/css\"\/><TITLE>Directory: \/","Jetty directory indexing found."
"750516","","plain HTTP to an SSL","You appear to be scanning an HTTPS site with HTTP. This probably isn't what you want."
"750517","","plain HTTP request was sent to HTTPS","You appear to be scanning an HTTPS site with HTTP. This probably isn't what you want."
"750519","","[Tt]omcat\s([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})","The Tomcat version is disclosed in error pages: $1."
"750520","","\<html\>\<head\>\<title\>Remote Access Controller<\/title>","Host seems to be a Dell Remote Access Controller."
"750521","https://makeawebsitehub.com/parked-domains/","parked FREE","Domain is parked at GoDaddy."
"750522","https://makeawebsitehub.com/parked-domains/","courtesy of GoDaddy\.com","Domain is parked at GoDaddy."
"750523","https://makeawebsitehub.com/parked-domains/","buy domain names","Domain is parked at GoDaddy."
"750524","https://makeawebsitehub.com/parked-domains/","\?epl\=","Domain is parked at domainsponsor.com."
"750525","https://makeawebsitehub.com/parked-domains/","Below are sponsored listings","Domain is parked at Google."
"750526","https://makeawebsitehub.com/parked-domains/","doubleclick\.net\/apps\/domainpark","Domain is parked at Google."
"750527","https://makeawebsitehub.com/parked-domains/","Asia Registry","Domain is parked at AsiaRegistry.com."
"750528","https://makeawebsitehub.com/parked-domains/","Get a domain name","Domain is parked at Network Solutions."
"750529","https://makeawebsitehub.com/parked-domains/","netsolhost","Domain is parked at Network Solutions."
"750530","https://makeawebsitehub.com/parked-domains/","Page Is Under Construction","Domain is parked at Network Solutions."
"750531","https://makeawebsitehub.com/parked-domains/","Sponsored Listings","Domain is parked at Voodoo.com."
"750532","https://makeawebsitehub.com/parked-domains/","FUTURE HOME OF A DOTSTER","Domain is parked at Dotster."
"750533","https://makeawebsitehub.com/parked-domains/","Share this \.tel","Domain is parked at Knipp."
"750534","https://trufflesecurity.com/blog/google-api-keys-werent-secrets-but-then-gemini-changed-the-rules","([>\"=]AIz[\w_\.-]+)","Google API keys may now be used for Gemini API access. The key is: $1 ."


================================================
FILE: program/databases/db_dictionary
================================================
#######################################################################
# File Source: https://cirt.net
# (c) 2001 Chris Sullo, All Rights Reserved.
# This file may only be distributed and used with the full Nikto package.
# This file may not be used with any software product without written permission from
# Chris Sullo (sullo@cirt.net)
#
# Note:
# By submitting updates to this file you are transferring any and all copyright
# interest in the data to Chris Sullo so it can modified, incorporated into this product
# relicensed or reused.
#######################################################################
ADM
ADMIN
AggreSpy
AppsLocalLogin
AppsLogin
BUILD
CMS
CVS
DB
DMSDump
Documents
Entries
FCKeditor
JMXSoapAdapter
LICENSE
MANIFEST.MF
META-INF
Makefile
OA
OAErrorDetailPage
OA_HTML
Program
README
Readme
Recycled
Root
SQL
SUNWmc
SiteScope
SiteServer
Spy
TEMP
TMP
TODO
Thumbs.db
WEB-INF
WS_FTP
XXX
_
_adm
_admin
_common
_conf
_files
_include
_js
_mem_bin
_old
_pages
_private
_res
_source
_src
_test
_vti_bin
_vti_cnf
_vti_pvt
_vti_txt
_www
a
aa
aaa
abc
abc123
abcd
abcd1234
about
access
access-log
access-log.1
access.1
access_log
access_log.1
accessibility
account
accounting
accounts
action
actions
active
activex
ad
adclick
add
addpost
addressbook
adm
admin
admin_
adodb
ads
adv
advanced
advertise
advertising
affiliate
affiliates
agenda
agent
agents
ajax
album
albums
alert
alerts
alias
aliases
all
alpha
alumni
amazon
analog
android
announcement
announcements
anon
anonymous
ansi
apac
apache
apexec
api
apis
app
appeal
appeals
append
appl
apple
appliation
applications
apps
apr
arch
archive
archives
array
art
article
articles
artwork
ascii
asdf
asset
assets
atlassian
atom
attach
attachment
attachments
attaches
attic
auction
audio
audit
audits
auth
author
authorized_keys
authors
auto
automatic
automation
avatar
avatars
award
awards
awl
awstats
b
b2b
b2c
back
backdoor
backend
backup
backups
bandwidth
bank
banks
banner
banners
bar
base
bash
basic
basket
baskets
batch
baz
bb
bb-hist
bb-histlog
bboard
bbs
beans
beehive
benefits
beta
bfc
big
bigip
bill
billing
binaries
binary
bins
bio
bios
biz
bkup
blah
blank
blog
blogger
bloggers
blogs
board
bofh
book
books
boot
bottom
broken
broker
browse
browser
bs
bsd
bugs
build
buildr
bulk
bullet
business
button
buttons
buy
buynow
bypass
ca
cache
cal
calendar
camel
car
card
cards
career
careers
cars
cart
carts
cat
catalog
catalogs
catalyst
categories
category
catinfo
cats
ccbill
cd
cerificate
cert
certificate
certificates
certs
cf
cfcache
cfdocs
cfide
cfusion
cgi-bin
cgi-bin2
cgi-home
cgi-local
cgi-pub
cgi-script
cgi-shl
cgi-sys
cgi-web
cgi-win
cgibin
cgiwrap
cgm-web
change
changed
changes
charge
charges
chat
chats
checkout
child
children
chrome
cisco
cisweb
citrix
cl
claim
claims
classes
classified
classifieds
clear
click
clicks
client
clientaccesspolicy
clients
close
closed
closing
club
cluster
clusters
cmd
cms
cnf
cnt
cocoon
code
codec
codecs
codes
cognos
coldfusion
columns
com
comment
comments
commerce
commercial
common
communicator
community
compact
company
complaint
complaints
compliance
component
components
compressed
computer
computers
computing
conference
conferences
configs
console
consumer
contact
contacts
content
contents
contest
contract
contracts
control
controller
controlpanel
cookie
cookies
copies
copy
copyright
core
corp
corpo
corporate
corrections
count
counter
counters
counts
course
courses
cover
cpadmin
cpanel
cr
crack
crash
crashes
create
credits
crm
cron
crons
crontab
crontabs
crossdomain
crypt
crypto
css
current
custom
custom-log
custom_log
customer
customers
cute
cv
cxf
czcmdcvt
d
daemon
daily
dana-na
data
database
databases
date
day
db_connect
dba
dbase
dbman
dbmodules
dbutil
dc
dcforum
de
dealer
debug
decl
declaration
declarations
decode
decrypt
decrypted
decryption
def
default
defaults
definition
definitions
del
delete
deleted
demo
demos
denied
deny
design
desktop
desktops
detail
details
dev
devel
developer
developers
development
device
devices
devs
df
dialog
dialogs
diff
diffs
digest
digg
dir
directories
directory
dirs
disabled
disclaimer
display
django
dl
dm
dm-config
dms
dms0
dns
docebo
dock
docroot
docs
document
documentation
documents
domain
domains
donate
down
download
downloader
downloads
drop
dropped
drupal
dummy
dumps
dvd
dwr
dynamic
e
e2fs
ear
ecommerce
edge
edit
editor
edits
edp
edu
education
ee
effort
efforts
egress
ejb
element
elements
em
email
emails
embed
embedded
emea
employees
employment
empty
emu
emulator
en
en_US
enc
encode
encrypt
encrypted
encryption
eng
engine
english
enterprise
entertainment
entries
entry
env
environ
environment
error
error-log
error_log
errors
es
esale
esales
etc
europe
event
events
evil
evt
ews
ex
example
examples
excalibur
exchange
exec
explorer
export
ext
ext2
extern
external
extras
ezshopper
f
face
faces
faculty
fail
failure
family
faq
faqs
favorite
favorites
fcgi-bin
feature
features
feed
feedback
feeds
felix
fetch
field
fields
file
fileadmin
files
filez
finance
financial
find
finger
firefox
firewall
first
fixed
flags
flash
flow
flows
flv
fn
folder
folders
font
fonts
foo
footer
footers
form
formatting
formmail
forms
forrest
fortune
forum
forum1
forum2
forumdisplay
forums
forward
foto
foundation
fr
frame
frames
framework
free
freebsd
friend
friends
frob
frontend
fs
ftp
fuck
fuckoff
fuckyou
full
fun
func
funcs
function
functions
fusion
fw
g
gadget
gadgets
galleries
gallery
game
games
ganglia
garbage
gateway
gb
geeklog
general
geronimo
get
getaccess
getjobid
gfx
gid
gitweb
glimpse
global
globals
glossary
go
goaway
google
government
gprs
grant
grants
graphics
group
groupcp
groups
gsm
guest
guestbook
guests
guide
guides
gump
gwt
h
hack
hacker
hacking
hackme
hadoop
hardcore
hardware
harmony
head
header
headers
health
hello
help
helper
helpers
hi
hidden
hide
high
hipaa
history
hit
hits
hole
home
homepage
hop
horde
hosting
hosts
hour
hourly
howto
hp
hr
hta
htbin
htdoc
htdocs
htpasswd
http
httpd
https
httpuser
hu
hyper
i
ia
ibm
icat
icon
icons
id
idea
ideas
ids
ie
iframe
ig
ignore
iisadmin
iisadmpwd
iissamples
image
imagefolio
images
imgs
imp
import
important
in
inbound
incl
include
includes
incoming
incubator
index
index1
index2
index_1
index_2
inetpub
inetsrv
inf
info
information
ingress
init
inline
input
inquire
inquiries
inquiry
insert
install
int
interim
intermediate
internal
international
internet
intl
intranet
intro
ip
ipc
iphone
ips
irc
is
isapi
iso
issues
it
item
j
j2ee
j2me
jakarta
java-plugin
javadoc
javascript
javax
jboss
jdbc
jigsaw
jira
jj
jmx-console
job
jobs
joe
john
join
joomla
journal
jp
jpa
jre
jrun
json
jsso
jsx
juniper
junk
jvm
k
kboard
keep
kernel
keygen
keys
kids
kill
known_hosts
l
labs
lang
large
law
layout
layouts
ldap
leader
leaders
left
legacy
legal
lenya
letters
level
lg
library
libs
license
licenses
limit
line
link
links
linux
list
listinfo
lists
live
lo
loader
loading
loc
local
location
lock
locked
log4j
logfile
logger
logging
login
logins
logo
logoff
logon
logos
logout
logs
lost
lost+found
low
ls
lucene
m
mac
mail
mailer
mailing
mailman
mails
main
mambo
manage
management
manager
manual
manuals
map
maps
mark
marketing
master
master.passwd
match
matrix
maven
mbox
me
media
medium
mem
member
members
membership
memory
menu
message
messages
messaging
microsoft
migrate
migration
mina
mini
minute
mirror
mirrors
misc
mission
mix
mlist
mms
mobi
mobile
mock
mod
modify
mods
module
modules
mojo
money
monitoring
month
monthly
more
motd
move
movie
movies
mp
mp3
mp3s
ms
ms-sql
msadc
msadm
msie
msql
mssql
mta
multimedia
music
mx
my
myadmin
myfaces
myphpnuke
mysql
mysqld
n
nav
navigation
nc
net
netbsd
netcat
nethome
nets
network
networking
new
news
newsletter
newsletters
newticket
next
nfs
nice
nl
nobody
node
none
note
notes
notification
notifications
notified
notifier
notify
ns
nuke
nul
null
oa_servlets
oauth
obdc
obsolete
obsoleted
odbc
ode
oem
ofbiz
office
onbound
online
op
open
openbsd
opendir
openejb
openjpa
opera
operations
opinion
oprocmgr-status
opt
option
options
oracle
oracle.xml.xsql.XSQLServlet
order
ordered
orders
org
osc
oscommerce
other
outgoing
outline
output
outreach
overview
owa
ows
ows-bin
p
p2p
pack
packages
page
page1
page2
page_1
page_2
pages
paid
panel
paper
papers
parse
partner
partners
party
pass
passwd
password
passwords
past
patch
patches
payment
payments
paypal
pbo
pc
pci
pda
pdfs
pear
peek
pending
people
perf
performance
perl
personal
pg
phf
phone
phones
phorum
photo
photos
phpBB
phpBB2
phpEventCalendar
phpMyAdmin
phpbb
phpmyadmin
phpnuke
phps
pic
pics
pictures
pii
ping
pipe
pipermail
piranha
pivot
pix
pixel
pkg
pkgs
plain
play
player
playing
playlist
pls
plugin
plugins
pm
poc
poi
policies
policy
politics
poll
polls
pool
pop
pop3
popup
porn
port
portal
portals
portfolio
pos
post
posted
postgres
postgresql
postnuke
postpaid
posts
pr
pr0n
premium
prepaid
presentation
presentations
preserve
press
preview
previews
previous
pricing
print
printenv
printer
printers
priv
privacy
private
pro
problems
proc
procedures
prod
product
product_info
production
products
profile
profiles
profiling
program
programming
programs
project
projects
promo
prop
properties
property
props
prot
protect
protected
protection
proto
proxies
proxy
prv
ps
psql
pt
pub
public
publication
publications
pubs
pull
purchase
purchases
purchasing
push
pw
pwd
python
q
qotd
qpid
queries
query
queue
queues
quote
quotes
r
radio
random
rdf
read
readme
realestate
receive
received
recharge
record
recorded
recorder
records
recovery
recycle
recycled
redir
redirect
reference
reg
register
registered
registration
registrations
release
releases
remind
reminder
remote
remove
removed
render
rendered
rep
repl
replica
replicas
replicate
replicated
replication
replicator
reply
report
reporting
reports
reprints
req
reqs
request
requests
requisition
requisitions
res
research
resin
resize
resource
resources
rest
restore
restored
restricted
results
retail
reverse
reversed
revert
reverted
review
reviews
right
roam
roaming
robot
robots
roller
room
root
rpc
ru
rule
rules
run
rwservlet
s
sale
sales
sam
samba
saml
sample
samples
sav
saved
saves
sbin
scan
scanned
scans
sched
schedule
scheduled
scheduling
schema
science
screen
screens
screenshot
screenshots
script
scriptlet
scriptlets
scripts
sdk
se
search
sec
second
secret
section
sections
secure
secured
security
seed
select
sell
send
sendmail
sendto
sent
serial
serv
serve
server
server-info
server-status
servers
service
services
servlet
servlets
session
sessions
setting
settings
setup
shadow
share
shared
shares
shell
ship
shipped
shipping
shop
shopper
shopping
shops
shoutbox
show
show_post
show_thread
showcat
showenv
showjobs
showmap
showmsg
showpost
showthread
sign
signed
signer
signin
signing
signoff
signon
signout
signup
simple
sink
site
site-map
site_map
sitemap
sites
skel
skin
skins
skip
sl
sling
sm
small
smile
smiles
sms
smtp
snoop
soap
soaprouter
soft
software
solaris
sold
solution
solutions
source
sources
soutbox
sox
sp
space
spacer
spam
special
specials
sponsor
sponsors
spool
sport
sports
sqlnet
squirrel
squirrelmail
src
srv
ss
ssh
ssi
ssl
sslvpn
ssn
sso
staff
staging
standalone
standard
standards
star
start
stat
statement
statements
static
staticpages
statistic
statistics
stats
status
stock
storage
store
stored
stories
story
strut
struts
student
students
stuff
style
styles
submissions
submit
subscribe
subscribed
subscriber
subscribers
subscription
subscriptions
success
suite
suites
sun
sunos
super
support
surf
survey
surveys
sws
synapse
sync
synced
sys
sysmanager
system
systems
sysuser
t
tag
tags
tape
tapes
tapestry
tb
tcl
team
tech
technical
technology
tel
tele
templ
template
templates
terms
test-cgi
test-env
test1
test123
test1234
test2
test3
testimonial
testimonials
testing
tests
texis
text
texts
theme
themes
thread
threads
thumb
thumbnail
thumbnails
thumbs
tickets
tiki
tiles
tip
tips
title
tls
tmpl
tmps
tn
toc
todo
toggle
tomcat
tool
toolbar
toolkit
tools
top
topic
topics
torrent
torrents
tos
tour
tpl
tpv
tr
traceroute
trace
traces
track
trackback
tracker
trackers
tracking
tracks
traffic
trailer
trailers
training
trans
transparent
transport
trash
travel
treasury
tree
trees
trial
trunk
tsweb
tt
turbine
tuscany
tutorial
tutorials
tv
tweak
type
typo3
typo3conf
u
ubb
uds
uk
umts
union
unix
unlock
unreg
unregister
unsubscribe
up
upd
update
updated
updater
updates
upfile
upfiles
upload
uploader
uploads
url
urls
us
usa
usage
user
userlog
users
usr
util
utilities
utility
utils
v
v1
v2
var
vault
vector
velocity
vendor
ver
ver1
ver2
version
vfs
video
videos
view
view-source
viewcvs
viewforum
viewonline
views
viewsource
viewsvn
viewtopic
viewvc
virtual
vm
voip
vol
vote
voter
votes
vpn
vuln
w
w3
w3c
wa
wap
war
warez
way-board
wbboard
wc
weather
web
web-beans
web-console
webaccess
webadmin
webagent
webalizer
webapp
webb
webbbs
webboard
webcalendar
webcart
webcasts
webcgi
webchat
webdata
webdav
webdb
weblog
weblogic
weblogs
webmail
webplus
webshop
website
websphere
websql
webstats
websvn
webwork
week
weekly
welcome
whitepapers
whois
whosonline
wicket
wiki
win
win32
windows
winnt
wireless
wml
word
wordpress
work
working
world
wp
wp-content
wp-dbmanager
wp-includes
wp-login
wp-syntax
wrap
ws
ws-client
ws_ftp
wtai
www
www-sql
www1
www2
www3
wwwboard
wwwroot
wwwstats
wwwthreads
wwwuser
wysiwyg
x
xalan
xerces
xhtml
xmlrpc
xslt
xsql
xxx
xyzzy
y
yahoo
year
yearly
youtube
yt
z
zboard
zencart
zend
zero
zipfiles
zips
zoom
zope
zorum


================================================
FILE: program/databases/db_favicon
================================================
#######################################################################
# File Source: https://cirt.net
# (c) 2001 Chris Sullo, All Rights Reserved.
# This file may only be distributed and used with the full Nikto package.
# This file may not be used with any software product without written permission from
# Chris Sullo (sullo@cirt.net)
#
# Note:
# By submitting updates to this file you are transferring any and all copyright
# interest in the data to Chris Sullo so it can modified, incorporated into this product
# relicensed or reused.
#######################################################################
# Example to get the md5hash: $ md5sum favicon.ico
#######################################################################
"nikto_id","md5hash","description"
"500017","4987120f4fb1dc454f889e8c92f6dabe","Google Web Server"
"500108","c0dc2e457e05c2ce0a99886ec1048d77","Platform Computing Corporation Platform Management Console Version v2.0"
"500109","92d0841188d40b6fef294cf53a8addd7","cPanel cpsrvd webmail server"
"500110","9afa5d60e5ef15dc75d7662e418cac72","QNAP TurboNAS"
"500111","5f09cded07bb864fd9b3d2dd72b5418e","TwonkyServer Premium 7.0.x"
"500112","773669c6c97d65ac5ede9e8ea6b47116","Plex Media Server 0.9.x"
"500113","46b742e6ba5d7ac03f13b312601c113f","XBMC Media Center 12.x (Web Interface)"
"500114","88733ee53676a47fc354a61c32516e82","Magento Go CMS"
"500115","6d2adf39ca320265830403dfc030033a","Liferay Portal"
"500117","297d726681297cbf839f43a125e5c9b4","ZNC IRC Bouncer (Web Interface)"
"500118","d577e9569381685b30feae22484c8344","ZNC IRC Bouncer (Web Interface)"
"500151","28c34462a074c5311492759435549468","AContent"
"500153","705d63d8f6f485bd40528394722b5c22","Atmail"
"500154","9f500a24ccbdda88cf8ae3ec7b61fc40","Atomic CMS"
"500155","5b816961f19da96ed5a2bf15e79093cb","ATutor"
"500157","f51425ace97f807fe5840c4382580fd5","Beehive Forum 1.x"
"500158","eb05f77bf80d66f0db6b1f682ff08bee","Biscom Delivery Server"
"500159","5d27143fc38439baba39ba5615cbe9ef","Cascade Server"
"500160","0c53ef3d151cbac70a8486dd1ebc8b25","Chamilo e-learning system"
"500161","9939a032a9845e4d931d14e08f5a6c7c","Citrix XenApp Logon"
"500162","6c633b9b92530843c782664cb3f0542d","ClipBucket"
"500163","a59c6fead5d55050674f327955df3acb","CouchPotato 2.x"
"500164","107579220745d3b21461c23024d6c4a3","D-Link"
"500165","c86974467c2ac7b6902189944f812b9a","Domain Technology Control 0.17.x-0.24.x"
"500167","d9aa63661d742d5f7c7300d02ac18d69","Dreambox WebControl"
"500168","a4819787db1dabe1a6b669d5d6df3bfd","Drupal 2.x-4.x"
"500170","b6341dfc213100c61db4fb8775878cec","Drupal 7.x"
"500171","0a99a23f6b1f1bddb94d2a2212598628","Maraschino"
"500172","51b916bdaf994ce73d3e5e6dfe2a46ee","Feng Office 2.3"
"500173","d134378a39c722e941ac25eed91ca93b","FreePBX"
"500174","45210ace96ce9c893f8c27c5decab10d","Fritz!"
"500178","835306119474fefb6b38ae314a37943a","Horde Agora (Forum)"
"500179","b64a1155b80e0b06272f8b842b83fa57","Horde Ansel (Photo Manager)"
"500180","0e6a6ed665a9669b368d9a90b87976a9","Horde Gollem (File Manager)"
"500182","6c18a6e983f64b6a6ed0a32c9e8a19b6","HP ProCurve Webserver"
"500183","6acfee4c670580ebf06edae40631b946","Iomega StorCenter"
"500184","1f9c39ef3f740eebb046c900edac4ba5","Iomega StorCenter ix2-200"
"500185","37a99d2ddea8b49f701db457b9a8ffed","Iomega StorCenter ix4-200d"
"500186","e7dce6ac6d8713a0b98407254ca33f80","Iomega StorCenter ix4-300d"
"500187","f08d232927ab8f2c661616b896928233","Iomega StorCenter px2-300d"
"500188","9d203fbb74eabf67f48b965ba5acc9a6","Iomega StorCenter px4-300d"
"500189","fbd140da4eff02b90c9ebcbdb3736322","Iomega StorCenter px4-300r"
"500190","fd3f689b804ddb7bfab53fdf32bf7c04","Iomega StorCenter px6-300d"
"500191","8dfab2d881ce47dc41459c6c0c652bcf","Iomega StorCenter px12-350r"
"500192","66dcdd811a7d8b1c7cd4e15cef9d4406","Iomega StorCenter px12-400r"
"500193","a7fe149a9f2582f38576d14d9b1f0f55","LaCie Dashboard"
"500197","2ba9b777483da0a6a8b29c4ab39a10b2","MagicMail"
"500199","701bb703b31f99da18251ca2e557edf0","Mantis Bug Tracker 1.2.9-1.2.15"
"500202","d4af3be33d952c1f98684d985019757c","Moodle 2.0 : Magazine"
"500203","b88c0eedc72d3bf4e86c2aa0a6ba6f7b","NAS4Free 9.0"
"500205","11abb4301d06dccc36d1b5f6dcad093e","ntop 3.3.6-5.0.1"
"500206","b9d28bd6822d2e09e01aa0af5d7ccc34","ocPortal 9.0.5"
"500207","eec3051d5c356d1798bea1d8a3617c51","Octopress"
"500208","9c34a7481ba0c153bb3e2a10e0ea811e","OpenWebif"
"500209","49bf194d1eccb1e5110957d14559d33d","OTRS"
"500211","d361075db94bb892ff3fb3717714b2da","phpMyBackupPro"
"500212","a456dd2bae5746beb68814a5ac977048","phpSysInfo 3.0.7"
"500213","6e0c5b7979e9950125c71341e0960f65","phpSysInfo 3.0.8-3.0.12"
"500214","ddcc65196f0bc63a90c885bd88ecbb81","phpSysInfo 3.0.12-3.0.20, 3.1.0-3.1.4"
"500216","ba4bfe5d1deb2b4410e9eb97c5b74c9b","Puppet Node Manager"
"500217","368c15ac73f0096aa3daff8ff6f719f8","Redaxscript 1.0-1.2.1"
"500218","6d85758acb4f4baa4d242ba451c91026","Redmine x, Request Tracker"
"500220","228ba3f6d946af4298b080e5c934487c","Roundcube Webmail 0.6-0.7 : Default, 0.8-0.9 : Classic, 0.8-0.9 : Larry"
"500223","ed8cf53ef6836184587ee3a987be074a","Ruckus"
"500224","f6c5f5e8857ecf561029fc5da005b6e3","Sophos Email Appliance"
"500229","f682dbd4d0a18dd7699339b8adb28c0f","QNAP TurboNAS 3.8.x : Admin"
"500230","7ff45523a7ee9686d3d391a0a27a0b4f","QNAP TurboNAS 4.0.x"
"500231","a967c8bfde9ea0869637294b679b7251","Squid Proxy Server"
"500232","bc18566dcc41a0ff503968f461c4995a","Subrion CMS"
"500233","531e652a15bc0ad59b6af05019b1834a","Synology DSM 4.2"
"500234","0ec12e5820517d3b62e56b9a8f1ee5bc","TradingEye"
"500236","300b5c3f134d7ec0bca862cf113149d8","TVersity"
"500238","8718c2998236c796896b725f264092ee","Typo3 6.1"
"500239","7350c3f75cb80e857efa88c2fd136da5","Ushahidi"
"500240","2e5e985fe125e3f8fca988a86689b127","VISEC"
"500241","d90cc1762bf724db71d6df86effab63c","vtiger CRM"
"500242","b14353fafda7c90fb1a2a214c195de50","webERP"
"500243","18fe76b96d4eae173bf439a9712fa5c1","WikiWebHelp"
"500244","e44d22b74f7ee4435e22062d5adf4a6a","WordPress 2.x"
"500245","3ead5afa19537170bb980924397b70d6","WordPress 3.x : Twenty Ten"
"500246","28a122aa74f6929b0994fc544555c0b1","WordPress 3.2-3.x : Twenty Eleven"
"500248","e9dd9992d222d67c8f6a4704d2c88bdd","Zarafa WebAccess"
"500249","c126f7e761813946fea2e90ff7ddb838","Zenoss Core"
"500501","6399cc480d494bf1fcd7d16c42b1c11b","penguin"
"500502","09b565a51e14b721a323f0ba44b2982a","Google web server"
"500503","506190fc55ceaa132f1bc305ed8472ca","SocialText"
"500504","2cc15cfae55e2bb2d85b57e5b5bc3371","PHPwiki (1.3.14) / gforge (4.6.99+svn6496) - wiki"
"500505","389a8816c5b87685de7d8d5fec96c85b","XOOPS cms"
"500506","f1876a80546b3986dbb79bad727b0374","NetScreen WebUI or 3Com Router"
"500507","226ffc5e483b85ec261654fe255e60be","Netscape 4.1"
"500508","b25dbe60830705d98ba3aaf0568c456a","Netscape iPlanet 6.0"
"500509","41e2c893098b3ed9fc14b821a2e14e73","Netscape 6.0 (AOL)"
"500510","a28ebcac852795fe30d8e99a23d377c1","SunOne 6.1"
"500511","71e30c507ca3fa005e2d1322a5aa8fb2","Apache on Redhat"
"500512","d41d8cd98f00b204e9800998ecf8427e","Zero byte favicon"
"500513","dcea02a5797ce9e36f19b7590752563e","Parallels Plesk "
"500514","6f767458b952d4755a795af0e4e0aa17","Yahoo!"
"500515","5b0e3b33aa166c88cee57f83de1d4e55","DotNetNuke (http://www.dotnetnuke.com)"
"500516","7dbe9acc2ab6e64d59fa67637b1239df","Lotus-Domino"
"500517","fa54dbf2f61bd2e0188e47f5f578f736","WordPress"
"500518","6cec5a9c106d45e458fc680f70df91b0","WordPress - obsolete version"
"500519","81ed5fa6453cf406d1d82233ba355b9a","E-zekiel"
"500520","ecaa88f7fa0bf610a5a26cf545dcd3aa","3-byte invalid favicon"
"500521","c1201c47c81081c7f0930503cae7f71a","vBulletin forum"
"500522","edaaef7bbd3072a3a0c3fb3b29900bcb","Powered by Reynolds Web Solutions (Car sales CMS)"
"500523","d99217782f41e71bcaa8e663e6302473","Apache on Red Hat/Fedora"
"500524","a8fe5b8ae2c445a33ac41b33ccc9a120","Arris Touchstone Device"
"500525","d16a0da12074dae41980a6918d33f031","ST 605"
"500526","befcded36aec1e59ea624582fcb3225c","SpeedTouch"
"500527","e4a509e78afca846cd0e6c0672797de5","i3micro VRG"
"500528","3541a8ed03d7a4911679009961a82675","status.net"
"500529","fa2b274fab800af436ee688e97da4ac4","Etherpad"
"500530","83245b21512cc0a0e7a67c72c3a3f501","OpenXPKI"
"500531","85138f44d577b03dfc738d3f27e04992","Gitweb"
"500532","70625a6e60529a85cc51ad7da2d5580d","SSLstrip "
"500533","99306a52c76e19e3c298a46616c5899c","aMule (2.2.2)"
"500534","31c16dd034e6985b4ba929e251200580","Stephen Turner Analog (6.0)"
"500535","2d4cca83cf14d1adae178ad013bdf65b","Ant docs manual (1.7.1)"
"500536","032ecc47c22a91e7f3f1d28a45d7f7bc","Ant docs (1.7.1) / libjakarta-poi-java (3.0.2)"
"500537","31aa07fe236ee504c890a61d1f7f0a97","apache2 (2.2.9) docs-manual"
"500538","c0c4e7c0ac4da24ab8fc842d7f96723c","xsp (1.9.1)"
"500539","d6923071afcee9cebcebc785da40b226","autopsy (2.08)"
"500540","7513f4cf4802f546518f26ab5cfa1cad","axyl (2.6.0)"
"500541","de68f0ad7b37001b8241bce3887593c7","b2evolution (2.4.2)"
"500542","140e3eb3e173bfb8d15778a578a213aa","bmpx (0.40.14)"
"500543","4f12cccd3c42a4a478f067337fe92794","cacti (0.8.7b)"
"500544","c0533ae5d0ed638ba3fb3485d8250a28","CakePHP (1.1.x)"
"500545","66b3119d379aee26ba668fef49188dd3","cakephp (1.2.x-1.3x)"
"500546","09f5ea65a2d31da8976b9b9fd2bf853c","caudium (1.4.12)"
"500547","f276b19aabcb4ae8cda4d22625c6735f","cgiirc (0.5.9)"
"500548","a18421fbf34123c03fb8b3082e9d33c8","chora2 (2.0.2) "
"500549","23426658f03969934b758b7eb9e8f602","chronicle (2.9) theme-steve"
"500550","75069c2c6701b2be250c05ec494b1b31","chronicle (2.9) theme-blog.mail-scanning.com"
"500551","27c3b07523efd6c318a201cac58008ba","cimg (1.2.0.1) "
"500552","ae59960e866e2730e99799ac034eacf7","webcit (7.37)"
"500553","2ab2aae806e8393b70970b2eaace82e0","couchdb (0.8.0-0.9.1)"
"500554","ddd76f1cfe31499ce3db6702991cbc45","cream (0.41)"
"500555","74120b5bbc7be340887466ff6cfe66c6","cups (1.3.9) - doc"
"500556","abeea75cf3c1bac42bbd0e96803c72b9","doc-iana-20080601"
"500557","3ef81fad2a3deaeb19f02c9cf67ed8eb","dokuwiki (0.0.20080505) "
"500558","e6a9dc66179d8c9f34288b16a02f987e","Drupal CMS (5.10) "
"500559","bba9f1c29f100d265865626541b20a50","dtc (0.28.10) "
"500560","171429057ae2d6ad68e2cd6dcfd4adc1","ebug-http (0.31)"
"500561","f6e9339e652b8655d4e26f3e947cf212","eGroupWare (1.0.0.009, 1.4.004-2) (/phpgwapi/templates/idots/images/favicon.ico)"
"500562","093551287f13e0ee3805fee23c6f0e12","freevo (1.8.1) "
"500563","56753c5386a70edba6190d49252f00bb","gallery (1.5.8)"
"500564","54b299f2f1c8b56c8c495f2ded6e3e0b","garlic-doc (1.6) "
"500565","857281e82ea34abbb79b9b9c752e33d2","gforge (4.6.99+svn6496) - webcalendar"
"500566","27a097ec0dbffb7db436384635d50415","gforge (4.6.99+svn6496) - images"
"500567","0e14c2f52b93613b5d1527802523b23f","gforge (4.6.99+svn6496) "
"500568","c9339a2ecde0980f40ba22c2d237b94b","glpi (0.70.2)"
"500569","db1e3fe4a9ba1be201e913f9a401d794","gollem (1.0.3)"
"500570","921042508f011ae477d5d91b2a90d03f","gonzui (1.2+cvs20070129) "
"500571","ecab73f909ddd28e482ababe810447c8","gosa (2.5.16.1)"
"500572","c16b0a5c9eb3bfd831349739d89704ec","gramps (3.0.1)"
"500573","63d5627fc659adfdd5b902ecafe9100f","gsoap (2.7.9l) "
"500574","462794b1165c44409861fcad7e185631","hercules (3.05) "
"500575","3995c585b76bd5aa67cb6385431d378a","horde-sam (0.1+cvs20080316) - silver"
"500576","ee3d6a9227e27a5bc72db3184dab8303","horde-sam (0.1+cvs20080316) - graphics"
"500577","7cc1a052c86cc3d487957f7092a6d8c3","horde (3.2.1) - graphics/tango"
"500578","5e99522b02f6ecadbb3665202357d775","hplip (2.8.7) - installer"
"500579","39308a30527336e59d1d166d48c7742c","Hewlett-Packard HPLIP (2.8.7) - doc"
"500580","43d4aa56dc796067b442c95976a864fd","hunchentoot (0.15.7) "
"500581","32bf63ac2d3cfe82425ce8836c9ce87c","ikiwiki (2.56ubuntu1)"
"500582","f567fd4927f9693a7a2d6cacf21b51b6","Horde IMP (4.1.4 - 4.1.6, also used in Horde Groupware Webmail 1.0.1))"
"500583","919e132a62ea07fce13881470ba70293","Horde Groupware Webmail 1.0.1 (Ingo Theme, 1.1.5)"
"500584","ed7d5c39c69262f4ba95418d4f909b10","jetty (5.1.14)"
"500585","6900fab05a50a99d284405f46e5bc7f6","k3d (0.6.7.0) "
"500586","24d1e355c00e79dc13b84d5455534fe7","kdelibs (3.5.10-4.1.4) "
"500587","8ab2f1a55bcb0cac227828afd5927d39","kdenetwork (4.1.4)"
"500588","54667bea91124121e98da49e55244935","kolab-webadmin (2.1.0-20070510)"
"500589","a5b126cdeaa3081f77a22b3e43730942","Horde Groupware Webmail 1.0.1 (Kronolith Theme, 2.1.8)"
"500590","d00d85c8fb3a11170c1280c454398d51","ktorrent (3.1.2) "
"500591","fa21ab1b1e1b4c9516afbd63e91275a9","lastfmproxy (1.3b) "
"500592","663ee93a41000b8959d6145f0603f599","ldap-account-manager (2.3.0) "
"500593","ea84a69cb146a947fac2ac7af3946297","boost (1.34.1) "
"500594","eb3e307f44581916d9f1197df2fc9de3","flac (1.2.1) "
"500595","669bc10baf11b43391294aac3e1b8c52","libitpp (4.0.4)"
"500596","b8fe2ec1fcc0477c0d0f00084d824071","lucene (2.3.2) "
"500597","12225e325909cee70c31f5a7ab2ee194","ramaze-ruby (0.3.9.1) "
"500598","6be5ebd07e37d0b415ec83396a077312","ramaze-ruby (0.3.9.1) - dispatcher"
"500599","20e208bb83f3eeed7c1aa8a6d9d3229d","libswarmcache-java (1.0RC2+cvs20071027)"
"500600","5f8b52715c08dfc7826dad181c71dec8","mahara (1.0.4)"
"500601","ebe293e1746858d2548bca99c43e4969","Mantis Bug Tracker (1.1.2, /bugs/images/favicon.ico)"
"500602","0d42576d625920bcd121261fc5a6230b","mathomatic (14.0.6)"
"500603","f972c37bf444fb1925a2c97812e2c1eb","mediatomb (0.11.0)"
"500604","f5f2df7eec0d1c3c10b58960f3f8fb26","Horde Groupware Webmail 1.0.1 (Mnemo Theme, 2.1.2) "
"500605","933a83c6e9e47bd1e38424f3789d121d","Moodle (1.8.2, 1.9.x, multiple default themes) "
"500606","b6652d5d71f6f04a88a8443a8821510f","Moodle (1.8.2, 1.9.x, Cornflower Theme, /theme/cornflower/favicon.ico)"
"500607","06b60d90ccfb79c2574c7fdc3ac23f05","movabletype-opensource (4.2~rc4)"
"500608","21d80d9730a56b26dc9d252ffabb2987","mythplugins (0.21.0+fixes18722) "
"500609","81df3601d6dc13cbc6bd8212ef50dd29","Horde Groupware Webmail 1.0.1 (Nag Theme, 2.1.4)"
"500610","1c4201c7da53d6c7e48251d3a9680449","nagios (3.0.2)"
"500611","28015fcdf84ca0d7d382394a82396927","nanoblogger (3.3)"
"500612","868e7b460bba6fe29a37aa0ceff851ba","netmrg (0.20)"
"500613","0b2481ebc335a2d70fcf0cba0b3ce0fc","ntop (3.3)"
"500614","c30bf7e6d4afe1f02969e0f523d7a251","nulog (2.0)"
"500615","9a8035769d7a129b19feb275a33dc5b4","ocsinventory-server (1.01)"
"500616","75aeda7adbd012fa93c4ae80336b4f45","parrot (0.4.13) - docs"
"500617","70777a39f5d1de6d3873ffb309df35dd","pathological (1.1.3)"
"500618","82d746eb54b78b5449fbd583fc046ab2","perl-doc-html (5.10.0)"
"500619","90c244c893a963e3bb193d6043a347bd","phpgroupware (0.9.16.012) "
"500620","4b30eec86e9910e663b5a9209e9593b6","phpldapadmin (1.1.0.5)"
"500621","02dd7453848213a7b5277556bcc46307","phpmyadmin (2.11.8.1) - pmd "
"500622","d037ef2f629a22ddadcf438e6be7a325","phpmyadmin (2.11.8.1)"
"500623","8190ead2eb45952151ab5065d0e56381","pootle (1.1.0)"
"500624","ba84999dfc070065f37a082ab0e36017","prewikka (0.9.14)"
"500625","0f45c2c79ebe90d6491ddb111e810a56","python-cherrypy (2.3.0-3.0.2)"
"500626","e551b7017a9bd490fc5b76e833d689bf","MoinMoin (1.7.1)"
"500627","275e2e37fc7be50c1f03661ef8b6ce4f","myghty (1.1)"
"500628","68b329da9893e34099c7d8ad5cb9c940","myghty (1.1) - zblog "
"500629","5488c1c8bf5a2264b8d4c8541e2d5ccd","turbogears (1.0.4.4) - genshi/elixir"
"500630","6927da350550f29bc641138825dff36f","python-werkzeug (0.3.1) - docs "
"500631","e3f28aab904e9edfd015f64dc93d487d","python-werkzeug (0.3.1) - cupoftee-examples"
"500632","69f8a727f01a7e9b90a258bc30aaae6a","quantlib-refman-html (0.9.0)"
"500633","b01625f4aa4cd64a180e46ef78f34877","quickplot (0.8.13)"
"500634","af83bba99d82ea47ca9dafc8341ec110","qwik (0.8.4.4ubuntu2)"
"500635","e9469705a8ac323e403d74c11425a62b","roundcube (0.1.1)"
"500636","7f57bbd0956976e797b4e8eebdc6d733","selfhtml (8.1.1)"
"500637","69acfcb2659952bc37c54108d52fca70","solr (1.2.0) - docs"
"500638","ffc05799dee87a4f8901c458f7291d73","solr (1.2.0) - admin"
"500639","aa2253a32823c8a5cba8d479fecedd3a","sork-forwards-h3 (3.0.1)"
"500640","a2e38a3b0cdf875cd79017dcaf4f2b55","sork-passwd-h3 (3.0)"
"500641","cb740847c45ea3fbbd80308b9aa4530a","sork-vacation-h3 (3.0.1)"
"500642","7c7b66d305e9377fa1fce9f9a74464d9","spe (0.8.4.h)"
"500643","0e2503a23068aac350f16143d30a1273","sql-ledger (2.8.15)"
"500644","1fd3fafc1d461a3d19e91dbbba03d0aa","tea (17.6.1)"
"500645","4644f2d45601037b8423d45e13194c93","Apache Tomcat (possibly 5.5.26 through 8.0.15), Alfresco Community"
"500646","1de863a5023e7e73f050a496e6b104ab","torrentflux (2.4)"
"500647","83dea3d5d8c6feddec84884522b61850","torrentflux (2.4) - themes/G4E/"
"500648","d1bc9681dce4ad805c17bd1f0f5cee97","torrentflux (2.4) - themes/BlueFlux/"
"500649","8d13927efb22bbe7237fa64e858bb523","transmission (1.34)"
"500650","5b015106854dc7be448c14b64867dfa5","tulip (3.0.0~B6)"
"500651","ff260e80f5f9ca4b779fbd34087f13cf","Horde Groupware Webmail 1.0.1 (Turba Theme, 2.1.7)"
"500652","e7fc436d0bf31500ced7a7143067c337","twiki (4.1.2) - logos/favicon.ico"
"500653","9789c9ab400ea0b9ca8fcbd9952133bd","twiki (4.1.2) - webpreferences "
"500654","2b52c1344164d29dd8fb758db16aadb6","vdr-plugin-live (0.2.0)"
"500655","237f837bbc33cd98a9f47b20b284e2ad","vdradmin-am (3.6.1) "
"500656","6f7e92fe7e6a62661ac2b41528a78fc6","vlc (0.9.4)"
"500657","2507c0b0a60ecdc816ba45482affaedf","webcheck (1.10.2.0) "
"500658","ef5169b040925a716359d131afbea033","websvn (2.0) "
"500659","f6d0a100b6dbeb5899f0975a1203fd85","witty (2.1.5)"
"500660","81feac35654318fb16d1a567b8b941e7","yaws (1.77)"
"500661","33b04fb9f2ec918f5f14b41527e77f6d","znc (0.058)"
"500662","6434232d43f27ef5462ba5ba345e03df","znc (0.058, webadmin/skins/default)"
"500663","e07c0775523271d629035dc8921dffc7","zoneminder (1.23.3)"
"500664","4eb846f1286ab4e7a399c851d7d84cca","Plone CMS (3.1.1)"
"500665","e298e00b2ff6340343ddf2fc6212010b","Nessus 4.x Scanner Web Client"
"500666","240c36cd118aa1ff59986066f21015d4","LANCOM Systems"
"500667","ceb25c12c147093dc93ac8b2c18bebff","COMpact 5020 VoIP"
"500668","05656826682ab3147092991ef5de9ef3","RapidShare"
"500669","e19ffb2bc890f5bdca20f10bfddb288d","Rapid7 (NeXpose)"
"500670","1f8c0b08fb6b556a6587517a8d5f290b","owasp.org"
"500671","73778a17b0d22ffbb7d6c445a7947b92","Apache on Mac OS X"
"500672","799f70b71314a7508326d1d2f68f7519","JBoss Server"
"500673","bd0f7466d35e8ba6cedd9c27110c5c41","Serena Collage (4.6, servlet/images/collage_app.ico)"
"500674","dc0816f371699823e1e03e0078622d75","Aruba Network Devices (HTTP(S) login page)"
"500675","f097f0adf2b9e95a972d21e5e5ab746d","Citrix Access Server"
"500676","28893699241094742c3c2d4196cd1acb","Xerox DocuShare"
"500677","80656aabfafe0f3559f71bb0524c4bb3","Macromedia Breeze"
"500678","48c02490ba335a159b99343b00decd87","Octeth Technologies oemPro (3.5.5.1)"
"500679","eb6d4ce00ec36af7d439ebd4e5a395d7","Mailman"
"500680","04d89d5b7a290334f5ce37c7e8b6a349","Atlassian Jira Bug Tracker"
"500681","d80e364c0d3138c7ecd75bf9896f2cad","Apache Tomcat (6.0.18), Alfresco Enterprise Content Management System"
"500682","a6b55b93bc01a6df076483b69039ba9c","Fog Creek Fogbugz (6.1.44)"
"500683","ee4a637a1257b2430649d6750cda6eba","Trimble Device Embedded Web Server"
"500684","9ceae7a3c88fc451d59e24d8d5f6f166","Plesk managed system"
"500685","69ae01d0c74570d4d221e6c24a06d73b","Roku Soundbridge"
"500686","2e9545474ee33884b5fb8a9a0b8806dd","Ampache"
"500687","639b61409215d770a99667b446c80ea1","Lotus Domino Server"
"500688","be6fb62815509bd707e69ee8dad874a1","i.LON server by Echelon"
"500689","a46bc7fc42979e9b343335bdd86d1c3e","NetScout NGenius"
"500690","192decdad41179599a776494efc3e720","JBoss Installation"
"500691","de2b6edbf7930f5dd0ffe0528b2bbcf4","Barracuda Spam/Virus firewall appliance"
"500692","386211e5c0b7d92efabd41390e0fc250","SparkWeb web-based collaboration client. http://www.igniterealtime.org/"
"500693","f89abd3f358cb964d6b753a5a9da49cf","LimeSurvey"
"500694","a7947b1675701f2247921cf4c2b99a78","Alexander Palmo Simple PHP Blog"
"500695","01febf7c2bd75cd15dae3aa093d80552","Atlassian Crucible or Fisheye"
"500696","1275afc920a53a9679d2d0e8a5c74054","Atlassian Crowd"
"500697","12888a39a499eb041ca42bf456aca285","Atlassian Confluence or Crowd"
"500698","3341c6d3c67ccdaeb7289180c741a965","Atlassian Confluence or Crowd"
"500699","6c1452e18a09070c0b3ed85ce7cb3917","Atlassian Jira"
"500700","43ba066789e749f9ef591dc086f3cd14","Atlassian Bamboo"
"500701","a83dfece1c0e9e3469588f418e1e4942","Atlassian Bamboo"
"500702","f0ee98b4394dfdab17c16245dd799204","Drupal"
"500703","7b0d4bc0ca1659d54469e5013a08d240","Netgear (Infrant) ReadyNAS NV+"
"500704","cee40c0b35bded5e11545be22a40e363","OSSDL.de Openmailadmin"
"500705","4f88ba9f1298701251180e6b6467d43e","Xinit Systems Ltd. Openfiler"
"500706","4c3373870496151fd02a6f1185b0bb68","rPath Appliance Agent"
"500707","b231ad66a2a9b0eb06f72c4c88973039","WordPress"
"500708","e1e8bdc3ce87340ab6ebe467519cf245","WordPress"
"500709","95103d0eabcd541527a86f23b636e794","WordPress Multi-User (MU)"
"500710","64ca706a50715e421b6c2fa0b32ed7ec","Parallels Plesk Control Panel"
"500711","f425342764f8c356479d05daa7013c2f","vBulletin forum"
"500712","740af61c776a3cb98da3715bdf9d3fc1","vBulletin forum"
"500713","d7ac014e83b5c4a2dea76c50eaeda662","vBulletin forum"
"500714","a47951fb41640e7a2f5862c296e6f218","Plone CMS"
"500715","10bd6ad7b318df92d9e9bd03104d9b80","Plone CMS"
"500716","e08333841cbe40d15b18f49045f26614","21publish Blog"
"500717","e2cac3fad9fa3388f639546f3ba09bc0","Invision Power Services IP.Board"
"500718","5ec8d0ecf7b505bb04ab3ac81535e062","Telligent Community Server"
"500719","83a1fd57a1e1684fafd6d2487290fdf5","Pligg"
"500720","b7f98dd27febe36b7275f22ad73c5e84","MoinMoin"
"500721","63b982eddd64d44233baa25066db6bc1","Joomla!"
"500722","05bc6d56d8df6d668cf7e9e11319f4e6","Jive Forums"
"500723","63740175dae089e479a70c5e6591946c","The Lyceum Project"
"500724","4cbb2cfc30a089b29cd06179f9cc82ff","Dragonfly"
"500725","9187f6607b402df8bbc2aeb69a07bbca","XOOPS"
"500727","a1c686eb6e771878cf6040574a175933","CivicPlus"
"500728","4d7fe200d85000aea4d193a10e550d04","Intland Software codeBeamer"
"500729","1a9a1ec2b8817a2f951c9f1793c9bc54","Bitweaver"
"500730","1cc16c64d0e471607677b036b3f06b6e","Roller Weblogger Project"
"500731","7563f8c3ebd4fd4925f61df7d5ed8129","Holger Zimmerman Pi3Web HTTP Server"
"500732","7f0f918a78ca8d4d5ff21ea84f2bac68","SubText"
"500733","86e3bf076a018a23c12354e512af3b9c","Spyce"
"500734","9c003f40e63df95a2b844c6b61448310","DD-WRT Embedded Web Server"
"500735","9a9ee243bc8d08dac4448a5177882ea9","Dvbbs Forum"
"500736","ee1169dee71a0a53c91f5065295004b7","ProjectPier"
"500737","7214637a176079a335d7ac529011f4e4","phpress"
"500738","1bf954ba2d568ec9771d35c94a6eb2dc","WoltLab Burning Board"
"500739","ff3b533b061cee7cfbca693cc362c34a","Kayako SupportSuite"
"500740","428b23df874b41d904bbae29057bdba5","Comsenz Technology Ltd ECShop"
"500741","8757fcbdbd83b0808955f6735078a287","Comsenz Technology Ltd Discuz!"
"500742","9fac8b45400f794e0799d0d5458c092b","Comsenz Technology Ltd Discuz!"
"500743","4e370f295b96eef85449c357aad90328","Comsenz Technology Ltd SupeSite"
"500744","4cfbb29d0d83685ba99323bc0d4d3513","PHPWind Forums 7"
"500745","2df6edffca360b7a0fadc3bdf2191857","PIPS Technology ATZ Executive / Automatic Licence Plate Recognition (ALPR) System"
"500746","8c291e32e7c7c65124d19eb17bceca87","Schneider Electric Modicon 340 / BMX P34 CPU B"
"500747","6dcab71e60f0242907940f0fcda69ea5","Ubiquiti Ubiquiti M Series / AirOS"
"500748","09a1e50dc3369e031b97f38abddd10c8","Ubiquiti Ubiquiti M Series / AirOS"
"500749","7b345857204926b62951670cd17a08b7","AXESS TMC X1 or X2 Terminal"
"500750","0f584138aacfb79aaba7e2539fc4e642","Plex Media Server"
"500751","4973c3c3067f8526ad0dacd2823b814e","Adobe Experience Manager/CQ5"
"500752","7a52b2a795dabe950e9dd2381ded8dc7","Adobe CRXDE Lite"
"500753","5a77e47fa23554a4166d2303580b0733","Sawmill"
"500754","39a1599714e68d8d9af295f8dc5ab314","Apache"
"500755","ca5aeaaabc9019eb5ce8e03ec3bd809d","Apache"
"500756","fc4f0fca3dc008655feb2563fa7bbdd2","Apache"
"500757","ab5fbb78e839bac0eee74787740475e8","Apache"
"500758","f4d83423148320676d1db1269c333da2","Apache"
"500759","a2b03592bd74d3bf6b71a327a4b39ff6","Apache"
"500760","e2f638a6572e9270ac73402f6481425b","Apache"
"500761","2b354dcd9968722567eaf374d6ed2132","Apache"
"500762","4afcc9582b28af45ce8a1312761d8d4c","Apache"
"500763","8d3fd22cab7ad1a6b10ae10e96143333","Apache"
"500764","3e87f7b72db63dfb1700207d0ee0ec13","Apache"
"500765","5d48c15b19222264f533c25943519861","Apache"
"500766","e738f22aab002bd66350d1b2d930e9a9","Apache"
"500767","42bb648e781be6baa099b76e75609126","Apache"
"500768","07e9163f7ca8cfe6c1d773f895fbebad","Apache"
"500769","aa9b62c9aa50e0bc1f77061e6362d736","Apache"
"500770","a4eb4e0aa80740db8d7d951b6d63b2a2","ownCloud"
"500771","56974e6b57c7bd51448c309915ca0d6c","Ghost blog (0.7.x)"
"500772","91b72b23e7f499d6c09cb18c7b1278f1","Kodi Media Center 16.x (Web Interface)"
"500773","92c5d340d08c6d33676a41ba8dece857","Android PAW Server"
"500774","81edeec6e603d73d52bf85a3354fd093","JAMF Software/Casper Suite"
"500775","c1f20852dd1caf078f49de77a2de8e3f","vBulletin forum"
"500776","e462005902f81094ab3de44e4381de19","Fortinet Device"
"500777","b3045c004dd765466e84bd057eaaa795","Skype for Business"
"500778","23e8c7bd78e8cd826c5a6073b15068b1","Jenkins"
"500779","1391664373e72311a656c4a5504682af","Jira"
"500780","995bbe5b7ba2be254ea2752bd66b2f79","Cockpit linux web admin"


================================================
FILE: program/databases/db_headers_common
================================================
#######################################################################
# File Source: https://cirt.net
# (c) 2001 Chris Sullo, All Rights Reserved.
# This file may only be distributed and used with the full Nikto package.
# This file may not be used with any software product without written permission from
# Chris Sullo (sullo@cirt.net)
#
# Note:
# By submitting updates to this file you are transferring any and all copyright
# interest in the data to Chris Sullo so it can modified, incorporated into this product
# relicensed or reused.
#######################################################################
# - Lowercase only
#######################################################################
"header"
"accept"
"accept-ch"
"accept-charset"
"accept-encoding"
"accept-language"
"accept-ranges"
"access-control-allow-credentials"
"access-control-allow-headers"
"access-control-allow-methods"
"access-control-allow-origin"
"access-control-expose-headers"
"access-control-max-age"
"age"
"allow"
"alternates"
"alt-svc"
"authorization"
"bfcache-opt-in"
"cache-control"
"cf-cache-status"
"cf-edge-cache"
"cf-ray"
"cf-request-id"
"commerce-server-software"
"connection"
"content-encoding"
"content-language"
"content-length"
"content-location"
"content-md5"
"content-range"
"content-security-policy"
"content-security-policy-report-only"
"content-type"
"critical-ch"
"cross-origin-embedder-policy"
"cross-origin-opener-policy"
"cross-origin-resource-policy"
"dasl"
"date"
"dav"
"etag"
"expect"
"expect-ct"
"expires"
"fastly-restarts"
"feature-policy"
"from"
"host"
"if-match"
"if-modified-since"
"if-none-match"
"if-range"
"if-unmodified-since"
"keep-alive"
"last-modified"
"link"
"location"
"max-forwards"
"mime-version"
"nel"
"nncoection"
"p3p"
"persistent-auth"
"permissions-policy"
"pragma"
"proxy-authenticate"
"proxy-authorization"
"proxy-connection"
"public"
"range"
"referer"
"referrer-policy"
"report-to"
"retry-after"
"server"
"server-timing"
"set-cookie"
"status"
"strict-transport-security"
"te"
"timing-allow-origin"
"traceparent"
"trailer"
"transfer-encoding"
"upgrade"
"user-agent"
"vary"
"via"
"warning"
"whisker"
"www-authenticate"
"x-aspnetmvc-version"
"x-aspnet-version"
"x-cache"
"x-cache-group"
"x-cache-hits"
"x-cache-info"
"x-clacks-overhead"
"x-cloud-trace-context"
"x-cnection"
"x-content-security-policy"
"x-content-type-options"
"x-download-options"
"x-drupal-cache"
"x-frame-options"
"x-generator"
"x-google-gfe-backend-request-cost"
"x-google-gfe-load-report"
"x-guploader-uploadid"
"x-id"
"x-nf-request-id"
"xmlns"
"x-amz-cf-id"
"x-amz-cf-pop"
"x-amzn-requestid"
"x-amz-version-id"
"x-azure-ref"
"x-cdn"
"x-correlation-id"
"x-dns-prefetch-control"
"x-fd-int-roxy-purgeid"
"x-mod-pagespeed"
"x-ms-request-id"
"x-pad"
"x-page-speed"
"x-permitted-cross-domain-policies"
"x-pingback"
"x-powered-by"
"x-robots-tag"
"x-timer"
"x-ua-compatible"
"x-varnish"
"x-webkit-csp"
"x-xss-protection"


================================================
FILE: program/databases/db_headers_suggested
================================================
#######################################################################
# File Source: https://cirt.net
# (c) 2024 Chris Sullo, All Rights Reserved.
# This file may only be distributed and used with the full Nikto package.
# This file may not be used with any software product without written permission from
# Chris Sullo (sullo@cirt.net)
#
# Note:
# By submitting updates to this file you are transferring any and all copyright
# interest in the data to Chris Sullo so it can modified, incorporated into this product
# relicensed or reused.
#######################################################################
# - Use lowercase only
# - Keep list alphabetically (for readability)
#######################################################################
#"header","reference"
"content-security-policy","https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP"
"permissions-policy","https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy"
"referrer-policy","https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy"
"strict-transport-security","https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security"
"x-content-type-options","https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options"


================================================
FILE: program/databases/db_multiple_index
================================================
#######################################################################
# File Source: https://cirt.net
# (c) 2001 Chris Sullo, All Rights Reserved.
# This file may only be distributed and used with the full Nikto package.
# This file may not be used with any software product without written permission from
# Chris Sullo (sullo@cirt.net)
#
# Note:
# By submitting updates to this file you are transferring any and all copyright
# interest in the data to Chris Sullo so it can modified, incorporated into this product
# relicensed or reused.
#######################################################################
"index"
"index.php"
"index.php3"
"index.php4"
"index.php5"
"index.php7"
"index.html"
"index.htm"
"index.shtml"
"index.cfm"
"index.cgi"
"index.pl"
"index.asp"
"index.aspx"
"default.asp"
"default.aspx"
"default.htm"
"index.do"
"index.jhtml"
"index.jsp"
"index.xml"


================================================
FILE: program/databases/db_options
================================================
#######################################################################
# File Source: https://cirt.net
# (c) 2001 Chris Sullo, All Rights Reserved.
# This file may only be distributed and used with the full Nikto package.
# This file may not be used with any software product without written permission from
# Chris Sullo (sullo@cirt.net)
#
# Note:
# By submitting updates to this file you are transferring any and all copyright
# interest in the data to Chris Sullo so it can modified, incorporated into this product
# relicensed or reused.
#######################################################################
"nikto_id","method","references","message"
"400000","DELETE","https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/DELETE","HTTP method ('@TYPE@' Header): 'DELETE' may allow clients to remove files on the web server."
"400001","PUT","https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PUT","HTTP method ('@TYPE@' Header): 'PUT' method could allow clients to save files on the web server."
"400002","MOVE","https://tools.ietf.org/html/rfc3744","HTTP method ('@TYPE@' Header): 'MOVE' may allow clients to change file locations on the web server."
"400003","CONNECT","https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/CONNECT","HTTP method ('@TYPE@' Header): 'CONNECT' may allow server to proxy client requests."
"400004","PATCH","https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH","HTTP method: 'PATCH' may allow client to issue patch commands to server. See RFC-5789."
# WebDAV methods - "0" in nikto_id tells the code to treat it differently
"0","PROPFIND","https://tools.ietf.org/html/rfc3744","webdav"
"0","PROPPATCH","https://tools.ietf.org/html/rfc3744","webdav"
"0","COPY","https://tools.ietf.org/html/rfc3744","webdav"
"0","LOCK","https://tools.ietf.org/html/rfc3744","webdav"
"0","UNLOCK","https://tools.ietf.org/html/rfc3744","webdav"
"0","SEARCH","https://tools.ietf.org/html/rfc3744","webdav"
"0","MKCOL","https://tools.ietf.org/html/rfc3744","webdav"


================================================
FILE: program/databases/db_outdated
================================================
#######################################################################
# File Source: https://cirt.net
# (c) 2001 Chris Sullo, All Rights Reserved.
# This file may only be distributed and used with the full Nikto package.
# This file may not be used with any software product without written permission from
# Chris Sullo (sullo@cirt.net)
#
# Note:
# By submitting updates to this file you are transferring any and all copyright
# interest in the data to Chris Sullo so it can modified, incorporated into this product
# relicensed or reused.
#######################################################################
#"nikto_id","server","version","message"
"600000","\(www\.ebdesk\.com\)/","1.3.20","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600001","0W/","0.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600002","3Com/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600003","3Com/v","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600004","4D_WebStar_D/","7.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600005","4D_WebSTAR_S/","5.4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600006","4n4l0g4l1f3/","31337","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600007","a-p-a-c-h-e/","1-3-26","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600008","ABWS/","537","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600009","Abyss/","2.16.9.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600010","AbyssLib/","2.16.9.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600011","Academy/","5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600012","accela/","1.92","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600013","Accipiter-DirectServer/","6.0.0.36","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600014","ACI-4D/","6.57","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600015","Acme.Serve/","v1.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600016","ActiveAgent/","4.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600017","ActiveLinks/","0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600018","ActuateHttpService/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600019","Adaptec ASM ","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600020","ADSM_HTTP/","0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600021","AdSubtract","2.54","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600022","adtag/","1.0a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600023","Adtran Embedded HTTP Server ","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600024","aEGiS_nanoweb/","2.2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600025","AG/","1.3.27","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600026","AGAVA.Banners/","1.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600027","Agent-ListenServer-HttpSvr/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600028","Agranat-EmWeb/","R5_2_6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600029","Agranat/","Agranat-EmWeb/R5_2_6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600030","Alchemy Eye/","Alchemy Eye/3.0.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600031","AlkalineSearchEngine/","1.","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600032","Allegro-Software-RomPager/","4.61","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600033","AllegroServe/","1.2.24","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600034","AMOS-HTTPD/","1.5A127","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600035","AMOS/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600036","Analogx","1.0.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600037","Anonymous/","1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600038","anses/","1.16","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600039","AnWeb/","1.42p","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600040","AOLserver/ ","4.5.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600041","Apache Coyote/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600042","Apache Tomcat/","8.0.15","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER). Tomcat 7.0.57, 6.0.41, 5.5.36 and 4.1.40 are also current."
"600044","Apache-AdvancedExtranetServer/","2.0.53","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600045","Apache-Coyote/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600046","Apache-NeoNova/","1.3.27","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600047","Apache-NeoWebScript/","2.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600048","Apache-SSL-US/","1.1.1+1.2+1.3b3-dev","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600049","Apache-SSL/","1.36","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600050","Apache/","2.4.66","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)."
"600051","apachejserv/","1.1.2i","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600052","ApacheSSL/","2.0.58","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600053","AppleEmbeddedWebServer/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600054","AppleShareIP/","6.3.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600055","ARIN-HTTPd/","1.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600056","ARM/","06TD.34","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600057","ArtBlast/","3.5.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600058","ASP/","4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600059","AtermWARPSTAR/","1.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600060","auth_external/","2.2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600061","auth_kerberos/","4.11","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600062","auth_ldap/","1.6.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600063","auth_mysql/","1.11","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600064","auth_radius/","1.7PR1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600065","AuthentiCache/","2.0.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600066","AuthMySQL/","4.3.9-2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600067","AuthMySQL/","deam.org-1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600068","AuthMySQL/","trans-1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600069","AuthMySQLD/","0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600070","AuthNuSphere/","1.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600071","AuthPG/","1.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600072","AuthPostgreSQL/","0.9.7d","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600073","AuthSMB/","0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600074","AuthTDS/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600075","AV/","1.0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600076","Awhttpd/","Awhttpd/2.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600077","AWS/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600078","AXISThinWizard/","v3.05.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600079","AxKit/","1.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600080","balanced_by_mod_backhand/","1.1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600081","BaseHTTP/","0.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600082","BBC ","06.21.501","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600083","BBCE/","6.6.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600084","BeatBoxCapture/","6.5.64","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600085","Ben-SSL/","1.60","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600086","beta/","0.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600087","BigFix HTTP Server/","5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600088","BillGatesSeinWebServer/","6.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600089","BiRD/","0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600090","bkhttp/","0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600091","Blazix/","1.2.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600092","Bluestem/","0.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600093","Boa/","0.94.14","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600094","BOA/","1.2.2c","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600095","bozohttpd/","20060517","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600096","broker/","8.7.0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600097","BRS-WebWeaver/","1.33","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600098","BSAFE-SSL-C/","1.0.0i","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600099","BSDI/","3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600100","BunnyServer/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600101","buser/","4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600102","BustaWS/","3.0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600103","bw/","3.37","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600104","BWS/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600105","C2NetEU/","3012","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600106","C2NetUS/","2011","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600107","Canon Http Server ","2.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600108","Caudium/","1.4.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600109","CCO/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600110","CERN/","3.0A","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600111","CheckPointSVNfoundation/","NGFP2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600112","Cheetah/","2.1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600113","Cherry/","6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600114","CherryPy/","3.2.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600115","Chili!Soft-ASP/","3.6.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600116","cisco-CPA/","cisco-CPA/3.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600117","cisco-IOS/","12.1 HTTP-server/1.0(1)","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600118","CiteHTTPD/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600119","Citysearch-Apache/","1.3.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600120","CL-HTTP","70.190","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600121","CM4all-JailCGI/","1.4.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600122","CMS_Pipelines/","1.0110","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600123","CMS/","20.000","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600124","CoffeeMaker/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600125","Commerce-Builder/","2.20","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600126","CommerceServer400/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600127","CommuniGatePro/","5.4.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600128","Communique/","4.3.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600129","CommuniqueServletEngine/","4.0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600130","CompaqHTTPServer/","9.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600131","ConcentricHost-Ashurbanipal/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600132","ConcentricHost-NaramSin/","1.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600133","ConductorSNMP/","1.0.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600134","ConferenceRoom/","3.5.0.2-SEC.win32-ws2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600135","confproxy/","3.0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600136","CoolWeb/","3.8.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600137","Core/","3.8.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600138","Cougar ","9.01.01.5001","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600139","covalent_auth/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600140","CovalentSSL/","2.1.03.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600141","Coyote/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600142","cpaneld/","cpaneld/6.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600143","cpsrvd/","11.32.3.21","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600144","Crossing/","5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600145","Cryptoveg/","4.0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600146","CSacek/","2.1.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600147","Cthulhu/","0.23a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600148","CUPS/","2.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600149","da.ru/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600150","DartWebServerTool/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600151","DAV/","2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600152","David-WebBox/","12.00a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600153","Debut/","1.08","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600154","DeleGate/","8.5.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600155","DeltaEdgeCache/","release-2-28-rc2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600156","DHost/","9.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600157","diffprivs/","20030624","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600158","Dina HTTPd Server/","1.15","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600159","DinaHTTPdServer/","1.15","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600160","Dixienet/","6.6.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600161","DLXApache/","4.3.29","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600162","DMMWeb/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600163","Domestic/","v2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600164","Domino-Go-Webserver/","4.6.2.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600165","DotTV Webserver ","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600166","DSS/","6.0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600167","dwhttpd/","dwhttpd/4.2a7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600168","dynamicScale/","2.0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600169","E-Neverland Data Palm/","1.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600170","e/FSV-","28-01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600171","eBD/","3.2.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600172","ebLogic XMLX Module ","8.1 SP1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600173","EHTTP/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600174","EIMWebServer/","3.35","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600175","Embedded HTTP Server","2.0f","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600176","Embperl/","2.3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600177","EMWHTTPD/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600178","Engine/","8.1.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600179","Enhydra-MultiServer/","3.1.1b1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600180","Entangle/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600181","EnterpriseWeb/","1.1.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600182","ePerl/","2.2.14","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600183","Eplicator/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600184","EPSON-HTTP/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600185","EServ/","3.00","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600186","ESMWEBSERVERS/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600187","eVisMUX/","6.0.51212128","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600188","EWS-NIC3/","6.31","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600189","EWS-NIC4/","8.43","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600190","Ews/","1.11","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600191","Export/","v2.0-1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600192","exteNdApplicationServer/","100.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600193","ExtraWeb/","4.0.14","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600194","fhttpd/","0.4.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600195","FileMakerPro/","6.0v4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600196","filter/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600197","FireSite/","2.7_PPC","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600198","FirstClass/","8.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600199","FJapache/","6.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600200","fnord-spb/","280604","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600201","fnord/","1.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600202","FooServe/","0.1a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600203","Footprint","4.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600204","FortiWeb-","2.2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600205","FoundryNetworks/","2.20","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600206","fp/","4.0.4.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600207","FPWS/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600208","FreezeServer/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600209","Frontier/","9.1b2-MacOSX","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600210","FrontPage-PWS32/","4.0.2.2717","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600211","FrontPage/","5.0.4.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER) (may depend on server version)"
"600212","FSID/","M25-8514","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600213","FSPMS/","5.11","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600214","FT::Srv/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600215","FTU/","2.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600216","Fujitsu-InfoProvider-Pro/","6.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600217","Fujitsu-InfoProvider-Pro/V","3.0L20","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600218","Ganesh/","2.2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600219","gettxt/","1.0a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600220","GFE/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600221","GG/","3.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600222","giFT-Gnutella/","0.0.10.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600223","glass/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600224","GMSE_Sandcastle/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600225","Gnat-Box/","3.3.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600226","GNNserver/","2.03","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600227","GoAhead-Webs/","2.5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600228","GoAhead/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600229","GoGoGadgetWebserver/","0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600230","GordianEmbedded/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600231","GoServe/","2.52","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600232","Ground/","5.3.35","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600233","GTS-Datanet/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600234","GTS/","2.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600235","gtxs/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600236","GUILD/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600237","GWS/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600238","HackersLabWebServer/","7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600239","Hardened-PHP/","5.0.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600240","HavelsanEmbeddedQuix/","18.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600241","Hawkeye/","1.3.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600242","heitml/","2.05","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600243","Hitmatic/","5.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600244","HomeGrownServer/","10.3.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600245","Homepage-Engine/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600246","HP Apache-based Web Server/","1.3.27 (Unix)","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600247","HP Web Jetadmin/","2.0.50","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600248","HP-ChaiServer/","HP-ChaiServer/3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600249","HP-ChaiSOE/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600250","HP-UX_Apache-based_Web_Server/","2.0.48","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600251","Hp-Web-JetAdmin-","5.06.190","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600252","Hp-Web-Server-","3.00.1696","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600253","HPWB/","4.3.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600254","HSP/","2.10.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600255","HTS/","2.99","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600256","HTTP/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600257","HTTPd-WASD/","11.5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600258","httpd/","2.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600259","HTTPlistener/","1.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600260","HTTPS/","0.991","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600261","HttpStk/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600262","Hunn/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600263","HyNetOS/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600264","Hyperwave-Information-Server/","5.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600265","Hyperwave-IS/","6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600266","IBM HTTP Server/","V5R3M0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600267","IBM_HTTP_Server/","7.0.0.19","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600268","IBM-HTTP-Server/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600269","IBM-ICS/","4.2.1.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600270","IBM-PROXY-WTE-US/","7.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600271","IBM-PROXY-WTE/","6f.0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600272","IBMHTTPServer/","V5R3M0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600273","icecast/","icecast/1.3.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600274","IceWarp/","13.0.3.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600275","IceWarpWebSrv/","3.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600276","ID/","878810","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600277","IdeaWebServer/","v0.80","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600278","IDS-Server/","4.1.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600279","IgServ/","1.0.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600280","iHTML/","2.20.324","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600281","IIS/","10.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600282","Inc.onz/","VMV4R4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600283","include/","3.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600284","Indy/","10.0.52","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600285","inets/","5.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600286","Infrastructure/","4.0.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600287","Inktomi Search","4.5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600288","Intel NetportExpressPro/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600289","Interaction/","4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600290","Interambition HTTPd/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600291","InterambitionHTTPd/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600292","InterJet/","3.2.1p16","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600293","InterSpace HTTP Tunneling/","1.01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600294","InterSpaceFDS/","2.00","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600295","InterSpaceHTTPTunneling/","1.01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600296","Intrusion/","1.0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600297","IPCheck/","5.4.0.796","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600298","IPL/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600299","iPlanet-Enterprise/","4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600300","iPlanet-Web-Proxy-Server/","3.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600301","iPlanetEnterprise/","4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600302","ipMonitor ","9.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600303","iPrism-httpd/","v3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600304","Ipswitch-IMail/","8.22","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600305","IpswitchWebCalendaring/","8.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600306","iPyramid.system/","1.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600307","ISS-PXServer/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600308","iTPSecureWebServer/","4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600309","iTunes/","4.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600310","IXOS-eCON/","5.0A","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600311","J2EE SDK/","1.3.1 (HTTP/1.1 Connector)","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600312","J2EESDK/","1.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600313","JAGeX/","3.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600314","JaguarServerVersion/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600315","Jana-Server/","2.4.6.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600316","JanaServer/","2.2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600317","JARING/","10.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600318","java/","1.8.0_144","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600319","JavaHttpServer/","0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600320","JavaWebServer/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600321","JBoss_","4_0_3_SP1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600322","JC-HTTPD/","1.16.20","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600323","JETServ/","2.2.25","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600325","JeusWebContainer/","Jeus WebContainer/4.2.4.7","RUNNING_VER appears to be outdated (current is at least CURRENT_VER)"
"600326","Jigsaw/","2.2.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600327","Joke/","0.9b5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600328","JRun/","4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600329","JRunWebServer/","3.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600330","JSP/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600331","JWalkServer/","Version3.3C8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600332","JXAS/","3.0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600333","keyLargo HTTPD ","v1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600334","KK-NET wpp/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600335","KnowNowLiveServer/","2.0.7.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600336","Koalah/","1.3.31","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600337","L series Web/","1.0-beta","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600338","L/","FSV-28-01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600339","LabVIEW/","5.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600340","LANWeb.I/","v1.82","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600341","Lasso/","8.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600342","Legend-IIS/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600343","LePenguin ","0.2a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600344","Liberator/","3.4.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600345","libwww-perl-daemon/","6.01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600346","lighttpd/","2.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600348","Line-Tap/","3.13","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600349","Linux-Mandrake/","3mdk","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600350","Linux/","11mdk","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600351","LiteSpeed/","6.0.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600352","LittleDutchMoose/","v10.3Build","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600353","LocalDirector/","4.2.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600354","Lotus-Domino/","6.0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600355","Lotus-Domino/Release-","4.6.7a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600356","LURHQServer/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600357","LV_HTTP/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600358","M-HTTPD/","2.0.11.3 (Unix) PHP/3.0.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600359","MacHTTP/","2.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600360","madna/","1.42","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600361","MAIA/","4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600362","MailSite-HTTPMA/","8.0.5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600363","MakeShop/","1.0.29","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600364","Mandrake Linux/","10.2mdk","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600365","Mark/","1.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600366","Mathopd/","1.6b7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600367","Matsya/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600368","Mediasurface/","4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600369","Meridian Data/","2.1.340","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600370","Meta-HTML/","6.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600371","MGI Server/","1.7.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600372","MHttpd/","4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600373","Micro-HTTP/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600374","Microsoft_PWS_Mac/","4.0b1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600375","Microsoft-HTTPAPI/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600376","Microsoft-IIS/","10.0","@RUNNING_VER may be outdated (current is at least @CURRENT_VER; IIS 6.0 support is available until 2014)"
"600377","Microsoft-Internet-Information-Server/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600378","Microsoft-PWS-95/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600379","Microsoft-PWS/","3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600380","Microsoft-WinCE/","6.00","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600381","Midgard/","8.09.6.99","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600382","mini_httpd/","1.1919","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600383","Mini-Proxy/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600384","Mini-Web/","0.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600385","MiniServ/","1.590","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600386","MiniWebSvr/","0.0.9svn","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600387","Minstrel-httpd/","2.0.g","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600388","Miranda Web/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600389","MirandaWeb/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600390","Mirapoint/","3.5.4-GR","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600391","Miwok/","1.618","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600392","mod_accel/","1.0.34","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600393","mod_accessref/","1.0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600394","mod_accounting/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600395","mod_adu/","cu_1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600396","mod_advert/","1.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600397","mod_antihak/","0.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600399","mod_attach/","0.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600400","mod_auth_ascauth/","1.1-Basic","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600401","mod_auth_birdview/","1.00","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600402","mod_auth_cutoken/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600403","mod_auth_external/","2.2.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600404","mod_auth_ianus/","3.4-PAT","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600405","mod_auth_inst.c/","19980202","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600406","mod_auth_ip/","1.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600407","mod_auth_kerb/","5.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600408","mod_auth_ldap/","2.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600409","mod_auth_mda/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600410","mod_auth_mysql/","2.20","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600411","mod_auth_nds/","0.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600412","mod_auth_notes/","0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600413","mod_auth_ns/","0.2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600414","mod_auth_nt/","1.3.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600415","mod_auth_ntdom/","0.4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600416","mod_auth_ora7/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600417","mod_auth_ora8/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600418","mod_auth_oracle/","0.5.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600419","mod_auth_pam_external/","0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600420","mod_auth_pam/","1.1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600421","mod_auth_passthrough/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600422","mod_auth_pgsql_sys/","0.9.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600423","mod_auth_pgsql/","2.0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600424","mod_auth_pop3/","0.0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600425","mod_auth_radius/","1.5.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600426","mod_auth_remote/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600427","mod_auth_shadow/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600428","mod_auth_sspi/","1.0.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600429","mod_auth_tkt/","2.1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600430","mod_authserv_userdir/","asam1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600431","mod_backhand/","1.2.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600432","mod_bandwidth/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600433","mod_become/","1.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600434","mod_bigwig/","2.0-15","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600435","mod_binford/","6100","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600436","mod_blosxom/","0.05","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600437","mod_bluestem/","0.19","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600438","mod_bwlimited/","1.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600439","mod_bwprotect/","0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600440","mod_bwshare/","0.2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600441","mod_cap/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600442","mod_catax/","4.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600443","mod_cgi_sugid/","1.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600444","mod_choke/","0.07","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600445","mod_chroot/","0.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600446","mod_clarassl/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600447","mod_clickthru/","0.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600448","mod_czech/","3.1.1b2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600449","mod_deflate/","1.0.21","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600450","mod_demonstrans/","0.3.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600451","mod_dp/","lk.0.20.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600452","mod_dtcl/","mod_dtcl/0.5.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600453","mod_fastcgi/","2.4.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600454","mod_filter/","1.4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600455","mod_frontpage/","4.0.4.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600456","mod_gzip/","2.1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600457","mod_id/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600458","mod_imode/","1.0.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600459","mod_index_rss/","1.01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600460","mod_interchange/","1.34","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600461","mod_ipdrop/","0.01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600462","mod_ipw/","0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600463","mod_jk/","1.2.50","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600464","mod_jk2/","2.0.5-dev","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600465","Mod_JServ/","1.1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600466","mod_layout/","4.0.1a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600467","mod_ldap_userdir/","1.1.17","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600468","mod_lisp/","2.35","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600469","mod_log_byte/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600470","mod_log_bytes/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600471","mod_loopback/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600472","mod_macro/","1.1.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600473","mod_mcrypt/","2.4.11","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600474","mod_mirror/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600475","mod_mono/","3.13","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600476","mod_mp3/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600477","mod_mp3idver/","0.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600478","mod_mrim/","0.17","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600479","mod_mundinteractivos/","2.1.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600480","mod_mya/","3.0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600481","mod_mylo/","0.2.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600482","mod_nsn/","1.0_0-dev","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600483","mod_oas/","5.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600484","Mod_OOiS/","0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600485","mod_oprocmgr/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600486","mod_pcgi2/","2.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600487","mod_perl/","2.0.13","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600488","mod_plsql/","11.1.1.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600489","mod_pointer/","0.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600490","mod_protection/","0.0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600491","mod_psoft_traffic/","0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600492","mod_pubcookie/","3.3.4a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600493","mod_pubcookie/a5/","1.77.2.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600494","mod_python/","3.5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600495","mod_random/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600496","mod_rbcban/","2.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600497","mod_rdbcookie/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600498","mod_relocate/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600499","mod_repository/","0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600500","mod_require_host/","2.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600501","mod_roaming/","2.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600502","mod_rpaf/","0.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600503","mod_rsawebagent/","8.0.2[765]","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600504","mod_ruby/","1.3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600505","mod_scgi/","1.15","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600506","Mod_security/","1.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600507","mod_session/","1.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600508","mod_sleep/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600509","mod_snmp/","1.3.6.11","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600510","mod_spidercache/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600511","mod_ssl/","2.9.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER) (may depend on server version)"
"600512","mod_sugid_files/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600513","mod_survey/","3.0.15","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600514","mod_suspend/","0.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600515","mod_tagx/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600516","mod_tcl/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600517","mod_text2html/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600518","mod_throttle/","3.2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600519","mod_trigger/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600520","mod_tsunami/","3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600521","mod_uwa/","3.2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600522","mod_vdbh/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600523","mod_vhost_ldap/","1.2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600524","mod_vhost_mysql/","0.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600525","mod_view/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600526","mod_virgule/","1.41","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600527","mod_virtual/","0.97.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600528","mod_watch/","4.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600529","mod_webapp/","1.2.0-dev","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600530","mod_webkit/","0.9.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600531","mod_webkit2/","0.9.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600532","mod_websh/","3.5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600533","mod_wodan/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600534","mod_xlayout_jh/","0.0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600535","mod_xslt/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600536","mod-xslt/","1.3.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600537","ModLayout/","5.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600538","ModNeva/","2.0.b","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600539","Monkey/","0.9.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600540","Mono-XSP Server/","1.0.5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600541","Mono-XSPServer/","1.0.5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600542","MontaVistaLinux/","2.1UPnP","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600543","MortBay-Jetty-","2.3.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600544","MS-MFC-HttpSvr/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600545","MSIWB/","MSIWB/1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600546","MTransit2/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600547","Mya/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600548","MyWebServer/","3.5.71","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600549","NaviServer/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600550","NCSA-CRC+/","1.4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600551","NCSA/","1.5.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600552","NDCAP/","2.00","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600553","NeoWebScript/","3.3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600554","NetApp/","7.3.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600556","NetApp/build.","RbecksN_000805_0805.000805_0940","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600557","NetCache appliance \(NetApp/","6.1.1RC1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600558","NetCacheappliance\(NetApp/","6.1.1RC1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600559","NetEVI/","3.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600560","NetPhantom/","3.61","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600561","NetPresenz/","4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600562","NetPublisher/","1.10.020","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600563","Netrox-Apache/","1.3.24","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600564","Netscape-Administrator/","3.54","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600565","Netscape-Brew/","6.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600566","Netscape-Commerce/","1.13","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600567","Netscape-Communications/","1.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600568","Netscape-Enterprise/","6.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600569","Netscape-FastTrack/","4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600570","Netscape-Proxy/","3.52","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600571","NetWare-Enterprise-Web-Server/","5.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600572","NetZoom","1.00","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600573","ngd/","4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600574","mod_wsgi/","4.9.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600575","nginx/","1.24.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600576","Niagara Web Server/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600577","NiagaraWebServer/","3.5.34","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600578","NIS/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600579","Nitix/","4.2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600580","Novell-HTTP-Server/","3.1R1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600581","NS_","6.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600582","Nucleus/","4.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600583","NUD/","3.9.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600584","NULLhttpd/","0.5.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600585","NYSED-A-Series/","2.0X","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600586","OAS/","4.57","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600587","OFIWebServer","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600588","OmniHTTPd/","2.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600589","OmniSecure/","3.0a3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600590","Open-Market-Secure-WebServer/","V2.1.","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600591","Open-Market-Secure-WebServerGlobal/","2.0.10.RC0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600592","Open-Market-SecureLink-Bridge/","V2.1.RC0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600593","OpenPKG/","2.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600594","OpenSA/","1.0.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600595","OpenSSL/","3.6.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER). OpenSSL 1.1.1w is current for 1.x and is supported via contract, and 3.0.12 for 3.0.x, and 3.1.4 for 3.1.x."
"600596","oplweb/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600597","Oracle HTTP Server Powered by Apache/","1.3.22","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600598","Oracle_Web_Listener_NT_","2.1.0.3.1/1.20in2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600599","Oracle_Web_Listener/","4.0.8.2.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600600","Oracle_Web_listener2.1/","1.20in2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600601","Oracle_Web_listener3.0.2.0.0/","2.14FC1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600602","Oracle_Web_listener3.0/","2.13","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600603","Oracle_WebDb_Listener/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600604","Oracle-Application-Server-10g/","10.1.3.5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600605","Oracle9i Enterprise Edition Release ","9.2.0.1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600606","Oracle9iAS ","(9.0.3.0.0) Containers for J2EE","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600607","Oracle9iAS-Web-Cache/","9.0.4.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600608","Oracle9iAS/","9.0.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600609","OracleAS-Web-Cache-10g/","10.1.2.3.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600610","Orion/","2.0.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600611","OSDK/","2.0.44","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600612","OSU/","3.10a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600613","OWW/","29.3.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600614","Pack/","1.0-ea1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600615","PaintChatHTTP/","3.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600616","PasteWSGIServer/","0.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600617","Patchy/","1.3.31","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600618","PBFilter/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600619","PCGI/","2.0a5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600620","Perl/","v5.36.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600621","PersonalNetFinder/","1.0 ID/ACGI","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600622","PEWG/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600623","Phantom/","2.2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600624","PHP-CGI/","0.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600625","PHP/","8.5.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600626","PHP/FI-","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600627","PI/","7.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600628","Pi3Web/","2.0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600629","pks_www/","0.9.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600630","plex/","9.5.2a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600631","plexus/","3.0m","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600632","Polycom-WS/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600633","Pow Web/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600634","PowerDynamo Personal Web Server/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600635","PoweredByIISBanner/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600636","PowerWeb/","4.05r5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600637","PowWeb/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600638","Pramati Server/","6.0 SP2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600639","PRINT_SERVER WEB ","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600640","ProfiHost.com/","1.3.28","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600641","Protocol ","1.99; Server OpenSSH_2.1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600642","proxy_html/","3.1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600644","prxp_solo/","1.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600645","Purveyor / ","v1.2 Windows NT","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600646","Purveyor Encrypt Export/","v2.0-1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600647","Purveyor/","v1.3.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600648","PWPWEB/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600649","PWS/","8.0.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600650","PWSERV-","65","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600651","PyApache/","4.19","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600652","Python/","3.13.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600653","QTSS/","6.1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600654","QuantumCorporation./","3.4.790","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600655","query/","1.16.83","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600656","Quid Pro Quo/","2.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600657","QuidProQuo/","2.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600658","RAID HTTP Server/","1.11","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600659","RAIDHTTPServer/","1.11","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600660","Rapid Logic/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600661","RapidLogic/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600662","Rapidsite/Apa/","1.3.33","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600663","RAQdevil/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600664","Rational_Web_Platform/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600665","RCS/","3000","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600666","RealVNC/","4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600667","Red-Hat-Secure/","3.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600668","RedHat/","3022","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600669","RedirServer/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600670","Redline Networks Accelerator ","2.3.13","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600671","REMTEK/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600672","RENSRV/v","8.43","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600673","Replicon Web Time Sheet/","6.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600674","RepliconWebTimeSheet/","6.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600675","Replique/v","0.2.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600676","Report Server/","3.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600677","Resin/","4.0.53","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600678","rewrit/","1.1a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600679","rewrite/","3.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600680","Rex/","12.0.7601.17514","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600681","REXX_SOCKETS/","3.01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600682","REXX/","4.01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600683","RMSWebServer/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600684","RomPager/","4.51","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600685","Roxen/","5.1.185_NT-release1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600687","Roxen·Challenger/","1.3.126","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600688","Ruby/","1.8.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600689","rus/","PL30.22","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600690","rwh/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600691","S.u.S.E./","6.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600692","Sambar/","Sambar/7.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600693","SAPJ2EEEngine/","7.02","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600694","SAPOttpd/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600695","Savant/","3.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600696","SDD/","1.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600697","Secure/","3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600698","secured_by_Covalent/","1.6.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600699","secured_by_Raven/","1.5.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600700","SecureEntry/","0.1.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600702","SecureTransport/","4.9.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600703","SEDWebserver/","1.3.26","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600704","Seed/","4103c","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600706","Server:Apache/","1.2b7-dev","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600707","Server/","15.0.2.547","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600708","Servertec-IWS/","1.11","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600709","Service admin/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600710","Servlet/","2.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600711","ServletExec/","3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600712","ServletExecAS/","3.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600713","Shadow-OS-390-Web-Server/","04.08.01","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600714","SHC/","1.5.8b","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600715","ShomitiTHGs/","3.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600716","Signature/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600717","SilverStream Server/","3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600718","SilverStreamServer/","100.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600719","Simple, Secure Web Server ","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600720","SimpleHTTP/","1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600721","SimpleWebserver/","2.13","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600722","simwebs/","4.0.6","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600723","SiteScope/","8.0.0.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600724","SkunkWeb/","3.4b3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600725","Slinger/","1.1a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600726","Sly-ISUmods/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600727","Smart CDS/","2.9-final","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600728","SmartCDS/","2.9-final","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600729","SmartServer/","4.08.0002","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600730","SmiskigWWWServer/","69","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600731","Snap Appliances, Inc./","3.0.566","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600732","SNMP Research DR-Web Agent/","1.25.4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600733","SomeServer/","4.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600734","SonarHosting/","1.3.27","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600735","SpaceSurfer/","1.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600736","SpecialixJETSTREAM/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600737","Speed Touch Web Server/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600738","SpeedTouchWebServer/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600739","Spinnaker/","3.12","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600740","SpinServer/","1.0.00","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600741","Spipe/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600742","Splash/","3.0.3(Foo-nix)","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600743","Spry-SafetyWEB-Server-NT/","1.3a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600744","Spyglass_MicroServer/","2.01FC1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600745","Squeegit/","1.2.5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600746","Squid/","3.1.18","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600747","SSI/","POEM-iso2022-20001201","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600748","SSL/","1.15","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600749","SSLeay/","0.9.0b","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600750","SST/","210q","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600751","Statistics Server ","5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600752","Stonghold/","2.4.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600753","StorageNetFibreChannelAccessHub/","V1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600754","StorageTekAccessHub/","V1.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600755","StoreSense-Bridge/","1.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600756","Streamer-Server/","3.1.18","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600757","Stronghold/","4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600758","StummCom/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600759","StWeb/","1.3.27","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600760","Sun Directory Services ","3.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600761","Sun_WebServer/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600762","Sun-Java-System-Application-Server/","72004Q2UR5","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600763","Sun-Java-System-Web-Server/","7.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600764","Sun-ONE-Application-Server/","7.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600765","Sun-ONE-ASP/","4.0.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600766","Sun-ONE-Web-Server/","6.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600767","SunOS/","5.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600768","SVN/","1.14.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600769","sw/","1.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600770","swcd/","5.2.0032","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600771","SWS-","2.3","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600772","sxnet/","1.2.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600773","System Management Homepage/","2.1.6.156","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600774","T-httpd/","1.2.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600775","T/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600776","TAC/","Xenta 5111.10","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600777","TagWeb/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600778","TAuth/","1.0.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600779","Tcl-Webserver/","3.5.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600780","TeamFile/","2.1.2-4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600781","TeamTrack/","6.1(61025)","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600782","TeleFinder/","5.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600783","Temple-of-Hate/","9.1.1-1.3.31","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600784","Texis-Monitor/","5.01.1161965127","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600785","THEO Server/","5.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600786","ThreadedDBL/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600787","thttpd/","2.30","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600788","Thunderstone-Texis-Vortex/","4.02.1047973790","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600789","Thunderstone-Texis/","4.03.1052723967","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600790","Thy/","0.9.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600791","tigershark/","3.0.128","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600792","TinyWeb/","1.93","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600793","tivo-httpd-","1:8.3-01-2:540","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600794","TKTAuth/","1.3.7","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600795","Tomcat Web Server/","3.3.2 Final ( JSP 1.1; Servlet 2.2 )","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600796","Tomcat/","9.0.30","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER). Tomcat 7.0.57, 6.0.41, 5.5.36 and 4.1.40 are also current."
"600797","tracd/","0.12.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600798","trakkerd/","v2.87-mm-as+re+ex+mp-WAP+WML","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600799","Tree/","8.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600800","TSM_HTTP/","0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600801","TTP/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600802","TUX/","2.0 (Linux)","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600803","TuxSQLConf/","20070207-00","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600804","TuxTrafficLogRotate/","20051209-00","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600805","Ubicom/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600806","UcoZXSrv/","1.4.2","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600807","UHTTPServer/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600808","Ultraseek/","5.8.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600809","UNIT_Homepage/","2.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600810","UnrealEngine UWeb Web Server Build ","436","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600811","UPS_Server/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600812","UserLand Frontier/","9.0-WinNT","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600813","UserWeb/","v2.65","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600814","uWS/","2.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600815","v.ii/","0.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600816","v2h/","1.5.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600817","VCNET2-Server/","1.03","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600818","VDB/","1.1.1-se","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600819","Vernier/","5.2.0.63","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600820","vhostdb/","1.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600821","Viking/","1.9","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600822","Virata-EmWeb/","R6_2_1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600823","VIRTUAL/","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600824","VisiBroker/","4.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600825","VisualPulse (tm) ","3.0c","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600826","Vivasoft/","8.8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600827","VM_ESA/","2.3.0.9902","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600828","VM:Secure/","2.5A","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600829","VM:Webgateway/","03.1A","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600830","Vorlon SR ","1.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600831","Vortech_PHP/","0.1.0-p0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600832","vqServer/","vqServer/1.9.55","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600833","w/CBS::adtag/","1.0a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600834","w/CBS::gettxt/","1.0a","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600835","WC/","3000","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600836","WDaemon/","10.0.4","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER). Versions lower than 4 have serious vulnerabilities."
"600837","Web Crossing/","4.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600838","Web Sphere Application Server/","5.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600839","Web Transaction Server For ClearPath MCP ","6.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600840","Web_Server_4D/","3.6.1b8","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600841","Web-Server/","3.0","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600842","WEB602/","1.04","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600843","WebAuth/","3.7.1","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600844","WebBase 4.5 build ","69","@RUNNING_VER appears to be outdated (current is at least @CURRENT_VER)"
"600845","WebCo/","Build9708-2","@RUNNING_V
Download .txt
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
Download .txt
SYMBOL INDEX (2 symbols across 2 files)

FILE: documentation/nikto_schema_mysql.sql
  type `nikto_table` (line 1) | CREATE TABLE `nikto_table` (

FILE: documentation/nikto_schema_postgresql.sql
  type nikto_table (line 1) | CREATE TABLE nikto_table (
Condensed preview — 80 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (2,407K chars).
[
  {
    "path": ".dockerignore",
    "chars": 93,
    "preview": ".git\n.gitignore\n.gitattributes\n.editorconfig\n.github\nCOPYING\ndevdocs\ndocumentation\nREADME.md\n"
  },
  {
    "path": ".editorconfig",
    "chars": 217,
    "preview": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\ntrim_trailing_whitespace = true\ninsert_final_newline = true\n\n[*.{pl,pl"
  },
  {
    "path": ".gitattributes",
    "chars": 21,
    "preview": "*   text=auto eol=lf\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "chars": 15,
    "preview": "patreon: sullo\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/FeatureRequest.md",
    "chars": 158,
    "preview": "---\nname: Feature Request\nabout: Request a new feature for Nikto\ntitle: 'Feature: '\nlabels: 'enhancement'\nassignees: ''\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/TestRequest.md",
    "chars": 190,
    "preview": "---\nname: New Test \nabout: Reqeust a new test in Nikto\ntitle: 'Test Request: '\nlabels: 'check'\nassignees: ''\n\n---\n### De"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "chars": 451,
    "preview": "---\nname: Bug Report\nabout: Report an issue found in Nikto\ntitle: 'Bug: '\nlabels: bug\nassignees: ''\n\n---\n### Expected be"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "chars": 28,
    "preview": "blank_issues_enabled: false\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/false_positive_negative_report.md",
    "chars": 540,
    "preview": "---\nname: False positive / negative Report\nabout: Report a false positive / negative found by Nikto\ntitle: 'False Positi"
  },
  {
    "path": ".github/workflows/docker-build-push.yaml",
    "chars": 1135,
    "preview": "name: Build and Push Docker Image\n\non:\n  push:\n    branches:\n      - master\n\npermissions:\n  contents: read\n  packages: w"
  },
  {
    "path": ".github/workflows/update-worker-manifest.yml",
    "chars": 2777,
    "preview": "name: Update build timestamp + manifest\n\non:\n  push:\n    branches: [\"main\"]\n    # Prevent infinite loops: the commit tha"
  },
  {
    "path": ".gitignore",
    "chars": 41,
    "preview": ".DS_Store\ntests/udb_*\nnikto.conf\n.cursor\n"
  },
  {
    "path": "COPYING",
    "chars": 1130,
    "preview": "##########################################################################################\n# Copyright (C) 2001–2026 Chr"
  },
  {
    "path": "COPYING.LibWhisker",
    "chars": 1310,
    "preview": "LW2 Copyright (c) 2009, Jeff Forristal (wiretrip.net)\nAll rights reserved.\n\nRedistribution and use in source and binary "
  },
  {
    "path": "Dockerfile",
    "chars": 929,
    "preview": "FROM alpine:3.23.3\n\nLABEL version=\"2.6.0\" \\\n      author=\"Author Paul Sec (https://github.com/PaulSec), Nikto User https"
  },
  {
    "path": "README.md",
    "chars": 9997,
    "preview": "nikto\n=====\n[![alt text](https://cirt.net/wp-content/uploads/2025/12/patreon.png \"Become a patron of Nikto!\")](https://w"
  },
  {
    "path": "documentation/manpage.xml",
    "chars": 19887,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE refentry PUBLIC \"-//OASIS//DTD DocBook XML V4.1.2//EN\" \"http://www.oasi"
  },
  {
    "path": "documentation/nikto.1",
    "chars": 13840,
    "preview": "'\\\" t\n.\\\"     Title: nikto.pl\n.\\\"    Author: [see the \"Authors\" section]\n.\\\" Generator: DocBook XSL Stylesheets vsnapsho"
  },
  {
    "path": "documentation/nikto_schema_mysql.sql",
    "chars": 799,
    "preview": "CREATE TABLE `nikto_table` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `scanid` varchar(32) DEFAULT NULL,\n  `testid` var"
  },
  {
    "path": "documentation/nikto_schema_postgresql.sql",
    "chars": 974,
    "preview": "CREATE TABLE nikto_table (\n  id serial NOT NULL,\n  scanid varchar(32) DEFAULT NULL,\n  testid varchar(6) NOT NULL,\n  ip v"
  },
  {
    "path": "documentation/perltidyrc",
    "chars": 106,
    "preview": "# perltidy options for nikto development\n# copy to ~/.perltidyrc\n-lp\n-vt=2\n-pt=2\n-cti=3\n-bar\n-nolq\n-l=100\n"
  },
  {
    "path": "program/.timestamp",
    "chars": 11,
    "preview": "1773974668\n"
  },
  {
    "path": "program/databases/db_404_strings",
    "chars": 2087,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_content_search",
    "chars": 4517,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_dictionary",
    "chars": 13285,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_favicon",
    "chars": 25254,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_headers_common",
    "chars": 2918,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_headers_suggested",
    "chars": 1277,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2024 Chris"
  },
  {
    "path": "program/databases/db_multiple_index",
    "chars": 878,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_options",
    "chars": 2011,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_outdated",
    "chars": 132956,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_realms",
    "chars": 10999,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_server_msgs",
    "chars": 31469,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_tests",
    "chars": 1300187,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_useragents",
    "chars": 3488,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/databases/db_variables",
    "chars": 6102,
    "preview": "#######################################################################\n# File Source: https://cirt.net\n# (c) 2001 Chris"
  },
  {
    "path": "program/nikto.conf.default",
    "chars": 3267,
    "preview": "#########################################################################################################\n# CONFIG STUFF"
  },
  {
    "path": "program/nikto.pl",
    "chars": 14079,
    "preview": "#!/usr/bin/env perl\nuse strict;\n\n# Modules are now loaded in a function so errors can be trapped and evaluated\nload_modu"
  },
  {
    "path": "program/plugins/LW2.pm",
    "chars": 205035,
    "preview": "#!perl\n# LW2 version 2.5.2\n#   LW2 Copyright (c) 2009, Jeff Forristal (wiretrip.net)\n#   All rights reserved.\n#\n#   Redi"
  },
  {
    "path": "program/plugins/nikto_apacheusers.plugin",
    "chars": 7310,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_auth.plugin",
    "chars": 7769,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_cgi.plugin",
    "chars": 2583,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_content_search.plugin",
    "chars": 2341,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_cookies.plugin",
    "chars": 4514,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_core.plugin",
    "chars": 188138,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_dictionary_attack.plugin",
    "chars": 2853,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_favicon.plugin",
    "chars": 3363,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_fileops.plugin",
    "chars": 5727,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_headers.plugin",
    "chars": 23440,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_ms10_070.plugin",
    "chars": 2128,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_msgs.plugin",
    "chars": 4481,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_multiple_index.plugin",
    "chars": 1923,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_negotiate.plugin",
    "chars": 1673,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_options.plugin",
    "chars": 7689,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_optionsbleed.plugin",
    "chars": 1652,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_outdated.plugin",
    "chars": 6715,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_paths.plugin",
    "chars": 2508,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_put_del_test.plugin",
    "chars": 2665,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_report_csv.plugin",
    "chars": 5611,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_report_html.plugin",
    "chars": 18964,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_report_json.plugin",
    "chars": 4727,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_report_sqlg.plugin",
    "chars": 6363,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_report_text.plugin",
    "chars": 2659,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_report_xml.plugin",
    "chars": 11085,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_robots.plugin",
    "chars": 5297,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_shellshock.plugin",
    "chars": 4465,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_siebel.plugin",
    "chars": 5466,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_sitefiles.plugin",
    "chars": 12420,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_springboot.plugin",
    "chars": 5282,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_ssl.plugin",
    "chars": 2869,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/plugins/nikto_tests.plugin",
    "chars": 12214,
    "preview": "###############################################################################\n# SPDX-License-Identifier: GPL-3.0-only\n"
  },
  {
    "path": "program/templates/htm_close.tmpl",
    "chars": 97,
    "preview": "<p class=\"copyright\">&copy; 2008 Chris Sullo</p>\n\n<!-- (c) 2008 Chris Sullo -->\n\n</body>\n</html>\n"
  },
  {
    "path": "program/templates/htm_end.tmpl",
    "chars": 472,
    "preview": "<div>\n<p></p>\n<table class=\"headerTable\">\n <tr>\n  <td>Host Summary</td>\n </tr>\n</table>\n<table  class=\"dataTable\">\n <tr>"
  },
  {
    "path": "program/templates/htm_host_head.tmpl",
    "chars": 1301,
    "preview": "<div>\n<a name=\"#TEMPL_HCTR#\"></a>\n<table class=\"headerTable\">\n <tr>\n   <td>#TEMPL_HOSTNAME# / #TEMPL_IP# port #TEMPL_POR"
  },
  {
    "path": "program/templates/htm_host_item.tmpl",
    "chars": 548,
    "preview": "<table class=\"dataTable\">\n  <tr>\n    <td class=\"column-head\">URI</td>\n    <td>#TEMPL_URI#</td>\n  </tr>\n  <tr>\n    <td cl"
  },
  {
    "path": "program/templates/htm_start.tmpl",
    "chars": 821,
    "preview": "<!DOCTYPE html>\n<html>\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\">\n <title>Nikto Report</"
  },
  {
    "path": "program/templates/htm_summary.tmpl",
    "chars": 719,
    "preview": "<p></p>\n<table class=\"headerTable\">\n  <tr>\n    <td>Scan Summary</td>\n  </tr>\n</table>\n<table class=\"dataTable\">\n  <tr>\n "
  },
  {
    "path": "program/templates/nikto.dtd",
    "chars": 1468,
    "preview": "<?xml encoding=\"UTF-8\"?>\n\n<!ELEMENT niktoscans (niktoscan)+>\n<!ATTLIST niktoscans\n  xmlns CDATA #FIXED ''>\n\n<!ELEMENT ni"
  },
  {
    "path": "program/utils/nikto-bulk.sh",
    "chars": 6786,
    "preview": "#!/usr/bin/env bash\nset -euo pipefail\n\n# Don't run as root\nif [[ \"$(id -u)\" -eq 0 ]]; then\n  echo \"ERROR: Do not run thi"
  },
  {
    "path": "program/utils/replay.pl",
    "chars": 3240,
    "preview": "#!/usr/bin/perl\nuse strict;\nuse warnings;\n\n#############################################################################"
  }
]

About this extraction

This page contains the full source code of the sullo/nikto GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 80 files (2.1 MB), approximately 555.4k tokens, and a symbol index with 2 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!