Lucene search

K
nessusThis script is Copyright (C) 2013-2018 Tenable Network Security, Inc.CISCO-SA-20130227-CUPS.NASL
HistoryAug 16, 2013 - 12:00 a.m.

Cisco Unified Presence Server DoS (cisco-sa-20130227-cups)

2013-08-1600:00:00
This script is Copyright (C) 2013-2018 Tenable Network Security, Inc.
www.tenable.com
8

CVSS2

7.8

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

COMPLETE

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

EPSS

0.002

Percentile

53.2%

According to its self-reported version, the version of Cisco Unified Presence Server installed on the remote host has a denial of service vulnerability. An unauthenticated, remote attacker could exploit this by sending specially crafted packets to the SIP port (TCP 5060), resulting in excessive CPU consumption.

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

include("compat.inc");

if (description)
{
  script_id(69426);
  script_version("1.7");
  script_cvs_date("Date: 2018/11/15 20:50:20");

  script_cve_id("CVE-2013-1137");
  script_bugtraq_id(58205);
  script_xref(name:"CISCO-BUG-ID", value:"CSCua89930");
  script_xref(name:"CISCO-SA", value:"cisco-sa-20130227-cups");

  script_name(english:"Cisco Unified Presence Server DoS (cisco-sa-20130227-cups)");
  script_summary(english:"Checks CUPS version");

  script_set_attribute(
    attribute:"synopsis",
    value:"The remote host is missing a vendor-supplied security patch."
  );
  script_set_attribute(
    attribute:"description",
    value:
"According to its self-reported version, the version of Cisco Unified
Presence Server installed on the remote host has a denial of service
vulnerability.  An unauthenticated, remote attacker could exploit this
by sending specially crafted packets to the SIP port (TCP 5060),
resulting in excessive CPU consumption."
  );
  # https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20130227-cups
  script_set_attribute(attribute:"see_also",value:"http://www.nessus.org/u?68deb6fc");
  script_set_attribute(
    attribute:"solution",
    value:
"Upgrade to Cisco Unified Presence Server 8.6.4SU2 / 9.1.1 or later."
  );
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:C");
  script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
  script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"false");
  script_set_attribute(attribute:"vuln_publication_date",value:"2013/02/27");
  script_set_attribute(attribute:"patch_publication_date",value:"2013/02/27");
  script_set_attribute(attribute:"plugin_publication_date",value:"2013/08/16");
  script_set_attribute(attribute:"plugin_type",value:"local");
  script_set_attribute(attribute:"cpe",value:"cpe:/a:cisco:unified_presence_server");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"CISCO");

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

  script_dependencies("ssh_get_info.nasl");
  script_require_keys("Host/UCOS/Cisco Unified Presence/version");

  exit(0);
}

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

display_version = get_kb_item_or_exit('Host/UCOS/Cisco Unified Presence/version');
match = eregmatch(string:display_version, pattern:'^([0-9.]+(?:-[0-9]+)?)($|[^0-9])');
if (isnull(match)) # this should not happen
  audit(AUDIT_FN_FAIL, 'eregmatch');
else
  version = match[1];

version = str_replace(string:version, find:"-", replace:".");

# the advisory says:
# Fixed versions are 8.6.4SU2 for version 8.6,
# and 9.1.1 for version 9.0.  Version 9.1 is not vulnerable.
#
# research indicates 8.6.4SU2 looks like 8.6.4.12900-2
# 8.6.4SU3 looks like 8.6.4SU3 looks like 8.6.4.13900-4
# this check will ignore the number after the dash to account
# for the possibility that 8.6.4SU2 has multiple valid builds
if (version =~ "^8\.6\." && ver_compare(ver:version, fix:'8.6.4.12900') < 0)
  fix = '8.6.4.12900';
else if (version =~ "^9\.0\.")
  fix = '9.1.1';
else
  audit(AUDIT_INST_VER_NOT_VULN, 'CUP', display_version);

if (report_verbosity > 0)
{
  report =
    '\n  Installed version : ' + display_version +
    '\n  Fixed version     : ' + fix + '\n';
  security_hole(port:0, extra:report);
}
else security_hole(0);

CVSS2

7.8

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

COMPLETE

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

EPSS

0.002

Percentile

53.2%

Related for CISCO-SA-20130227-CUPS.NASL