Lucene search

K
openvasCopyright (C) 2011 SecPodOPENVAS:902771
HistoryDec 16, 2011 - 12:00 a.m.

APC PowerChute Business Edition Unspecified Cross Site Scripting Vulnerability

2011-12-1600:00:00
Copyright (C) 2011 SecPod
plugins.openvas.org
9

EPSS

0.001

Percentile

49.0%

This host is running APC PowerChute Business Edition and is prone
to cross site scripting vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_apc_powerchute_business_edtn_xss_vuln.nasl 7044 2017-09-01 11:50:59Z teissa $
#
# APC PowerChute Business Edition Unspecified Cross Site Scripting Vulnerability
#
# Authors:
# Madhuri D <[email protected]>
#
# Copyright:
# Copyright (c) 2011 SecPod, http://www.secpod.com
#
# 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_impact = "Successful exploitation will allow remote attackers to execute arbitrary HTML
  and script code in a user's browser session in context of an affected site.
  Impact Level: Application.";
tag_affected = "APC PowerChute Business Edition version prior to 8.5";

tag_insight = "The flaw exists due to improper validation of certain unspecified input
  before being returned to the user.";
tag_solution = "Upgrade to the APC PowerChute Business Edition version 8.5 or later
  For updates refer to http://www.apc.com/products/family/index.cfm?id=125&ISOCountryCode=us";
tag_summary = "This host is running APC PowerChute Business Edition and is prone
  to cross site scripting vulnerability.";

if(description)
{
  script_id(902771);
  script_version("$Revision: 7044 $");
  script_cve_id("CVE-2011-4263");
  script_bugtraq_id(51022);
  script_tag(name:"cvss_base", value:"4.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:P/A:N");
  script_tag(name:"creation_date", value:"2011-12-16 13:03:34 +0530 (Fri, 16 Dec 2011)");
  script_tag(name:"last_modification", value:"$Date: 2017-09-01 13:50:59 +0200 (Fri, 01 Sep 2017) $");
  script_name("APC PowerChute Business Edition Unspecified Cross Site Scripting Vulnerability");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/47113/");
  script_xref(name : "URL" , value : "http://jvn.jp/en/jp/JVN61695284/index.html");
  script_xref(name : "URL" , value : "http://jvndb.jvn.jp/en/contents/2011/JVNDB-2011-000100.html");

  script_tag(name:"qod_type", value:"registry");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2011 SecPod");
  script_family("General");
  script_dependencies("secpod_reg_enum.nasl");
  script_mandatory_keys("SMB/WindowsVersion");
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  exit(0);
}


include("smb_nt.inc");
include("version_func.inc");
include("secpod_smb_func.inc");

if(!get_kb_item("SMB/WindowsVersion")){
  exit(0);
}

## Check if the server is installed
if(!registry_key_exists(key:"SOFTWARE\APC\PowerChute Business Edition\server")){
  exit(0);
}

key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\";

if(!registry_key_exists(key:key)){
  exit(0);
}

foreach item (registry_enum_keys(key:key))
{
  powerName = registry_get_sz(key:key + item, item:"DisplayName");

  ## Check for DisplayName
  if("PowerChute Business Edition Console" >< powerName)
  {
    ## Get the version
    powerVer = registry_get_sz(key:key + item, item:"DisplayVersion");
    if(powerVer)
    {
      ## Check for version
      if(version_is_less(version:powerVer, test_version:"8.5.0"))
      {
        security_message(0) ;
        exit(0);
      }
    }
  }
}

EPSS

0.001

Percentile

49.0%