Lucene search

K
nessusThis script is Copyright (C) 2008-2022 Tenable Network Security, Inc.MAILWATCH_DOC_FILE_INCLUDE.NASL
HistorySep 26, 2008 - 12:00 a.m.

MailWatch for MailScanner mailscanner/docs.php doc Parameter Traversal Local File Inclusion

2008-09-2600:00:00
This script is Copyright (C) 2008-2022 Tenable Network Security, Inc.
www.tenable.com
11

CVSS2

7.5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:P/I:P/A:P

EPSS

0.011

Percentile

84.6%

The remote host is running MailWatch for MailScanner, a web-based front-end to MailScanner written in PHP.

The version of MailWatch for MailScanner installed on the remote host fails to sanitize user-supplied input to the ‘doc’ parameter of the ‘docs.php’ script before using it to include PHP code. Regardless of PHP’s ‘register_globals’ setting, an unauthenticated attacker may be able to leverage this issue to view arbitrary files or to execute arbitrary PHP code on the remote host, subject to the privileges of the web server user id.

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#

include('deprecated_nasl_level.inc');
include('compat.inc');

if (description)
{
  script_id(34293);
  script_version("1.18");
  script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");

  script_cve_id("CVE-2008-5991");
  script_bugtraq_id(31378);
  script_xref(name:"EDB-ID", value:"6552");

  script_name(english:"MailWatch for MailScanner mailscanner/docs.php doc Parameter Traversal Local File Inclusion");

  script_set_attribute(attribute:"synopsis", value:
"The remote web server contains a PHP script that is susceptible to a
local file include attack.");
  script_set_attribute(attribute:"description", value:
"The remote host is running MailWatch for MailScanner, a web-based
front-end to MailScanner written in PHP. 

The version of MailWatch for MailScanner installed on the remote host
fails to sanitize user-supplied input to the 'doc' parameter of the
'docs.php' script before using it to include PHP code.  Regardless of
PHP's 'register_globals' setting, an unauthenticated attacker may be
able to leverage this issue to view arbitrary files or to execute
arbitrary PHP code on the remote host, subject to the privileges of
the web server user id.");
  script_set_attribute(attribute:"solution", value:
"Unknown at this time.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P");
  script_set_cvss_temporal_vector("CVSS2#E:POC/RL:U/RC:ND");

  script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"true");
  script_set_attribute(attribute:"exploited_by_nessus", value:"true");
  script_cwe_id(22);

  script_set_attribute(attribute:"plugin_publication_date", value:"2008/09/26");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:mailwatch:mailwatch");
  script_set_attribute(attribute:"thorough_tests", value:"true");
  script_end_attributes();

  script_category(ACT_ATTACK);
  script_family(english:"CGI abuses");

  script_copyright(english:"This script is Copyright (C) 2008-2022 Tenable Network Security, Inc.");

  script_dependencies("http_version.nasl");
  script_require_keys("www/PHP");
  script_exclude_keys("Settings/disable_cgi_scanning");
  script_require_ports("Services/www", 80);

  exit(0);
}


include("global_settings.inc");
include("misc_func.inc");
include("http.inc");

port = get_http_port(default:80);
if (!can_host_php(port:port)) exit(0);


# nb: should be a local file ending in ".html";
file = "jpgraph-1.12.1/docs/index.html";
file_str = "<title>JpGraph Documentation</title>";
traversal = "../";


# Loop through directories.
if (thorough_tests) dirs = list_uniq(make_list("/mailscanner", "/mailwatch", cgi_dirs()));
else dirs = make_list(cgi_dirs());

foreach dir (dirs)
{
  # Verify the issue with an HTML file that's included in the distribution.
  #
  # nb: we need to remove the ".html" from the file.
  url = string(
    dir, "/docs.php?", 
    "doc=", traversal, substr(file, 0, strlen(file)-6)
  );

  w = http_send_recv3(method:"GET", item:url, port:port);
  if (isnull(w)) exit(1, "The web server on port "+port+" did not answer.");
  res = w[2];

  # There's a problem if we see that file.
  if (file_str >< res)
  {
    if (report_verbosity)
    {
      report = string(
        "\n",
        "Nessus was able to exploit the issue and retrieve the contents of\n",
        "'", file, "' on the remote host using the\n",
        "following URL :\n",
        "\n",
        "  ", build_url(port:port, qs:url), "\n"
      );
      security_warning(port:port, extra:report);
    }
    else security_warning(port);

    exit(0);
  }
}

CVSS2

7.5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:P/I:P/A:P

EPSS

0.011

Percentile

84.6%

Related for MAILWATCH_DOC_FILE_INCLUDE.NASL