Lucene search

K
openvasCopyright (C) 2014 Greenbone AGOPENVAS:1361412562310105027
HistoryMay 13, 2014 - 12:00 a.m.

Skybox Security Appliance Multiple Information Disclosure Vulnerabilities

2014-05-1300:00:00
Copyright (C) 2014 Greenbone AG
plugins.openvas.org
30

CVSS2

8.5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

NONE

Availability Impact

COMPLETE

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

AI Score

6.5

Confidence

Low

EPSS

0.112

Percentile

95.3%

Skybox Security Appliance is prone to multiple information-disclosure vulnerabilities.

# SPDX-FileCopyrightText: 2014 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

if (description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.105027");
  script_cve_id("CVE-2014-2084");
  script_tag(name:"cvss_base", value:"8.5");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:N/A:C");
  script_version("2023-07-26T05:05:09+0000");

  script_name("Skybox Security Appliance Multiple Information Disclosure Vulnerabilities");

  script_xref(name:"URL", value:"http://www.exploit-db.com/exploits/33327/");

  script_tag(name:"last_modification", value:"2023-07-26 05:05:09 +0000 (Wed, 26 Jul 2023)");
  script_tag(name:"creation_date", value:"2014-05-13 16:33:50 +0200 (Tue, 13 May 2014)");
  script_category(ACT_ATTACK);
  script_tag(name:"qod_type", value:"remote_vul");
  script_family("Web application abuses");
  script_copyright("Copyright (C) 2014 Greenbone AG");
  script_dependencies("find_service.nasl", "httpver.nasl", "global_settings.nasl");
  script_require_ports("Services/www", 444);
  script_exclude_keys("Settings/disable_cgi_scanning");

  script_tag(name:"impact", value:"This would allow the malicious party to read system-related information
such as interface names, IP addresses and the appliance status.");
  script_tag(name:"vuldetect", value:"Send a HTTP GET request and check the response.");
  script_tag(name:"insight", value:"A vulnerability has been found in some Skybox View Appliances' Admin
interfaces which would allow a potential malicious party to bypass
the authentication mechanism and obtain read-only access to the
appliance's administrative menus.");
  script_tag(name:"solution", value:"Please refer to the vendor security advisor: Security Advisory 2014-3-25-1");
  script_tag(name:"summary", value:"Skybox Security Appliance is prone to multiple information-disclosure vulnerabilities.");
  script_tag(name:"affected", value:"Skybox View Appliances with ISO versions: 6.3.33-2.14, 6.3.31-2.14,
6.4.42-2.54, 6.4.45-2.56, 6.4.46-2.57");

  script_tag(name:"solution_type", value:"VendorFix");

  exit(0);
}

include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");
include("host_details.inc");

port = http_get_port( default:444 );

if( buf = http_vuln_check( port:port, url:'/', pattern:"<title>SkyBox Web Administration", usecache:TRUE ) )
{
  cookie = eregmatch( pattern:'Set-Cookie: ([^\r\n]+)', string:buf );
  if( ! isnull( cookie[1] ) ) co = cookie[1];

  urls = make_array( "/scripts/commands/getSystemInformation?_=111111111","APPLIANCE_VERSION",
                     "/scripts/commands/getNetworkConfigurationInfo","HardwareAddress");

  foreach url ( keys( urls ) )
  {
    if( http_vuln_check( port:port, url:url, pattern:urls[url], cookie:co ) )
    {
      security_message(port:port);
      exit( 0 );
    }
  }
  exit( 99 );
}

exit(0);

CVSS2

8.5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

NONE

Availability Impact

COMPLETE

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

AI Score

6.5

Confidence

Low

EPSS

0.112

Percentile

95.3%