⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gb_hp_sim_unauth_access_vuln_lin.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
################################################################################ OpenVAS Vulnerability Test# $Id: gb_hp_sim_unauth_access_vuln_lin.nasl 350 2008-10-21 13:32:52Z oct $## HP Systems Insight Manager Unauthorized Access Vulnerability (Linux)## Authors:# Chandan S <schandan@secpod.com>## Copyright:# Copyright (c) 2008 Intevation GmbH, http://www.intevation.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.###############################################################################if(description){  script_id(800034);  script_version("$Revision: 1.0 $");  script_cve_id("CVE-2008-4412");  script_bugtraq_id(31777);  script_name(english:"HP Systems Insight Manager Unauthorized Access Vulnerability (Linux)");  desc["english"] = "  Overview: This host is running HP Systems Insight Manager (SIM) and is prone  to security bypass vulnerability.  Vulnerability Insight:  The flaw is caused due to an error in the application which allows unauthorized  access to certain data.  Impact:  Successful exploitation could allow remote attackers to gain unauthorized  access to the data.  Impact Level: Application  Affected Software/OS:  HP SIM prior to 5.2 with Update 2 (C.05.02.02.00) on Linux  Fix: Update to HP SIM version 5.2 with Update 2 (C.05.02.02.00)  http://h20392.www2.hp.com/portal/swdepot/index.do  References:  http://secunia.com/advisories/32287/  http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c01571962  CVSS Score:    CVSS Base Score     : 5.0 (AV:N/AC:L/Au:NR/C:P/I:N/A:N)    CVSS Temporal Score : 3.7  Risk factor: Medium";  script_description(english:desc["english"]);  script_summary(english:"Check for the version of HP SIM");  script_category(ACT_GATHER_INFO);  script_copyright(english:"Copyright (C) 2008 Intevation GmbH");  script_family(english:"Misc.");  exit(0);}include("version_func.inc");port = 50000;;if(!port){  exit(0);}if(!get_port_state(port)){  exit(0);}sock = ssh_login_or_reuse_connection();if(!sock){  exit(0);}simName = find_file(file_name:"mxversion", file_path:"/", useregex:TRUE,                    regexpar:"$", sock:sock);foreach binaryName(simName){  simVer = get_bin_version(full_prog_name:chomp(binaryName), sock:sock,                          ver_pattern:"Linux ([^ ]+)");  if(simVer)  {    # Grep for versions prior to 5.2 with update 2 (C.05.02.02.00)    if(version_is_less(version:simVer[1], test_version:"C.05.02.02.00"))    {      security_warning(port);      ssh_close_connection();      exit(0);    }  }}ssh_close_connection();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -