Lucene search

K
nessusThis script is Copyright (C) 2010-2018 Tenable Network Security, Inc.MACOSX_SERVER_WIKI_ACL_BYPASS.NASL
HistoryApr 08, 2010 - 12:00 a.m.

Apple Mac OS X Wiki Server Weblog SACL Security Bypass

2010-04-0800:00:00
This script is Copyright (C) 2010-2018 Tenable Network Security, Inc.
www.tenable.com
94

CVSS2

4

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

SINGLE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

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

EPSS

0.001

Percentile

39.3%

The remote Mac OS X Server Web Services installation contains a version of the Wiki Server component that is affected by a security bypass vulnerability due to a failure to check the service access control lists (SACLs) during the creation of a user’s weblog. An authenticated, remote attacker can exploit this to publish content to the Wiki Server.

#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");

if (description)
{
  script_id(45440);
  script_version("1.11");
  script_cvs_date("Date: 2018/07/17 12:00:07");

  script_cve_id("CVE-2010-0534");
  script_bugtraq_id(39291);

  script_name(english:"Apple Mac OS X Wiki Server Weblog SACL Security Bypass");
  script_summary(english:"Queries the version of Mac OS X Web Services.");

  script_set_attribute(attribute:"synopsis", value:
"The remote host is affected by a security bypass vulnerability.");
  script_set_attribute(attribute:"description", value:
"The remote Mac OS X Server Web Services installation contains a
version of the Wiki Server component that is affected by a security
bypass vulnerability due to a failure to check the service access
control lists (SACLs) during the creation of a user's weblog. An
authenticated, remote attacker can exploit this to publish content to
the Wiki Server.");
  script_set_attribute(attribute:"see_also", value:"http://support.apple.com/kb/HT4077");
  script_set_attribute(
    attribute:"see_also",
    value:"http://lists.apple.com/archives/security-announce/2010/Mar/msg00001.html"
  );
  script_set_attribute(
    attribute:"see_also",
    value:"http://www.securityfocus.com/advisories/19364"
  );
  script_set_attribute(attribute:"solution", value:"Upgrade to Mac OS X version 10.6.3 or later.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:S/C:N/I:P/A:N");
  script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
  script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
  script_set_attribute(attribute:"exploit_available", value:"false");

  script_set_attribute(attribute:"vuln_publication_date", value:"2010/03/29");
  script_set_attribute(attribute:"patch_publication_date", value:"2010/03/29");
  script_set_attribute(attribute:"plugin_publication_date", value:"2010/04/08");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_end_attributes();

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

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

  script_dependencies("macosx_server_web_svcs_version.nasl");
  script_require_keys("www/macosx_web_svcs_srv");
  script_require_ports("Services/www", 80);
  exit(0);
}

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

port = get_http_port(default:80);
installs = get_install_from_kb(port:port, appname:"macosx_web_svcs_srv", exit_on_fail:TRUE);

v = installs['ver'];
if ( isnull(v) || v == UNKNOWN_VER ) exit(0, "An unknown version is installed on port "+port+".");

if ( int(v) >= 219 && int(v) < 229 ) security_warning(port);
else exit(0, "Version "+v+" is installed and not affected.");

CVSS2

4

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

SINGLE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

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

EPSS

0.001

Percentile

39.3%

Related for MACOSX_SERVER_WIKI_ACL_BYPASS.NASL