Lucene search

K
nessusThis script is Copyright (C) 2013-2018 Tenable Network Security, Inc.MACOSX_BLACKBERRY_LINK_1_1_1_39.NASL
HistoryNov 22, 2013 - 12:00 a.m.

BlackBerry Link Multiple Vulnerabilities (Mac OS X)

2013-11-2200:00:00
This script is Copyright (C) 2013-2018 Tenable Network Security, Inc.
www.tenable.com
13

CVSS2

6.8

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

EPSS

0.002

Percentile

58.8%

The remote host has a version of BlackBerry Link installed prior to version 1.1.1.39. It is, therefore, affected by multiple vulnerabilities :

  • A WebDAV server that listens on an IPv6 address allows remote access to the host’s file system. It may also be possible to utilize this vulnerability via a DNS rebinding attack to execute arbitrary code by tricking a user into opening a specially crafted page.
    (CVE-2013-3694)

  • A flaw in Peer Manager on Mac OS X may allow context-dependent attackers to bypass access restrictions on remote file-access folders for WebDAV requests. (CVE-2013-6798)

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

include("compat.inc");

if (description)
{
  script_id(71041);
  script_version("1.2");
  script_cvs_date("Date: 2018/07/14  1:59:36");

  script_cve_id("CVE-2013-3694", "CVE-2013-6798");
  script_bugtraq_id(63695, 63774);

  script_name(english:"BlackBerry Link Multiple Vulnerabilities (Mac OS X)");
  script_summary(english:"Checks version of BlackBerry Link");

  script_set_attribute(
    attribute:"synopsis",
    value:
"The remote host has software installed that is affected by multiple
vulnerabilities."
  );
  script_set_attribute(
    attribute:"description",
    value:
"The remote host has a version of BlackBerry Link installed prior to
version 1.1.1.39.  It is, therefore, affected by multiple
vulnerabilities :

  - A WebDAV server that listens on an IPv6 address allows
    remote access to the host's file system.  It may also
    be possible to utilize this vulnerability via a DNS
    rebinding attack to execute arbitrary code by tricking
    a user into opening a specially crafted page.
    (CVE-2013-3694)

  - A flaw in Peer Manager on Mac OS X may allow
    context-dependent attackers to bypass access
    restrictions on remote file-access folders for WebDAV
    requests. (CVE-2013-6798)"
  );
  # http://btsc.webapps.blackberry.com/btsc/viewdocument.do?externalId=KB35315&sliceId=1&cmd=displayKC&docType=kc&noCount=true&ViewedDocsListHelper=com.kanisa.apps.common.BaseViewedDocsListHelperImpl
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?098d279b");
  script_set_attribute(attribute:"see_also", value:"http://blog.cmpxchg8b.com/2013/11/qnx.html");
  script_set_attribute(attribute:"solution", value:"Upgrade to BlackBerry Link 1.1.1.39.");
  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: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/11/12");
  script_set_attribute(attribute:"patch_publication_date", value:"2013/11/12");
  script_set_attribute(attribute:"plugin_publication_date", value:"2013/11/22");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:blackberry:blackberry_link");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"MacOS X Local Security Checks");

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

  script_dependencies("macosx_blackberry_link_installed.nbin");
  script_require_keys("MacOSX/BlackBerryLink/Installed");

  exit(0);
}

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

appname = "BlackBerry Link";

kb_base = "MacOSX/BlackBerryLink/";
get_kb_item_or_exit(kb_base+"Installed");
path = get_kb_item_or_exit(kb_base+"Path", exit_code:1);
version = get_kb_item_or_exit(kb_base+"Version", exit_code:1);

lower_bound = "1.0.1.6";
fix = "1.1.1.39";

if (
  ver_compare(ver:version, fix:lower_bound, strict:FALSE) >= 0 &&
  ver_compare(ver:version, fix:fix, strict:FALSE) == -1
)
{
  set_kb_item(name:"www/0/XSRF", value:TRUE);

  if (report_verbosity > 0)
  {
    info +=
      '\n  Path              : ' + path +
      '\n  Installed version : ' + version +
      '\n  Fixed version     : ' + fix + '\n';
    security_warning(port:0, extra:info);
  }
  else security_warning(0);
  exit(0);
}
else audit(AUDIT_INST_PATH_NOT_VULN, appname, version, path);

CVSS2

6.8

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

EPSS

0.002

Percentile

58.8%

Related for MACOSX_BLACKBERRY_LINK_1_1_1_39.NASL