Lucene search
K

Symantec Altiris NS Key Unauthorized Access Vulnerability

🗓️ 11 Feb 2010 00:00:00Reported by Copyright (c) 2010 Greenbone Networks GmbHType 
openvas
 openvas
🔗 plugins.openvas.org👁 24 Views

Symantec Altiris NS Key Unauthorized Access Vulnerabilit

Related
Refs
Code
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_symantec_altiris_ns_unauth_access_vuln.nasl 6000 2017-04-21 11:07:29Z cfi $
#
# Symantec Altiris NS Key Unauthorized Access Vulnerability
#
# Authors:
# Rachana Shetty <[email protected]>
#
# Copyright:
# Copyright (c) 2010 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_impact = "Successful exploitation let attackers to access certain encrypted credentials
  and encryption keys and also execute code, obtain sensitive information, or
  perform actions with elevated privileges.
  Impact Level: Application";
tag_affected = "Symantec Altiris Notification Server versions 6.0.x before 6.0 SP3 R12";
tag_insight = "The flaw is due to the application using a static encryption key to
  encrypt and store certain credentials.";
tag_solution = "Update to Symantec Altiris Notification Server 6.0 SP3 R12
  For updates refer to https://kb.altiris.com/article.asp?article=46763&p=1";
tag_summary = "This host is installed with Symantec Altiris Notification Server
  and is prone to unauthorized access vulnerability.";

if(description)
{
  script_id(800985);
  script_version("$Revision: 6000 $");
  script_tag(name:"last_modification", value:"$Date: 2017-04-21 13:07:29 +0200 (Fri, 21 Apr 2017) $");
  script_tag(name:"creation_date", value:"2010-02-11 16:37:59 +0100 (Thu, 11 Feb 2010)");
  script_tag(name:"cvss_base", value:"4.3");
  script_tag(name:"cvss_base_vector", value:"AV:L/AC:L/Au:S/C:P/I:P/A:P");
  script_cve_id("CVE-2009-3035");
  script_bugtraq_id(37953);
  script_name("Symantec Altiris NS Key Unauthorized Access Vulnerability");


  script_tag(name:"qod_type", value:"registry");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (c) 2010 Greenbone Networks GmbH");
  script_family("General");
  script_dependencies("gb_symantec_altiris_ns_detect.nasl");
  script_mandatory_keys("Symantec/AltirisNS/Ver", "Symantec/AltirisNS/SP");
  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);
  script_xref(name : "URL" , value : "http://secunia.com/advisories/38356");
  script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/55952");
  script_xref(name : "URL" , value : "http://www.symantec.com/business/security_response/securityupdates/detail.jsp?fid=security_advisory&pvid=security_advisory&year=2010&suid=20100128_00");
  exit(0);
}


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

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

## Send Request and Receive Response
sndReq = http_get(item:"/Altiris/NS/logview.asp", port:httpPort);
rcvRes = http_keepalive_send_recv(port:httpPort, data:sndReq, bodyonly:0);
if((isnull(rcvRes)) && ("Altiris NS " >!< rcvRes)){
  exit(0);
}

altirisVer = get_kb_item("Symantec/AltirisNS/Ver");
if(!altirisVer){
  exit(0);
}

spVer= get_kb_item("Symantec/AltirisNS/SP");
if((spVer == NULL) && (altirisVer =~ "^6\.0"))
{
  # Grep for Altiris version prior to 6.0(6.0.6074)
  if(version_is_less_equal(version:altirisVer, test_version:"6.0.6074"))
  {
    security_message(0);
    exit(0);
  }
}

else if(spVer =~ "^6\.0")
{
  # Grep for Altiris 6.0 SP prior to 6.0 SP3 R12(6.0.1210.0)
  if(version_is_less(version:spVer, test_version:"6.0.1210.0")){
    security_message(0);
  }
}

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation