Lucene search

K
openvasCopyright (c) 2010 SecPodOPENVAS:902132
HistoryMar 02, 2010 - 12:00 a.m.

Symantec IM Manager Console Cross Site Scripting Vulnerability

2010-03-0200:00:00
Copyright (c) 2010 SecPod
plugins.openvas.org
10

0.025 Low

EPSS

Percentile

90.1%

This host is installed with Symantec IM Manager and is prone to
Cross Site Scripting vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_symantec_im_manager_xss_vuln.nasl 5401 2017-02-23 09:46:07Z teissa $
#
# Symantec IM Manager Console Cross Site Scripting Vulnerability
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2010 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 allows attackers to execute arbitrary script code.
  Impact Level: Application";
tag_affected = "Symantec IM Manager version 8.3 and 8.4 before 8.4.13";
tag_insight = "The flaw is caused due input validation error in the 'management console',
  which fails to properly filter/validate external input from non-privileged
  users with authorized access to the console.";
tag_solution = "Update to Symantec IM Manager version 8.4.13
  For updates refer to http://www.symantec.com/business/im-manager";
tag_summary = "This host is installed with Symantec IM Manager and is prone to
  Cross Site Scripting vulnerability.";

if(description)
{
  script_id(902132);
  script_version("$Revision: 5401 $");
  script_tag(name:"last_modification", value:"$Date: 2017-02-23 10:46:07 +0100 (Thu, 23 Feb 2017) $");
  script_tag(name:"creation_date", value:"2010-03-02 12:02:59 +0100 (Tue, 02 Mar 2010)");
  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_cve_id("CVE-2009-3036");
  script_bugtraq_id(38241);
  script_name("Symantec IM Manager Console Cross Site Scripting Vulnerability");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/38672");
  script_xref(name : "URL" , value : "http://www.vupen.com/english/advisories/2010/0438");
  script_xref(name : "URL" , value : "http://www.symantec.com/business/security_response/securityupdates/detail.jsp?fid=security_advisory&pvid=security_advisory&year=2010&suid=20100218_00");

  script_tag(name:"qod_type", value:"registry");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (c) 2010 SecPod");
  script_family("Web application abuses");
  script_dependencies("secpod_symantec_prdts_detect.nasl");
  script_require_keys("Symantec/IM/Manager");
  script_require_ports("Services/www", 80);
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  exit(0);
}


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

httpPort = get_http_port(default:80);
if(!httpPort){
  exit(0);
}

sndReq = http_get(item:"/immanager", port:httpPort);
rcvRes = http_send_recv(port:httpPort, data:sndReq);

if((isnull(rcvRes)) && ("Symantec :: IM Manager" >!< rcvRes)){
  exit(0);
}

imVer = get_kb_item("Symantec/IM/Manager");
if(!imVer){
  exit(0);
}

# IM Manager version less than 8.4.13(8.4.1362.0)
if(version_is_equal(version:imVer, test_version:"8.3") ||
   version_in_range(version:imVer, test_version:"8.4", test_version2:"8.4.1361")){
  security_message(0);
}

0.025 Low

EPSS

Percentile

90.1%