Lucene search

K
openvasCopyright (c) 2013 Greenbone Networks GmbHOPENVAS:803626
HistoryJun 04, 2013 - 12:00 a.m.

Novell iManager Multiple Vulnerabilities

2013-06-0400:00:00
Copyright (c) 2013 Greenbone Networks GmbH
plugins.openvas.org
5

0.004 Low

EPSS

Percentile

72.0%

The host is running Novell iManager and is prone to multiple unspecified
vulnerabilities.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_novell_imanager_mult_vuln.nasl 6079 2017-05-08 09:03:33Z teissa $
#
# Novell iManager Multiple Vulnerabilities
#
# Authors:
# Arun Kallavi <[email protected]>
#
# Copyright:
# Copyright (c) 2013 Greenbone Networks GmbH, http://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################

tag_solution = "Apply the patch.
  For updates refer to https://www.novell.com/support/kb/doc.php?id=7010166

  *****
  NOTE: Ignore this warning if above mentioned patch is installed.
  *****";

tag_impact = "Successful exploitation may allow remote attackers to perform unauthorized
  actions and gain access to the affected application. Other attacks are also
  possible.
  Impact Level: Application";

tag_summary = "The host is running Novell iManager and is prone to multiple unspecified
  vulnerabilities.";
tag_insight = "Multiple flaws due to,
  - Does not refresh a token after a logout action.
  - Does not require multiple steps or explicit confirmation for sensitive
    transactions.";
tag_affected = "Novell iManager version prior to 2.7 SP 6 patch 1";

if (description)
{
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name : "solution" , value : tag_solution);
  script_id(803626);
  script_version("$Revision: 6079 $");
  script_cve_id("CVE-2013-3268", "CVE-2013-1088");
  script_bugtraq_id(59042, 59450);
  script_tag(name:"cvss_base", value:"10.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
  script_tag(name:"last_modification", value:"$Date: 2017-05-08 11:03:33 +0200 (Mon, 08 May 2017) $");
  script_tag(name:"creation_date", value:"2013-06-04 16:30:14 +0530 (Tue, 04 Jun 2013)");
  script_name("Novell iManager Multiple Vulnerabilities");

  script_xref(name : "URL" , value : "http://www.novell.com/support/kb/doc.php?id=7010166");
  script_copyright("Copyright (c) 2013 Greenbone Networks GmbH");
  script_category(ACT_GATHER_INFO);
  script_tag(name:"qod_type", value:"remote_banner");
  script_family("General");
  script_dependencies("novell_imanager_detect.nasl");
  script_mandatory_keys("novellimanager/installed");
  script_require_ports("Services/www", 8080, 8443);
  exit(0);
}

include("http_func.inc");
include("version_func.inc");

## Variable Initialization
imanVer = "";
port = 0;

## Get HTTP Port
port = get_http_port(default:8080);
if(!get_port_state(port)){
  exit(0);
}

imanVer = get_kb_item(string("www/", port, "/imanager"));
if(!imanVer){
  exit(0);
}

## Check for Novell iManager less than 2.7.6
if(version_is_less(version: imanVer, test_version:"2.7.6")){
  security_message(port:port);
  exit(0);
}

0.004 Low

EPSS

Percentile

72.0%