From scm-commit at wald.intevation.org Mon Jun 1 09:35:59 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Mon, 1 Jun 2009 09:35:59 +0200 (CEST) Subject: [Openvas-commits] r3553 - in trunk/openvas-plugins: . scripts Message-ID: <20090601073559.33C0ADA280@pyrosoma.intevation.org> Author: chandra Date: 2009-06-01 09:35:57 +0200 (Mon, 01 Jun 2009) New Revision: 3553 Added: trunk/openvas-plugins/scripts/gb_axigen_mail_server_detect.nasl trunk/openvas-plugins/scripts/gb_axigen_mail_server_xss_vuln.nasl trunk/openvas-plugins/scripts/gb_merak_mail_server_bof_vuln.nasl trunk/openvas-plugins/scripts/secpod_ctorrent_bof_vuln.nasl trunk/openvas-plugins/scripts/secpod_ctorrent_detect.nasl trunk/openvas-plugins/scripts/secpod_f-prot_av_detect_win.nasl trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_lin.nasl trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_win.nasl trunk/openvas-plugins/scripts/secpod_hp_smh_detect.nasl trunk/openvas-plugins/scripts/secpod_hp_smh_unspecified_xss_vuln.nasl trunk/openvas-plugins/scripts/secpod_ms_directx_code_exec_vuln.nasl trunk/openvas-plugins/scripts/secpod_pidgin_detect_lin.nasl trunk/openvas-plugins/scripts/secpod_pidgin_detect_win.nasl trunk/openvas-plugins/scripts/secpod_pidgin_mul_bof_vuln_lin.nasl trunk/openvas-plugins/scripts/secpod_pidgin_mul_bof_vuln_win.nasl trunk/openvas-plugins/scripts/secpod_wireshark_pcnfsd_dos_vuln_lin.nasl trunk/openvas-plugins/scripts/secpod_wireshark_pcnfsd_dos_vuln_win.nasl Modified: trunk/openvas-plugins/ChangeLog Log: Checkedin New scripts Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/ChangeLog 2009-06-01 07:35:57 UTC (rev 3553) @@ -1,3 +1,23 @@ +2009-06-01 Chandan S + * scripts/secpod_ctorrent_bof_vuln.nasl, + scripts/secpod_ctorrent_detect.nasl, + scripts/secpod_f-prot_av_detect_win.nasl, + scripts/secpod_f-prot_av_sec_bypass_vuln_lin.nasl, + scripts/secpod_f-prot_av_sec_bypass_vuln_win.nasl, + scripts/secpod_hp_smh_detect.nasl, + scripts/secpod_hp_smh_unspecified_xss_vuln.nasl, + scripts/secpod_ms_directx_code_exec_vuln.nasl, + scripts/secpod_pidgin_detect_lin.nasl, + scripts/secpod_pidgin_detect_win.nasl, + scripts/secpod_pidgin_mul_bof_vuln_lin.nasl, + scripts/secpod_pidgin_mul_bof_vuln_win.nasl, + scripts/secpod_wireshark_pcnfsd_dos_vuln_lin.nasl, + scripts/secpod_wireshark_pcnfsd_dos_vuln_win.nasl, + scripts/gb_axigen_mail_server_xss_vuln.nasl, + scripts/gb_merak_mail_server_bof_vuln.nasl, + scripts/gb_axigen_mail_server_detect.nasl: + Checkedin New scripts. + 2009-05-30 Jan-Oliver Wagner * scripts/i-mall_cgi.nasl, scripts/tikiwiki_xss.nasl: Added: trunk/openvas-plugins/scripts/gb_axigen_mail_server_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_axigen_mail_server_detect.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/gb_axigen_mail_server_detect.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,75 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: gb_axigen_mail_server_detect.nasl 2053 2009-05-05 20:07:05Z may $ +# +# Axigen Mail Server Version Detection +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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(800603); + script_version("$Revision: 1.0 $"); + script_name(english:"Axigen Mail Server Version Detection"); + desc["english"] = " + + Overview: The script detects the installed version of Axigen Mail + Server and sets the result in KB. + + Risk factor: Informational"; + + script_description(english:desc["english"]); + script_summary(english:"Sets KB for the version of Axigen Mail Server"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Service detection"); + script_dependencies("find_service.nes", "http_version.nasl"); + script_require_ports("Services/www", 9000); + exit(0); +} + + +include("http_func.inc"); + +axigenPort = get_http_port(default:9000); + +if(!axigenPort){ + axigenPort = 9000; +} + +if(!get_port_state(axigenPort)){ + exit(0); +} + +request = http_get(item:string("/"), port:axigenPort); +rcvRes = http_send_recv(port:axigenPort, data:request); + +if(rcvRes != NULL && "Axigen-Webadmin" >< rcvRes) +{ + axigenVer = eregmatch(pattern:"AXIGEN WebAdmin ([0-9.]+)", + string:rcvRes); + + if(axigenVer[1] != NULL) + { + set_kb_item(name:"www/" + axigenPort + "/AxigenMailServer", + value:axigenVer[1]); + } +} Added: trunk/openvas-plugins/scripts/gb_axigen_mail_server_xss_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_axigen_mail_server_xss_vuln.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/gb_axigen_mail_server_xss_vuln.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,88 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: gb_axigen_mail_server_xss_vuln.nasl 2053 2009-05-05 17:05:29Z may $ +# +# Axigen Mail Server Cross-Site Scripting Vulnerability +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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(800604); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-1484"); + script_bugtraq_id(34716); + script_name(english:"Axigen Mail Server Cross-Site Scripting Vulnerability"); + desc["english"] = " + + Overview: + The host is running Axigen Mail Server and is prone to Cross-Site Scripting + Vulnerability. + + Vulnerability Insight: + The flaw is caused due to improper sanitization of user-supplied input passed + within the e-mail messages. + + Impact: + Successful exploitation will allows the attacker to steal cookie-based + authentication credentials by injecting HTML and script code on a affected + application. + + Affected Software/OS: + Axigen Mail Server Version 6.2.2 and prior. + + Fix: Upgrade to version 7.1.0 or later + http://www.axigen.com/mail-server/download/ + + References: + http://secunia.com/advisories/34402 + + CVSS Score: + CVSS Base Score : 4.3 (AV:N/AC:M/Au:NR/C:N/I:P/A:N) + CVSS Temporal Score : 3.2 + Risk factor : Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the version of Axigen Mail Server"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Web application abuses"); + script_dependencies("gb_axigen_mail_server_detect.nasl"); + script_require_ports("Services/www", 9000); + exit(0); +} + + +include("http_func.inc"); +include("version_func.inc"); + +axigenPort = get_http_port(default:9000); +if(!axigenPort){ + exit(0); +} + +axigenVer = get_kb_item("www/" + axigenPort + "/AxigenMailServer"); +if(axigenVer != NULL) +{ + if(version_is_less_equal(version:axigenVer, test_version:"6.2.2")){ + security_warning(axigenPort); + } +} Added: trunk/openvas-plugins/scripts/gb_merak_mail_server_bof_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_merak_mail_server_bof_vuln.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/gb_merak_mail_server_bof_vuln.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,87 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: gb_merak_mail_server_bof_vuln.nasl 2137 2009-05-07 15:21:13Z may $ +# +# Merak Mail Server Stack Overflow Vulnerability +# +# Authors: +# Sujit Ghosal +# +# Copyright: +# Copyright (c) 2009 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(800705); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-1516"); + script_bugtraq_id(34739); + script_name(english:"Merak Mail Server Stack Overflow Vulnerability"); + desc["english"] = " + + Overview: The host is running Merak Mail Server and is prone to Stack + Overflow vulnerability. + + Vulnerability: + This flaw is due to IceWarpServer.APIObject ActiveX Control in api.dll + which allows context-dependent attackers to execute large value in the + second argument to Base64FileEncode function. + + Impact: + Successful exploitation will enable the attacker cause arbitrary code + execution in the context of the affected mail server. + + Impact Level: Application + + Affected Software/OS: + Merak Mail Server 9.4.1 or prior. + + Fix: No solution or patch is available as on 11th May, 2009. Information + regarding this issue will be updated once the solution details are available. + For further updates refer, + http://www.icewarp.it/downloads/windows_platform/index.php + http://www.icewarp.it/downloads/linux_platform/index.php + + References: + http://www.milw0rm.com/exploits/8542 + + CVSS Score: + CVSS Base Score : 7.5 (AV:N/AC:L/Au:NR/C:P/I:P/A:P) + CVSS Temporal Score : 6.7 + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the version of Merak Mail Server"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Buffer overflow"); + script_dependencies("gb_merak_mail_server_detect.nasl"); + script_require_keys("MerakMailServer/Ver"); + exit(0); +} + + +include("version_func.inc"); + +merakVer = get_kb_item("MerakMailServer/Ver"); +if(merakVer == NULL){ + exit(0); +} + +if(version_is_less_equal(version:merakVer, test_version:"9.4.1")){ + security_hole(0); +} Property changes on: trunk/openvas-plugins/scripts/gb_merak_mail_server_bof_vuln.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_ctorrent_bof_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_ctorrent_bof_vuln.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_ctorrent_bof_vuln.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,97 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_ctorrent_bof_vuln.nasl 2464 2009-06-01 11:09:31Z may $ +# +# CTorrent/Enhanced CTorrent Buffer Overflow Vulnerability +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900557); + script_version("$Revision: 1.0$"); + script_cve_id("CVE-2009-1759"); + script_bugtraq_id(34584); + script_name(english:"CTorrent/Enhanced CTorrent Buffer Overflow Vulnerability"); + desc["english"] = " + + Overview: The host is installed with CTorrent/Enhanced CTorrent and is prone + to Buffer Overflow Vulnerability. + + Vulnerability Insight: + A stack based buffer overflow is caused due to a boundary error within the + function 'btFiles::BuildFromMI()' in btfiles.cpp while processing torrent + files containing a long path. + + Impact: + Attackers can exploit this issue by execute arbitrary code via specially + crafted torrent files and can cause denial of service. + + Impact Level: System/Application + + Affected Software/OS: + CTorrent version 1.3.4 on Linux. + Enhanced CTorrent version 3.3.2 and prior on Linux. + + Fix: No solution or patch is available as on 27th May, 2009. Information + regarding this issue will be updated once the solution details are available. + For updates refer, http://www.rahul.net/dholmes/ctorrent/ + + References: + http://secunia.com/advisories/34752 + http://www.milw0rm.com/exploits/8470 + http://xforce.iss.net/xforce/xfdb/49959 + + CVSS Score: + CVSS Base Score : 9.3 (AV:N/AC:M/Au:NR/C:C/I:C/A:C) + CVSS Temporal Score : 8.4 + Risk factor: Critical"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of CTorrent/Enhanced CTorrent"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Buffer overflow"); + script_dependencies("secpod_ctorrent_detect.nasl"); + script_require_keys("CTorrent/Ver", "Enhanced/CTorrent/Ver"); + exit(0); +} + + +include("version_func.inc"); + +ctorrentVer = get_kb_item("CTorrent/Ver"); +if(ctorrentVer != NULL) +{ + if(version_is_equal(version:ctorrentVer, test_version:"1.3.4")) + { + security_hole(0); + exit(0); + } +} + +ectorrentVer = get_kb_item("Enhanced/CTorrent/Ver"); +if(ectorrentVer != NULL) +{ + if(version_is_less_equal(version:ectorrentVer, test_version:"3.3.2")){ + security_hole(0); + } +} Property changes on: trunk/openvas-plugins/scripts/secpod_ctorrent_bof_vuln.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_ctorrent_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_ctorrent_detect.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_ctorrent_detect.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,70 @@ +############################################################################## +# OpenVAS Vulnerability Test +# $Id: secpod_ctorrent_detect.nasl 2464 2009-06-01 10:21:37Z may $ +# +# CTorrent/Enhanced CTorrent Version Detection +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900556); + script_version("$Revision: 1.1 $"); + script_name(english:"CTorrent/Enhanced CTorrent Version Detection"); + desc["english"] = " + Overview : This script retrieves CTorrent/Enhanced CTorrent version and + saves the result in KB. + + Risk factor : Informational"; + + script_description(english:desc["english"]); + script_family(english:"Service detection"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_summary(english:"Set version of CTorrent/Enhanced CTorrent in KB"); + exit(0); +} + + +include("version_func.inc"); + +sock = ssh_login_or_reuse_connection(); +if(!sock){ + exit(0); +} + +getPath = find_bin(prog_name:"ctorrent", sock:sock); +foreach binaryFile (getPath) +{ + ctorrentVer = get_bin_version(full_prog_name:chomp(binaryFile), version_argv:"-h", + ver_pattern:"(C|c)(T|t)orrent (dnh)?([0-9.]+)", sock:sock); + if(ctorrentVer[4] != NULL) + { + if("dnh" >< ctorrentVer[3]){ + set_kb_item(name:"Enhanced/CTorrent/Ver", value:ctorrentVer[4]); + } + else + set_kb_item(name:"CTorrent/Ver", value:ctorrentVer[4]); + } + ssh_close_connection(); + exit(0); +} +ssh_close_connection(); Property changes on: trunk/openvas-plugins/scripts/secpod_ctorrent_detect.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_f-prot_av_detect_win.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_f-prot_av_detect_win.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_f-prot_av_detect_win.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,72 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_f-prot_av_detect_win.nasl 2478 2009-06-01 14:08:37Z may $ +# +# F-PROT Antivirus Version Detection (Win) +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900553); + script_version("$Revision: 1.1 $"); + script_name(english:"F-PROT Antivirus Version Detection (Win)"); + desc["english"] = " + Overview : This script retrieves F-PROT Antivirus version and saves the + result in KB. + + Risk factor : Informational"; + + script_description(english:desc["english"]); + script_family(english:"Service detection"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_summary(english:"Set Version of F-PROT AV in KB for Windows"); + script_dependencies("secpod_reg_enum.nasl"); + script_require_keys("SMB/WindowsVersion"); + exit(0); +} + + +include("smb_nt.inc"); +include("secpod_smb_func.inc"); + +if(!get_kb_item("SMB/WindowsVersion")){ + exit(0); +} + +if(!registry_key_exists(key:"SOFTWARE\FRISK Software\F-PROT Antivirus for Windows")){ + exit(0); +} + +key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\"; +foreach item (registry_enum_keys(key:key)) +{ + fprotName = registry_get_sz(key:key + item, item:"DisplayName"); + if("F-PROT" >< fprotName) + { + fprotVer = registry_get_sz(key:key + item, item:"DisplayVersion"); + if(fprotVer){ + set_kb_item(name:"F-Prot/AV/Win/Ver", value:fprotVer); + } + exit(0); + } +} Property changes on: trunk/openvas-plugins/scripts/secpod_f-prot_av_detect_win.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_lin.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_lin.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_lin.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,86 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_f-prot_av_sec_bypass_vuln_lin.nasl 2478 2009-06-01 15:02:22Z may $ +# +# F-PROT AntiVirus Security Bypass Vulnerability (Linux) +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900555); + script_version("$Revision: 1.0$"); + script_cve_id("CVE-2009-1783"); + script_bugtraq_id(34896); + script_name(english:"F-PROT AntiVirus Security Bypass Vulnerability (Linux)"); + desc["english"] = " + + Overview: The host is installed with F-PROT AntiVirus and is prone to + Security Bypass vulnerability. + + Vulnerability Insight: + The flaw is caused due to an error in the file parsing engine while + processing specially crafted CAB files. + + Impact: + Attackers can exploit this issue to bypass the malware detection and + to execute arbitrary code. + + Impact Level: System/Application + + Affected Software/OS: + F-PROT AV version 6.0.2 and prior on Linux. + + Fix: No solution or patch is available as on 26th May, 2009. Information + regarding this issue will be updated once the solution details are available. + For updates refer, http://www.f-prot.com/ + + References: + http://xforce.iss.net/xforce/xfdb/50427 + http://blog.zoller.lu/2009/04/advisory-f-prot-frisk-cab-bypass.html + + CVSS Score: + CVSS Base Score : 10.0 (AV:N/AC:L/Au:NR/C:C/I:C/A:C) + CVSS Temporal Score : 8.5 + Risk factor: Critical"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of F-PROT AV"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"General"); + script_dependencies("gb_f-prot_av_detect_lin.nasl"); + script_require_keys("F-Prot/AV/Linux/Ver"); + exit(0); +} + + +include("version_func.inc"); + +avVer = get_kb_item("F-Prot/AV/Linux/Ver"); +if(!avVer){ + exit(0); +} + +# grep for version 6.0.2 => 6.2.1.4252 +if(version_is_less_equal(version:avVer, test_version:"6.2.1.4252")){ + security_hole(0); +} Property changes on: trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_lin.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_win.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_win.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_win.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,85 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_f-prot_av_sec_bypass_vuln_win.nasl 2478 2009-06-01 15:02:22Z may $ +# +# F-PROT AntiVirus Security Bypass Vulnerability (Win) +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900554); + script_version("$Revision: 1.0$"); + script_cve_id("CVE-2009-1783"); + script_bugtraq_id(34896); + script_name(english:"F-PROT AntiVirus Security Bypass Vulnerability (Win)"); + desc["english"] = " + + Overview: The host is installed with F-PROT AntiVirus and is prone to + Security Bypass vulnerability. + + Vulnerability Insight: + The flaw is caused due to an error in the file parsing engine while + processing specially crafted CAB files. + + Impact: + Attackers can exploit this issue to bypass the malware detection and + to execute arbitrary code. + + Impact Level: System/Application + + Affected Software/OS: + F-PROT AV version 6.0.9.1 and prior on Windows. + + Fix: No solution or patch is available as on 26th May, 2009. Information + regarding this issue will be updated once the solution details are available. + For updates refer, http://www.f-prot.com/ + + References: + http://xforce.iss.net/xforce/xfdb/50427 + http://blog.zoller.lu/2009/04/advisory-f-prot-frisk-cab-bypass.html + + CVSS Score: + CVSS Base Score : 10.0 (AV:N/AC:L/Au:NR/C:C/I:C/A:C) + CVSS Temporal Score : 8.5 + Risk factor: Critical"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of F-PROT AV"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"General"); + script_dependencies("secpod_f-prot_av_detect_win.nasl"); + script_require_keys("F-Prot/AV/Win/Ver"); + exit(0); +} + + +include("version_func.inc"); + +avVer = get_kb_item("F-Prot/AV/Win/Ver"); +if(!avVer){ + exit(0); +} + +if(version_is_less_equal(version:avVer, test_version:"6.0.9.1")){ + security_hole(0); +} Property changes on: trunk/openvas-plugins/scripts/secpod_f-prot_av_sec_bypass_vuln_win.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_hp_smh_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_hp_smh_detect.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_hp_smh_detect.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,64 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_hp_smh_detect.nasl 2395 2009-06-01 10:58:24Z may $ +# +# HP System Management Homepage (SMH) Version Detection +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900657); + script_version("Revision: 1.0 "); + script_name(english:"HP System Management Homepage (SMH) Version Detection"); + desc["english"] = " + Overview: This script detects the installed version of HP System Management + Homepage and sets the result in KB. + + Risk factor: Informational"; + + script_description(english:desc["english"]); + script_summary(english:"Sets the KB for the version of HP SMH"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Service detection"); + script_dependencies("find_service.nes"); + exit(0); +} + + +include("http_func.inc"); +include("misc_func.inc"); + +ports = add_port_in_list(list:get_kb_list("Services/www"), port:2301); +foreach port (ports) +{ + banner = get_http_banner(port:port); + if("HP System Management Homepage" >< banner) + { + smhVer = eregmatch(pattern:"Homepage/([0-9.]+)" , string:banner); + if(smhVer[1] != NULL) + { + set_kb_item(name:"www/" + port + "/HP/SMH", value:smhVer[1]); + exit(0); + } + } +} Property changes on: trunk/openvas-plugins/scripts/secpod_hp_smh_detect.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_hp_smh_unspecified_xss_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_hp_smh_unspecified_xss_vuln.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_hp_smh_unspecified_xss_vuln.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,88 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_hp_smh_unspecified_xss_vuln.nasl 2395 2009-06-01 17:05:29Z may $ +# +# HP System Management Homepage Unspecified XSS Vulnerability +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900658); + script_version("$Revision: 1.0 $"); + script_bugtraq_id(35031); + script_cve_id("CVE-2009-1418"); + script_name(english:"HP System Management Homepage Unspecified XSS Vulnerability"); + desc["english"] = " + + Overview: This host is running HP System Management Homepage (SMH) and is + prone to cross-site scripting vulnerability. + + Vulnerability Insight: + HP System Management Homepage application fails to validate user supplied + input. + + Impact: + Successful exploitation will allow attackers to steal cookie-based + authentication credentials and execute arbitrary script on the user's + web browser by injecting web script or HTML vi remote vectors. + + Affected Software/OS: + HP System Management Homepage versions prior to 3.0.1.73 on all platforms. + + Fix: Upgrade to version 3.0.1.73 or later, + http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c01745065 + + References: + http://xforce.iss.net/xforce/xfdb/50633 + http://jvndb.jvn.jp/en/contents/2009/JVNDB-2009-000029.html + + CVSS Score: + CVSS Base Score : 4.3 (AV:N/AC:M/Au:NR/C:N/I:P/A:N) + CVSS Temporal Score : 3.2 + Risk factor: Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the version of HP SMH"); + script_category(ACT_GATHER_INFO); + script_family(english:"CGI abuses : XSS"); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_dependencies("secpod_hp_smh_detect.nasl"); + script_require_ports("Services/www", 2301); + exit(0); +} + + +include("http_func.inc"); +include("version_func.inc"); + +smhPort = get_http_port(default:2301); +if(!get_port_state(smhPort)){ + exit(0); +} + +smhVer = get_kb_item("www/" + smhPort+ "/HP/SMH"); +if(smhVer != NULL) +{ + if(version_is_less(version:smhVer, test_version:"3.0.1.73")){ + security_warning(smhPort); + } +} Added: trunk/openvas-plugins/scripts/secpod_ms_directx_code_exec_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_ms_directx_code_exec_vuln.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_ms_directx_code_exec_vuln.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,110 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_ms_directx_code_exec_vuln.nasl 1698 2009-06-01 11:27:04Z apr $ +# +# Vulnerability in Microsoft DirectShow Could Allow Remote Code Execution +# +# Authors: +# Chandan S +# +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900097); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-1537"); + script_bugtraq_id(35139); + script_name(english:"Vulnerability in Microsoft DirectShow Could Allow Remote Code Execution"); + desc["english"] = " + + Overview: This host is installed with Microsoft DirectShow and is prone to + remote code execution vulnerability. + + Vulnerability Insight: + Microsoft DirectShow fails to handle supported QuickTime format files. This + could allow code execution if a user opened a specially crafted QuickTime + media file when a user is logged on with administrative user rights. + + Impact: + Attacker who successfully exploit this flaw could take complete control of + an affected system. + + Impact Level: System + + Affected Software/OS: + DirectX 7.0 8.1 and 9.0* on Microsoft Windows 2K + DirectX 9.0 on Microsoft Windows XP and 2K3 + + Fix: No solution or patch is available as on 29th May, 2009. Information + regarding this issue will be updated once the solution details are available. + For updates refer, http://www.microsoft.com + + Workaround: Apply workaround steps mentioned in the reference link. + + References: http://www.microsoft.com/technet/security/advisory/971778.mspx + + CVSS Score: + CVSS Base Score : 9.3 (AV:N/AC:M/Au:NR/C:C/I:C/A:C) + CVSS Temporal Score : 7.5 + Risk factor : High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the version of Directx"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Windows : Microsoft Bulletins"); + script_dependencies("secpod_reg_enum.nasl"); + exit(0); +} + + +include("smb_nt.inc"); +include("secpod_reg.inc"); +include("secpod_smb_func.inc"); + +# OS with Hotfix Check +if(hotfix_check_sp(win2k:5, xp:4, win2003:3) <= 0){ + exit(0); +} + +# Check DirectX is installed +directXver = registry_get_sz(key:"SOFTWARE\Microsoft\DirectX", item:"Version"); +if(!directXver){ + exit(0); +} + +if(hotfix_check_sp(win2k:5) > 0) +{ + if(directXver =~ "^4\.0[7-9]"){ + security_hole(0); + } +} + +else if(hotfix_check_sp(xp:4) > 0) +{ + if(directXver =~ "^4\.09"){ + security_hole(0); + } +} + +else if(hotfix_check_sp(win2003:3) > 0) +{ + if(directXver =~ "^4\.09"){ + security_hole(0); + } +} Property changes on: trunk/openvas-plugins/scripts/secpod_ms_directx_code_exec_vuln.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_pidgin_detect_lin.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_pidgin_detect_lin.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_pidgin_detect_lin.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,67 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_pidgin_detect_lin.nasl 2480 2009-06-01 15:21:24Z may $ +# +# Pidgin Version Detection (Linux) +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900661); + script_version("Revision: 1.0 "); + script_name(english:"Pidgin Version Detection (Linux)"); + desc["english"] = " + + Overview: This script detects the installed version of Pidgin and + sets the result in KB. + + Risk factor: Informational"; + + script_description(english:desc["english"]); + script_summary(english:"Sets KB for the version of Pidgin"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Service detection"); + exit(0); +} + + +include("version_func.inc"); + +sock = ssh_login_or_reuse_connection(); +if(!sock){ + exit(0); +} + +paths = find_bin(prog_name:"pidgin", sock:sock); +foreach pidginbin (paths) +{ + pidginVer = get_bin_version(full_prog_name:chomp(pidginbin), sock:sock, + version_argv:"--version", ver_pattern:"Pidgin ([0-9.]+)"); + if(pidginVer[1] != NULL) + { + set_kb_item(name:"Pidgin/Lin/Ver", value:pidginVer[1]); + ssh_close_connection(); + exit(0); + } +} +ssh_close_connection(); Added: trunk/openvas-plugins/scripts/secpod_pidgin_detect_win.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_pidgin_detect_win.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_pidgin_detect_win.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,66 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_pidgin_detect_win.nasl 2480 2009-06-01 17:47:29Z may$ +# +# Pidgin Version Detection (Win) +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900662); + script_version("$Revision: 1.0 $"); + script_name(english:"Pidgin Version Detection (Win)"); + desc["english"] = " + + Overview: This script detects the installed version Pidgin and sets + the result in KB. + + Risk Factor: Informational"; + + script_description(english:desc["english"]); + script_summary(english:"Sets KB for the version of Pidgin"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Service detection"); + script_dependencies("secpod_reg_enum.nasl"); + script_require_keys("SMB/WindowsVersion"); + exit(0); +} + + +include("smb_nt.inc"); +include("secpod_smb_func.inc"); + +if(!get_kb_item("SMB/WindowsVersion")){ + exit(0); +} + +key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Pidgin\"; +pidginName = registry_get_sz(key:key, item:"DisplayName"); + +if("Pidgin" >< pidginName) +{ + pidginVer = registry_get_sz(key:key, item:"DisplayVersion"); + if(pidginVer != NULL){ + set_kb_item(name:"Pidgin/Win/Ver", value:pidginVer); + } +} Added: trunk/openvas-plugins/scripts/secpod_pidgin_mul_bof_vuln_lin.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_pidgin_mul_bof_vuln_lin.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_pidgin_mul_bof_vuln_lin.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,95 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_pidgin_mul_bof_vuln_lin.nasl 2480 2009-06-01 15:05:27Z may $ +# +# Pidgin Multiple Buffer Overflow Vulnerabilities (Linux) +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900663); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-1373", "CVE-2009-1374", + "CVE-2009-1375", "CVE-2009-1376"); + script_bugtraq_id(35067); + script_name(english:"Pidgin Multiple Buffer Overflow Vulnerabilities (Linux)"); + desc["english"] = " + + Overview: This host has installed pidgin and is prone to Multiple Buffer + Overflow Vulnerabilities + + Vulnerability Insight: + The multiple flaws are due to, + - a boundary error in the XMPP SOCKS5 'bytestream' server when initiating + an outbound XMPP file transfer. + - a boundary error in the 'decrypt_out()' function while processing + malicious QQ packet. + - a boundary error exists in the implementation of the 'PurpleCircBuffer' + structure and can be exploited via vectors involving XMPP or Sametime + protocol. + - a truncation error in function 'libpurple/protocols/msn/slplink.c' and + 'libpurple/protocols/msnp9/slplink.c' when processing MSN SLP messages + with a crafted offset value. + + Impact: + Successful exploits allow attackers to run arbitrary code, corrupt memory + and cause cause denial of service. + + Impact Level: Application + + Affected Software/OS: + Pidgin version prior to 2.5.6 on Linux. + + Fix:Upgrade to version 2.5.6 or later. + http://pidgin.im/download/ + + References: + http://secunia.com/advisories/35194 + http://secunia.com/advisories/35202 + http://xforce.iss.net/xforce/xfdb/50680 + http://rhn.redhat.com/errata/RHSA-2009-1059.html + + CVSS Score: + CVSS Base Score : 10.0 (AV:N/AC:L/Au:NR/C:C/I:C/A:C) + CVSS Temporal Score : 7.4 + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Checks for the Version of Pidgin"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Buffer overflow"); + script_dependencies("secpod_pidgin_detect_lin.nasl"); + script_require_keys("Pidgin/Lin/Ver"); + exit(0); +} + + +include("version_func.inc"); + +pidginVer = get_kb_item("Pidgin/Lin/Ver"); +if(pidginVer != NULL) +{ + if(version_is_less(version:pidginVer, test_version:"2.5.6")){ + security_hole(0); + } +} Added: trunk/openvas-plugins/scripts/secpod_pidgin_mul_bof_vuln_win.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_pidgin_mul_bof_vuln_win.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_pidgin_mul_bof_vuln_win.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,95 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_pidgin_mul_bof_vuln_win.nasl 2480 2009-06-01 15:05:27Z may $ +# +# Pidgin Multiple Buffer Overflow Vulnerabilities (Win) +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900664); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-1373", "CVE-2009-1374", + "CVE-2009-1375", "CVE-2009-1376"); + script_bugtraq_id(35067); + script_name(english:"Pidgin Multiple Buffer Overflow Vulnerabilities (Win)"); + desc["english"] = " + + Overview: This host has installed pidgin and is prone to Multiple Buffer + Overflow Vulnerabilities + + Vulnerability Insight: + The multiple flaws are due to, + - a boundary error in the XMPP SOCKS5 'bytestream' server when initiating + an outbound XMPP file transfer. + - a boundary error in the 'decrypt_out()' function while processing + malicious QQ packet. + - a boundary error exists in the implementation of the 'PurpleCircBuffer' + structure and can be exploited via vectors involving XMPP or Sametime + protocol. + - a truncation error in function 'libpurple/protocols/msn/slplink.c' and + 'libpurple/protocols/msnp9/slplink.c' when processing MSN SLP messages + with a crafted offset value. + + Impact: + Successful exploits allow attackers to run arbitrary code, corrupt memory + and cause cause denial of service. + + Impact Level: Application + + Affected Software/OS: + Pidgin version prior to 2.5.6 on Windows. + + Fix:Upgrade to version 2.5.6 or later. + http://pidgin.im/download/ + + References: + http://secunia.com/advisories/35194 + http://secunia.com/advisories/35202 + http://xforce.iss.net/xforce/xfdb/50680 + http://rhn.redhat.com/errata/RHSA-2009-1059.html + + CVSS Score: + CVSS Base Score : 10.0 (AV:N/AC:L/Au:NR/C:C/I:C/A:C) + CVSS Temporal Score : 7.4 + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Checks for the Version of Pidgin"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Buffer overflow"); + script_dependencies("secpod_pidgin_detect_win.nasl"); + script_require_keys("Pidgin/Win/Ver"); + exit(0); +} + + +include("version_func.inc"); + +pidginVer = get_kb_item("Pidgin/Win/Ver"); +if(pidginVer != NULL) +{ + if(version_is_less(version:pidginVer, test_version:"2.5.6")){ + security_hole(0); + } +} Added: trunk/openvas-plugins/scripts/secpod_wireshark_pcnfsd_dos_vuln_lin.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_wireshark_pcnfsd_dos_vuln_lin.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_wireshark_pcnfsd_dos_vuln_lin.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,82 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_wireshark_pcnfsd_dos_vuln_win.nasl 2505 2009-06-01 10:39:24Z may $ +# +# Wireshark PCNFSD Dissector Denial of Service Vulnerability (Linux) +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900560); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-1829"); + script_bugtraq_id(35081); + script_name(english:"Wireshark PCNFSD Dissector Denial of Service Vulnerability (Linux)"); + desc["english"] = " + + Overview: The remote host is installed with Wireshark and is prone to + denial of service vulnerability. + + Vulnerability Insight: + The flaw is due to an error in the PCNFSD dissector when processing specially + crafted large PCNFSD packets. + + Impact: + Successful exploitation will let the user crash the application to cause + denial of service condition. + + Impact Level: Application + + Affected Software/OS: + Wireshark version 0.8.20 through 1.0.7 on Linux. + + Fix: Upgrade to Wireshark 1.0.8 + http://www.wireshark.org/download.html + + References: + http://www.vupen.com/english/advisories/2009/1408 + + CVSS Score: + CVSS Base Score : 5.0 (AV:N/AC:L/Au:NR/C:N/I:N/A:P) + CVSS Temporal Score : 3.7 + Risk factor: Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the version of Wireshark"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Denial of Service"); + script_dependencies("gb_wireshark_detect_lin.nasl"); + exit(0); +} + + +include("version_func.inc"); + +sharkVer = get_kb_item("Wireshark/Linux/Ver"); +if(!sharkVer){ + exit(0); +} + +if(version_in_range(version:sharkVer, test_version:"0.8.20", test_version2:"1.0.7")){ + security_warning(0); +} Added: trunk/openvas-plugins/scripts/secpod_wireshark_pcnfsd_dos_vuln_win.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_wireshark_pcnfsd_dos_vuln_win.nasl 2009-05-30 22:22:33 UTC (rev 3552) +++ trunk/openvas-plugins/scripts/secpod_wireshark_pcnfsd_dos_vuln_win.nasl 2009-06-01 07:35:57 UTC (rev 3553) @@ -0,0 +1,82 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_wireshark_pcnfsd_dos_vuln_win.nasl 2505 2009-06-01 10:39:24Z may $ +# +# Wireshark PCNFSD Dissector Processing Denial of Service Vulnerability (Win) +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900559); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-1829"); + script_bugtraq_id(35081); + script_name(english:"Wireshark PCNFSD Dissector Denial of Service Vulnerability (Win)"); + desc["english"] = " + + Overview: The remote host is installed with Wireshark and is prone to + denial of service vulnerability. + + Vulnerability Insight: + The flaw is due to an error in the PCNFSD dissector when processing specially + crafted large PCNFSD packets. + + Impact: + Successful exploitation will let the user crash the application to cause + denial of service condition. + + Impact Level: Application + + Affected Software/OS: + Wireshark version 0.8.20 through 1.0.7 on Windows. + + Fix: Upgrade to Wireshark 1.0.8 + http://www.wireshark.org/download.html + + References: + http://www.vupen.com/english/advisories/2009/1408 + + CVSS Score: + CVSS Base Score : 5.0 (AV:N/AC:L/Au:NR/C:N/I:N/A:P) + CVSS Temporal Score : 3.7 + Risk factor: Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the version of Wireshark"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Denial of Service"); + script_dependencies("gb_wireshark_detect_win.nasl"); + exit(0); +} + + +include("version_func.inc"); + +sharkVer = get_kb_item("Wireshark/Win/Ver"); +if(!sharkVer){ + exit(0); +} + +if(version_in_range(version:sharkVer, test_version:"0.8.20", test_version2:"1.0.7")){ + security_warning(0); +} From scm-commit at wald.intevation.org Mon Jun 1 09:36:53 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Mon, 1 Jun 2009 09:36:53 +0200 (CEST) Subject: [Openvas-commits] r3554 - trunk/openvas-plugins Message-ID: <20090601073653.C06A0DA280@pyrosoma.intevation.org> Author: chandra Date: 2009-06-01 09:36:52 +0200 (Mon, 01 Jun 2009) New Revision: 3554 Modified: trunk/openvas-plugins/cve_current.txt Log: Release cve's updated. Modified: trunk/openvas-plugins/cve_current.txt =================================================================== --- trunk/openvas-plugins/cve_current.txt 2009-06-01 07:35:57 UTC (rev 3553) +++ trunk/openvas-plugins/cve_current.txt 2009-06-01 07:36:52 UTC (rev 3554) @@ -21,7 +21,7 @@ 35006 mime svn 35029 mime svn CVE-2009-1252 SecPod svn -CVE-2009-1418 SecPod +CVE-2009-1418 SecPod svn CVE-2009-1671 SecPod svn CVE-2009-1672 SecPod svn CVE-2009-1675 SecPod svn @@ -48,10 +48,10 @@ CVE-2009-1755 SecPod CVE-2009-1381 SecPod svn CVE-2009-1784 SecPod svn -CVE-2009-1783 SecPod +CVE-2009-1783 SecPod svn CVE-2009-1769 SecPod CVE-2009-1758 SecPod -CVE-2009-1759 SecPod +CVE-2009-1759 SecPod svn CVE-2008-0786 mime svn CVE-2008-0785 mime svn CVE-2008-0784 mime svn @@ -62,17 +62,22 @@ CVE-2009-0688 SecPod svn CVE-2009-1791 SecPod CVE-2009-1788 SecPod -CVE-2009-1373 SecPod -CVE-2009-1374 SecPod -CVE-2009-1375 SecPod -CVE-2009-1376 SecPod +CVE-2009-1373 SecPod svn +CVE-2009-1374 SecPod svn +CVE-2009-1375 SecPod svn +CVE-2009-1376 SecPod svn CVE-2009-1636 SecPod CVE-2009-1634 SecPod CVE-2009-1476 SecPod -35081 SecPod +35081 SecPod svn 35117 SecPod 35111 SecPod CVE-2009-1754 SecPod CVE-2009-0162 SecPod CVE-2009-1789 SecPod CVE-2009-1808 SecPod +CVE-2009-1801 SecPod +CVE-2009-1802 SecPod +CVE-2009-1803 SecPod +CVE-2009-1829 SecPod svn +CVE-2009-1537 SecPod svn From scm-commit at wald.intevation.org Mon Jun 1 10:02:43 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Mon, 1 Jun 2009 10:02:43 +0200 (CEST) Subject: [Openvas-commits] r3555 - in trunk/openvas-plugins: . scripts Message-ID: <20090601080243.6CC7EDA280@pyrosoma.intevation.org> Author: chandra Date: 2009-06-01 10:02:41 +0200 (Mon, 01 Jun 2009) New Revision: 3555 Removed: trunk/openvas-plugins/scripts/gb_axigen_mail_server_xss_vuln.nasl trunk/openvas-plugins/scripts/gb_merak_mail_server_bof_vuln.nasl trunk/openvas-plugins/scripts/gb_merak_mail_server_detect.nasl Modified: trunk/openvas-plugins/ChangeLog Log: Duplicate scripts removed Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-01 07:36:52 UTC (rev 3554) +++ trunk/openvas-plugins/ChangeLog 2009-06-01 08:02:41 UTC (rev 3555) @@ -1,4 +1,10 @@ 2009-06-01 Chandan S + * scripts/gb_axigen_mail_server_xss_vuln.nasl, + scripts/gb_merak_mail_server_bof_vuln.nasl, + scripts/gb_axigen_mail_server_detect.nasl: + Duplicate scripts removed. + +2009-06-01 Chandan S * scripts/secpod_ctorrent_bof_vuln.nasl, scripts/secpod_ctorrent_detect.nasl, scripts/secpod_f-prot_av_detect_win.nasl, Deleted: trunk/openvas-plugins/scripts/gb_axigen_mail_server_xss_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_axigen_mail_server_xss_vuln.nasl 2009-06-01 07:36:52 UTC (rev 3554) +++ trunk/openvas-plugins/scripts/gb_axigen_mail_server_xss_vuln.nasl 2009-06-01 08:02:41 UTC (rev 3555) @@ -1,88 +0,0 @@ -############################################################################### -# OpenVAS Vulnerability Test -# $Id: gb_axigen_mail_server_xss_vuln.nasl 2053 2009-05-05 17:05:29Z may $ -# -# Axigen Mail Server Cross-Site Scripting Vulnerability -# -# Authors: -# Antu Sanadi -# -# Copyright: -# Copyright (c) 2009 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(800604); - script_version("$Revision: 1.0 $"); - script_cve_id("CVE-2009-1484"); - script_bugtraq_id(34716); - script_name(english:"Axigen Mail Server Cross-Site Scripting Vulnerability"); - desc["english"] = " - - Overview: - The host is running Axigen Mail Server and is prone to Cross-Site Scripting - Vulnerability. - - Vulnerability Insight: - The flaw is caused due to improper sanitization of user-supplied input passed - within the e-mail messages. - - Impact: - Successful exploitation will allows the attacker to steal cookie-based - authentication credentials by injecting HTML and script code on a affected - application. - - Affected Software/OS: - Axigen Mail Server Version 6.2.2 and prior. - - Fix: Upgrade to version 7.1.0 or later - http://www.axigen.com/mail-server/download/ - - References: - http://secunia.com/advisories/34402 - - CVSS Score: - CVSS Base Score : 4.3 (AV:N/AC:M/Au:NR/C:N/I:P/A:N) - CVSS Temporal Score : 3.2 - Risk factor : Medium"; - - script_description(english:desc["english"]); - script_summary(english:"Check for the version of Axigen Mail Server"); - script_category(ACT_GATHER_INFO); - script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); - script_family(english:"Web application abuses"); - script_dependencies("gb_axigen_mail_server_detect.nasl"); - script_require_ports("Services/www", 9000); - exit(0); -} - - -include("http_func.inc"); -include("version_func.inc"); - -axigenPort = get_http_port(default:9000); -if(!axigenPort){ - exit(0); -} - -axigenVer = get_kb_item("www/" + axigenPort + "/AxigenMailServer"); -if(axigenVer != NULL) -{ - if(version_is_less_equal(version:axigenVer, test_version:"6.2.2")){ - security_warning(axigenPort); - } -} Deleted: trunk/openvas-plugins/scripts/gb_merak_mail_server_bof_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_merak_mail_server_bof_vuln.nasl 2009-06-01 07:36:52 UTC (rev 3554) +++ trunk/openvas-plugins/scripts/gb_merak_mail_server_bof_vuln.nasl 2009-06-01 08:02:41 UTC (rev 3555) @@ -1,87 +0,0 @@ -############################################################################### -# OpenVAS Vulnerability Test -# $Id: gb_merak_mail_server_bof_vuln.nasl 2137 2009-05-07 15:21:13Z may $ -# -# Merak Mail Server Stack Overflow Vulnerability -# -# Authors: -# Sujit Ghosal -# -# Copyright: -# Copyright (c) 2009 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(800705); - script_version("$Revision: 1.0 $"); - script_cve_id("CVE-2009-1516"); - script_bugtraq_id(34739); - script_name(english:"Merak Mail Server Stack Overflow Vulnerability"); - desc["english"] = " - - Overview: The host is running Merak Mail Server and is prone to Stack - Overflow vulnerability. - - Vulnerability: - This flaw is due to IceWarpServer.APIObject ActiveX Control in api.dll - which allows context-dependent attackers to execute large value in the - second argument to Base64FileEncode function. - - Impact: - Successful exploitation will enable the attacker cause arbitrary code - execution in the context of the affected mail server. - - Impact Level: Application - - Affected Software/OS: - Merak Mail Server 9.4.1 or prior. - - Fix: No solution or patch is available as on 11th May, 2009. Information - regarding this issue will be updated once the solution details are available. - For further updates refer, - http://www.icewarp.it/downloads/windows_platform/index.php - http://www.icewarp.it/downloads/linux_platform/index.php - - References: - http://www.milw0rm.com/exploits/8542 - - CVSS Score: - CVSS Base Score : 7.5 (AV:N/AC:L/Au:NR/C:P/I:P/A:P) - CVSS Temporal Score : 6.7 - Risk factor: High"; - - script_description(english:desc["english"]); - script_summary(english:"Check for the version of Merak Mail Server"); - script_category(ACT_GATHER_INFO); - script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); - script_family(english:"Buffer overflow"); - script_dependencies("gb_merak_mail_server_detect.nasl"); - script_require_keys("MerakMailServer/Ver"); - exit(0); -} - - -include("version_func.inc"); - -merakVer = get_kb_item("MerakMailServer/Ver"); -if(merakVer == NULL){ - exit(0); -} - -if(version_is_less_equal(version:merakVer, test_version:"9.4.1")){ - security_hole(0); -} Deleted: trunk/openvas-plugins/scripts/gb_merak_mail_server_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_merak_mail_server_detect.nasl 2009-06-01 07:36:52 UTC (rev 3554) +++ trunk/openvas-plugins/scripts/gb_merak_mail_server_detect.nasl 2009-06-01 08:02:41 UTC (rev 3555) @@ -1,84 +0,0 @@ -############################################################################### -# OpenVAS Vulnerability Test -# $Id: gb_merak_mail_server_detect.nasl 790 2009-01-06 13:49:39Z jan $ -# -# Merak Mail Server Web Mail Version Detection -# -# Authors: -# Chandan S -# -# Copyright: -# Copyright (c) 2009 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(800096); - script_version("$Revision: 1.0 $"); - script_name(english:"Merak Mail Server Web Mail Version Detection"); - desc["english"] = " - - Overview: This script will detect the version of Merak Mail Server Web Mail - on the remote host and sets the KB. - - Risk factor: Informational"; - - script_description(english:desc["english"]); - script_summary(english:"Set KB for the version of Merak Mail Server"); - script_category(ACT_GATHER_INFO); - script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); - script_family(english:"General"); - script_dependencies("find_service.nes"); - exit(0); -} - - -include("http_func.inc"); - -port = 32000; -banner = get_http_banner(port); - -if("IceWarp" >!< banner){ - exit(0); -} - -smtpPort = get_kb_item("Services/smtp"); -if(!smtpPort){ - smtpPort = 25; -} - -imapPort = get_kb_item("Services/imap"); -if(!imapPort){ - imapPort = 143; -} - -popPort = get_kb_item("Services/pop3"); -if(!popPort){ - popPort = 110; -} - -foreach port (make_list(smtpPort, imapPort, popPort)) -{ - banner = get_kb_item(string("Banner/", port)); - if(banner =~ "IceWarp|Merak") - { - ver = eregmatch(pattern:"(Merak|IceWarp) ([0-9.]+)", string:banner); - if(ver[2] != NULL){ - set_kb_item(name:"MerakMailServer/Ver", value:ver[2]); - } - exit(0); - } -} From scm-commit at wald.intevation.org Mon Jun 1 11:07:36 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Mon, 1 Jun 2009 11:07:36 +0200 (CEST) Subject: [Openvas-commits] r3556 - trunk/openvas-plugins Message-ID: <20090601090736.6B223D6307@pyrosoma.intevation.org> Author: mime Date: 2009-06-01 11:07:35 +0200 (Mon, 01 Jun 2009) New Revision: 3556 Modified: trunk/openvas-plugins/cve_current.txt Log: Updated cve_current.txt Modified: trunk/openvas-plugins/cve_current.txt =================================================================== --- trunk/openvas-plugins/cve_current.txt 2009-06-01 08:02:41 UTC (rev 3555) +++ trunk/openvas-plugins/cve_current.txt 2009-06-01 09:07:35 UTC (rev 3556) @@ -81,3 +81,6 @@ CVE-2009-1803 SecPod CVE-2009-1829 SecPod svn CVE-2009-1537 SecPod svn +35125 mime +35134 mime +35128 mime From scm-commit at wald.intevation.org Mon Jun 1 12:38:54 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Mon, 1 Jun 2009 12:38:54 +0200 (CEST) Subject: [Openvas-commits] r3557 - in trunk/openvas-plugins: . scripts Message-ID: <20090601103854.7F17AD6307@pyrosoma.intevation.org> Author: chandra Date: 2009-06-01 12:38:52 +0200 (Mon, 01 Jun 2009) New Revision: 3557 Modified: trunk/openvas-plugins/ChangeLog trunk/openvas-plugins/scripts/apache_conn_block.nasl trunk/openvas-plugins/scripts/apache_htpasswd_overflow.nasl trunk/openvas-plugins/scripts/apache_log_injection.nasl trunk/openvas-plugins/scripts/apache_mod_include_priv_escalation.nasl trunk/openvas-plugins/scripts/apache_mod_proxy_buff_overflow.nasl trunk/openvas-plugins/scripts/ftpglob.nasl trunk/openvas-plugins/scripts/mod_ssl_hook_functions_format_string_vuln.nasl trunk/openvas-plugins/scripts/openssh_afs.nasl trunk/openvas-plugins/scripts/php_mail_func_header_spoof.nasl trunk/openvas-plugins/scripts/php_strip_tags_memory_limit_vuln.nasl trunk/openvas-plugins/scripts/rpc_kcms.nasl trunk/openvas-plugins/scripts/securenet_sensor_detect.nasl trunk/openvas-plugins/scripts/sendmail_header.nasl Log: missing dependencies issue fix. Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/ChangeLog 2009-06-01 10:38:52 UTC (rev 3557) @@ -1,4 +1,20 @@ 2009-06-01 Chandan S + * scripts/apache_mod_include_priv_escalation.nasl, + scripts/securenet_sensor_detect.nasl, + scripts/openssh_afs.nasl, + scripts/php_strip_tags_memory_limit_vuln.nasl, + scripts/apache_log_injection.nasl, + scripts/rpc_kcms.nasl, + scripts/apache_conn_block.nasl, + scripts/ftpglob.nasl, + scripts/mod_ssl_hook_functions_format_string_vuln.nasl, + scripts/apache_htpasswd_overflow.nasl, + scripts/sendmail_header.nasl, + scripts/apache_mod_proxy_buff_overflow.nasl, + scripts/php_mail_func_header_spoof.nasl: + Few missing dependencies issue fixed. + +2009-06-01 Chandan S * scripts/gb_axigen_mail_server_xss_vuln.nasl, scripts/gb_merak_mail_server_bof_vuln.nasl, scripts/gb_axigen_mail_server_detect.nasl: Modified: trunk/openvas-plugins/scripts/apache_conn_block.nasl =================================================================== --- trunk/openvas-plugins/scripts/apache_conn_block.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/apache_conn_block.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -36,10 +36,7 @@ script_copyright(english:"This script is Copyright (C) 2004 Scott Shebby"); family["english"] = "Misc."; script_family(english:family["english"]); - if ( ! defined_func("bn_random") ) - script_dependencie("http_version.nasl", "os_fingerprint.nasl"); - else - script_dependencie("http_version.nasl", "os_fingerprint.nasl", "macosx_SecUpd20040503.nasl", "macosx_SecUpd20040126.nasl", "macosx_SecUpd20041202.nasl"); + script_dependencie("http_version.nasl", "os_fingerprint.nasl"); script_require_keys("www/apache"); script_require_ports("Services/www", 80); exit(0); @@ -51,8 +48,6 @@ include("http_func.inc"); include("backport.inc"); -if ( get_kb_item("CVE-2004-0174") ) exit(0); - port = get_http_port(default:80); if(!port) exit(0); if(!get_port_state(port))exit(0); Modified: trunk/openvas-plugins/scripts/apache_htpasswd_overflow.nasl =================================================================== --- trunk/openvas-plugins/scripts/apache_htpasswd_overflow.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/apache_htpasswd_overflow.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -51,10 +51,7 @@ family["english"] = "Misc."; script_family(english:family["english"]); - if ( ! defined_func("bn_random") ) - script_dependencie("http_version.nasl"); - else - script_dependencie("http_version.nasl", "macosx_version.nasl"); + script_dependencie("http_version.nasl"); script_require_keys("www/apache"); script_require_ports("Services/www", 80); exit(0); Modified: trunk/openvas-plugins/scripts/apache_log_injection.nasl =================================================================== --- trunk/openvas-plugins/scripts/apache_log_injection.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/apache_log_injection.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -46,10 +46,7 @@ family["english"] = "General"; script_family(english:family["english"]); - if (!defined_func("bn_random") ) - script_dependencie("global_settings.nasl", "http_version.nasl"); - else - script_dependencie("find_service.nes", "global_settings.nasl", "http_version.nasl", "redhat-RHSA-2003-244.nasl", "redhat_fixes.nasl", "macosx_SecUpd20040503.nasl", "macosx_SecUpd20040126.nasl", "macosx_SecUpd20041202.nasl"); + script_dependencie("global_settings.nasl", "http_version.nasl"); script_require_keys("www/apache"); script_require_ports("Services/www", 80); exit(0); @@ -66,7 +63,6 @@ if (debug_level) display("debug: checking for Apache Error Log Escape Sequence Injection vulnerability on ", host, ":", port, ".\n"); if (!get_port_state(port)) exit(0); -if (get_kb_item("CVE-2003-0020") || get_kb_item("RHSA-2003-244")) exit(0); # Check the web server's banner for the version. banner = get_http_banner(port: port); Modified: trunk/openvas-plugins/scripts/apache_mod_include_priv_escalation.nasl =================================================================== --- trunk/openvas-plugins/scripts/apache_mod_include_priv_escalation.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/apache_mod_include_priv_escalation.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -45,8 +45,6 @@ family["english"] = "Misc."; script_family(english:family["english"]); script_dependencie("http_version.nasl", "os_fingerprint.nasl"); - if ( defined_func("bn_random") ) - script_dependencie("macosx_SecUpd20041202.nasl"); script_require_keys("www/apache"); script_require_ports("Services/www", 80); exit(0); @@ -61,8 +59,6 @@ if ( report_paranoia < 2 ) exit(0); -if ( get_kb_item("CVE-2004-0940") ) exit(0); - port = get_http_port(default:80); if(!port)exit(0); if(!get_port_state(port))exit(0); Modified: trunk/openvas-plugins/scripts/apache_mod_proxy_buff_overflow.nasl =================================================================== --- trunk/openvas-plugins/scripts/apache_mod_proxy_buff_overflow.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/apache_mod_proxy_buff_overflow.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -42,9 +42,6 @@ family["english"] = "Misc."; script_family(english:family["english"]); script_dependencie("http_version.nasl", "os_fingerprint.nasl"); - if ( defined_func("bn_random") ) - script_dependencie("mandrake_MDKSA-2004-065.nasl", "redhat-RHSA-2004-244.nasl", "macosx_SecUpd20041202.nasl"); - script_require_keys("www/apache"); script_require_ports("Services/www", 80); exit(0); @@ -56,8 +53,6 @@ include("http_func.inc"); include("backport.inc"); -if ( get_kb_item("CVE-2004-0492") ) exit(0); - port = get_http_port(default:80); if(!port)exit(0); if(!get_port_state(port))exit(0); Modified: trunk/openvas-plugins/scripts/ftpglob.nasl =================================================================== --- trunk/openvas-plugins/scripts/ftpglob.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/ftpglob.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -39,9 +39,6 @@ script_copyright(english: "Copyright (C) 2001 E*Maze"); script_dependencie("find_service.nes", "secpod_ftp_anonymous.nasl", "os_fingerprint.nasl"); - if ( defined_func("bn_random") ) - script_dependencie("solaris251_103603.nasl", "solaris251_x86_103604.nasl", "solaris26_106301.nasl", "solaris26_x86_106302.nasl", "solaris7_110646.nasl", "solaris7_x86_110647.nasl", "solaris8_111606.nasl", "solaris8_x86_111607.nasl"); - script_require_ports("Services/ftp", 21); exit(0); @@ -55,8 +52,6 @@ include("ftp_func.inc"); include("global_settings.inc"); -if ( get_kb_item("BID-2550") ) exit(0); - port = get_kb_item("Services/ftp"); if (!port) port = 21; Modified: trunk/openvas-plugins/scripts/mod_ssl_hook_functions_format_string_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/mod_ssl_hook_functions_format_string_vuln.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/mod_ssl_hook_functions_format_string_vuln.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -47,8 +47,6 @@ family["english"] = "Gain a shell remotely"; script_family(english:family["english"]); script_dependencie("http_version.nasl"); - if ( defined_func("bn_random") ) - script_dependencie("redhat-RHSA-2004-408.nasl", "mandrake_MDKSA-2004-075.nasl"); script_require_ports("Services/www", 80); script_require_keys("www/apache"); exit(0); @@ -60,8 +58,6 @@ include("http_func.inc"); include('backport.inc'); -if ( get_kb_item("CVE-2004-0700") ) exit(0); - port = get_http_port(default:80); if(get_port_state(port)) Modified: trunk/openvas-plugins/scripts/openssh_afs.nasl =================================================================== --- trunk/openvas-plugins/scripts/openssh_afs.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/openssh_afs.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -44,10 +44,7 @@ script_copyright(english:"This script is Copyright (C) 2002 Thomas Reinke"); family["english"] = "Gain root remotely"; script_family(english:family["english"]); - if ( ! defined_func("bn_random") ) - script_dependencie("ssh_detect.nasl"); - else - script_dependencie("ssh_detect.nasl", "redhat-RHSA-2002-131.nasl"); + script_dependencie("ssh_detect.nasl"); script_require_ports("Services/ssh", 22); exit(0); } @@ -59,8 +56,6 @@ include("backport.inc"); -if ( get_kb_item("CVE-2002-0640") ) exit(0); - port = get_kb_item("Services/ssh"); if(!port)port = 22; Modified: trunk/openvas-plugins/scripts/php_mail_func_header_spoof.nasl =================================================================== --- trunk/openvas-plugins/scripts/php_mail_func_header_spoof.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/php_mail_func_header_spoof.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -34,10 +34,7 @@ family["english"] = "CGI abuses"; script_family(english:family["english"]); script_copyright(english:"(C) tony at libpcap.net"); - if ( ! defined_func("bn_random") ) - script_dependencie("http_version.nasl"); - else - script_dependencie("http_version.nasl", "redhat-RHSA-2002-214.nasl"); + script_dependencie("http_version.nasl"); script_require_ports("Services/www", 80); exit(0); } @@ -48,8 +45,6 @@ include("http_func.inc"); -if ( get_kb_item("CVE-2002-0985" ) ) exit(0); - port = get_http_port(default:80); Modified: trunk/openvas-plugins/scripts/php_strip_tags_memory_limit_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/php_strip_tags_memory_limit_vuln.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/php_strip_tags_memory_limit_vuln.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -45,11 +45,7 @@ francais:"Ce script est Copyright (C) 2004 David Maciejak"); family["english"] = "CGI abuses : XSS"; script_family(english:family["english"]); - if ( !defined_func("bn_random") ) - script_dependencie("http_version.nasl"); - else - script_dependencie("http_version.nasl", "redhat-RHSA-2004-392.nasl", "redhat-RHSA-2004-395.nasl"); - + script_dependencie("http_version.nasl"); script_require_ports("Services/www", 80); exit(0); } @@ -61,8 +57,6 @@ include("http_func.inc"); include("backport.inc"); -if ( get_kb_item("CVE-2004-0594") || get_kb_item("CVE-2004-0595") ) exit(0); - port = get_http_port(default:80); banner = get_http_banner(port:port); if(!banner)exit(0); Modified: trunk/openvas-plugins/scripts/rpc_kcms.nasl =================================================================== --- trunk/openvas-plugins/scripts/rpc_kcms.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/rpc_kcms.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -48,10 +48,7 @@ family["english"] = "RPC"; script_family(english:family["english"]); - if ( !defined_func("bn_random") ) - script_dependencie("secpod_rpc_portmap.nasl", "os_fingerprint.nasl"); - else - script_dependencie("secpod_rpc_portmap.nasl", "os_fingerprint.nasl", "solaris251_103879.nasl", "solaris251_x86_103881.nasl", "solaris26_107336.nasl", "solaris26_x86_107338.nasl", "solaris7_107337.nasl", "solaris7_x86_107339.nasl", "solaris8_111400.nasl", "solaris8_x86_111401.nasl", "solaris9_114636.nasl", "solaris9_x86_114637.nasl" ); + script_dependencie("secpod_rpc_portmap.nasl", "os_fingerprint.nasl"); script_require_keys("rpc/portmap"); exit(0); } @@ -62,7 +59,6 @@ if ( report_paranoia < 2 ) exit(0); -if ( get_kb_item("BID-2605") ) exit(0); version = get_kb_item("Host/Solaris/Version"); if ( version && ereg(pattern:"5\.1[0-9]", string:version)) exit(0); Modified: trunk/openvas-plugins/scripts/securenet_sensor_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/securenet_sensor_detect.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/securenet_sensor_detect.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -29,10 +29,7 @@ family["english"] = "Misc."; script_family(english:family["english"]); - if ( ! defined_func("bn_random") ) - script_dependencie("http_version.nasl"); - else - script_dependencie("http_version.nasl", "macosx_version.nasl"); + script_dependencie("http_version.nasl"); script_require_keys("www/apache"); script_require_ports(443); exit(0); Modified: trunk/openvas-plugins/scripts/sendmail_header.nasl =================================================================== --- trunk/openvas-plugins/scripts/sendmail_header.nasl 2009-06-01 09:07:35 UTC (rev 3556) +++ trunk/openvas-plugins/scripts/sendmail_header.nasl 2009-06-01 10:38:52 UTC (rev 3557) @@ -51,10 +51,7 @@ family["english"] = "SMTP problems"; script_family(english:family["english"]); - if ( ! defined_func("bn_random") ) - script_dependencie("smtpserver_detect.nasl"); - else - script_dependencie("smtpserver_detect.nasl", "solaris26_105395.nasl", "solaris26_x86_105396.nasl", "solaris7_107684.nasl", "solaris7_x86_107685.nasl", "solaris8_110615.nasl", "solaris8_x86_110616.nasl", "solaris9_113575.nasl", "solaris9_x86_114137.nasl"); + script_dependencie("smtpserver_detect.nasl"); script_require_ports("Services/smtp", 25); script_require_keys("SMTP/sendmail"); exit(0); @@ -66,9 +63,6 @@ include("smtp_func.inc"); -if ( get_kb_item("BID-6991") ) exit(0); - - port = get_kb_item("Services/smtp"); if(!port) port = 25; From scm-commit at wald.intevation.org Mon Jun 1 13:46:27 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Mon, 1 Jun 2009 13:46:27 +0200 (CEST) Subject: [Openvas-commits] r3558 - in trunk/openvas-plugins: . scripts Message-ID: <20090601114627.12BEA13B43@pyrosoma.intevation.org> Author: mime Date: 2009-06-01 13:46:24 +0200 (Mon, 01 Jun 2009) New Revision: 3558 Added: trunk/openvas-plugins/scripts/phorum_35134.nasl trunk/openvas-plugins/scripts/phpBugTracker_35125.nasl trunk/openvas-plugins/scripts/phpBugTracker_detect.nasl trunk/openvas-plugins/scripts/prtg_traffic_grapher_35128.nasl trunk/openvas-plugins/scripts/prtg_traffic_grapher_detect.nasl Modified: trunk/openvas-plugins/ChangeLog trunk/openvas-plugins/cve_current.txt Log: Added new plugins Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-01 10:38:52 UTC (rev 3557) +++ trunk/openvas-plugins/ChangeLog 2009-06-01 11:46:24 UTC (rev 3558) @@ -1,3 +1,11 @@ +2009-06-01 Michael Meyer + * scripts/prtg_traffic_grapher_35128.nasl, + scripts/phpBugTracker_detect.nasl, + scripts/phpBugTracker_35125.nasl, + scripts/prtg_traffic_grapher_detect.nasl, + scripts/phorum_35134.nasl: + Added new plugins. + 2009-06-01 Chandan S * scripts/apache_mod_include_priv_escalation.nasl, scripts/securenet_sensor_detect.nasl, Modified: trunk/openvas-plugins/cve_current.txt =================================================================== --- trunk/openvas-plugins/cve_current.txt 2009-06-01 10:38:52 UTC (rev 3557) +++ trunk/openvas-plugins/cve_current.txt 2009-06-01 11:46:24 UTC (rev 3558) @@ -81,6 +81,6 @@ CVE-2009-1803 SecPod CVE-2009-1829 SecPod svn CVE-2009-1537 SecPod svn -35125 mime -35134 mime -35128 mime +35125 mime svn +35134 mime svn +35128 mime svn Added: trunk/openvas-plugins/scripts/phorum_35134.nasl =================================================================== --- trunk/openvas-plugins/scripts/phorum_35134.nasl 2009-06-01 10:38:52 UTC (rev 3557) +++ trunk/openvas-plugins/scripts/phorum_35134.nasl 2009-06-01 11:46:24 UTC (rev 3558) @@ -0,0 +1,89 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id$ +# +# Phorum 'image/bmp' MIME Type HTML Injection Vulnerability +# +# Authors +# Michael Meyer +# +# Copyright: +# Copyright (c) 2009 Michael Meyer +# +# 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(100214); + script_bugtraq_id(35134); + script_version ("1.0"); + + script_name(english:"Phorum 'image/bmp' MIME Type HTML Injection Vulnerability"); + desc["english"] = " + + Overview: + According to its version number, the remote version of Phorum is + prone to an HTML-injection vulnerability because the application + fails to properly sanitize user-supplied input. + + Attacker-supplied HTML and script code would execute in the context + of the affected site, potentially allowing the attacker to steal + cookie-based authentication credentials or to control how the site + is rendered to the user; other attacks are also possible. + + Solution: + The vendor has released updates. Please see http://www.phorum.org/ + for more information. + + See also: + http://www.securityfocus.com/bid/35134 + + Risk factor : Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Determine if Phorum is vulnerable to MIME Type HTML Injection"); + script_category(ACT_GATHER_INFO); + script_family(english:"Web application abuses"); + script_copyright(english:"This script is Copyright (C) 2009 Michael Meyer"); + script_dependencie("phorum_detect.nasl"); + script_require_ports("Services/www", 80); + script_exclude_keys("Settings/disable_cgi_scanning"); + exit(0); +} + +include("http_func.inc"); +include("version_func.inc"); + +port = get_http_port(default:80); + +if(!get_port_state(port))exit(0); +if(!can_host_php(port:port))exit(0); + +if(!version = get_kb_item(string("www/", port, "/phorum")))exit(0); +if(!matches = eregmatch(string:version, pattern:"^(.+) under (/.*)$"))exit(0); + +vers = matches[1]; + +if(!isnull(vers) && vers >!< "unknown") { + + if(version_is_less(version: vers, test_version: "5.2.11 ")) + { + security_warning(port:port); + exit(0); + } + +} + +exit(0); Property changes on: trunk/openvas-plugins/scripts/phorum_35134.nasl ___________________________________________________________________ Name: svn:keyword + ID Added: trunk/openvas-plugins/scripts/phpBugTracker_35125.nasl =================================================================== --- trunk/openvas-plugins/scripts/phpBugTracker_35125.nasl 2009-06-01 10:38:52 UTC (rev 3557) +++ trunk/openvas-plugins/scripts/phpBugTracker_35125.nasl 2009-06-01 11:46:24 UTC (rev 3558) @@ -0,0 +1,87 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id$ +# +# phpBugTracker 'include.php' SQL Injection Vulnerability +# +# Authors +# Michael Meyer +# +# Copyright: +# Copyright (c) 2009 Michael Meyer +# +# 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(100218); + script_bugtraq_id(35125); + script_version ("1.0"); + + script_name(english:"phpBugTracker 'include.php' SQL Injection Vulnerability"); + desc["english"] = " + + Overview: + According to its version number, the remote version of phpBugTracker + is prone to an SQL-injection vulnerability because it fails to + sufficiently sanitize user-supplied data before using it in an SQL + query. + + Exploiting this issue could allow an attacker to compromise the + application, access or modify data, or exploit latent + vulnerabilities in the underlying database. + + phpBugTracker 1.0.4 and prior versions are vulnerable. + + See also: + http://www.securityfocus.com/bid/35125 + + Risk factor : Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Determine if phpBugTracker is vulnerable to SQL Injection"); + script_category(ACT_GATHER_INFO); + script_family(english:"Web application abuses"); + script_copyright(english:"This script is Copyright (C) 2009 Michael Meyer"); + script_dependencie("phpBugTracker_detect.nasl"); + script_require_ports("Services/www", 80); + script_exclude_keys("Settings/disable_cgi_scanning"); + exit(0); +} + +include("http_func.inc"); +include("version_func.inc"); + +port = get_http_port(default:80); + +if(!get_port_state(port))exit(0); +if(!can_host_php(port:port))exit(0); + +if(!version = get_kb_item(string("www/", port, "/phpBugTracker")))exit(0); +if(!matches = eregmatch(string:version, pattern:"^(.+) under (/.*)$"))exit(0); + +vers = matches[1]; + +if(!isnull(vers) && vers >!< "unknown") { + + if(version_is_less_equal(version: vers, test_version: "1.0.4")) + { + security_warning(port:port); + exit(0); + } + +} + +exit(0); Property changes on: trunk/openvas-plugins/scripts/phpBugTracker_35125.nasl ___________________________________________________________________ Name: svn:keyword + ID Added: trunk/openvas-plugins/scripts/phpBugTracker_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/phpBugTracker_detect.nasl 2009-06-01 10:38:52 UTC (rev 3557) +++ trunk/openvas-plugins/scripts/phpBugTracker_detect.nasl 2009-06-01 11:46:24 UTC (rev 3558) @@ -0,0 +1,119 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id$ +# +# phpBugTracker Detection +# +# Authors: +# Michael Meyer +# +# Copyright: +# Copyright (c) 2009 Michael Meyer +# +# 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. +############################################################################### + +# need desc here to modify it later in script. +desc["english"] = " + + Overview: + This host is running phpBugTracker, a web-based bug tracker with + functionality similar to other issue tracking systems, such as + Bugzilla. + + See also: + http://phpbt.sourceforge.net/ + + Risk factor : None"; + +if (description) +{ + script_id(100217); + script_version ("1.0"); + + script_name(english:"phpBugTracker Detection"); + + script_description(english:desc["english"]); + script_summary(english:"Checks for the presence of phpBugTracker"); + script_category(ACT_GATHER_INFO); + script_family(english:"Service detection"); + script_copyright(english:"This script is Copyright (C) 2009 Michael Meyer"); + script_dependencie("find_service.nes", "http_version.nasl"); + script_require_ports("Services/www", 80); + script_exclude_keys("Settings/disable_cgi_scanning"); + exit(0); +} + +include("http_func.inc"); +include("http_keepalive.inc"); +include("global_settings.inc"); + +port = get_http_port(default:80); + +if(!get_port_state(port))exit(0); +if(!can_host_php(port:port))exit(0); + +dirs = make_list("/phpbt","/bugtracker","/bugs",cgi_dirs()); + +foreach dir (dirs) { + + url = string(dir, "/index.php"); + req = http_get(item:url, port:port); + buf = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE); + + if( buf == NULL )continue; + + if(egrep(pattern: "phpBugTracker - Home", string: buf, icase: TRUE) && + egrep(pattern: "bug.php\?op=add", string: buf, icase: TRUE) ) + { + if(strlen(dir)>0) { + install=dir; + } else { + install=string("/"); + } + + vers = string("unknown"); + + ### try to get version + url = string(dir, "/CHANGELOG"); + req = http_get(item:url, port:port); + buf = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE); + + version = eregmatch(string: buf, pattern: '-- ([0-9.]+)'); + + if ( !isnull(version[1]) ) { + vers=version[1]; + } + + set_kb_item(name: string("www/", port, "/phpBugTracker"), value: string(vers," under ",install)); + + info = string("None\n\nphpBugTracker Version '"); + info += string(vers); + info += string("' was detected on the remote host in the following directory(s):\n\n"); + info += string(install, "\n"); + + desc = ereg_replace( + string:desc["english"], + pattern:"None$", + replace:info + ); + + if(report_verbosity > 0) { + security_note(port:port,data:desc); + } + exit(0); + + } +} +exit(0); Property changes on: trunk/openvas-plugins/scripts/phpBugTracker_detect.nasl ___________________________________________________________________ Name: svn:keyword + ID Added: trunk/openvas-plugins/scripts/prtg_traffic_grapher_35128.nasl =================================================================== --- trunk/openvas-plugins/scripts/prtg_traffic_grapher_35128.nasl 2009-06-01 10:38:52 UTC (rev 3557) +++ trunk/openvas-plugins/scripts/prtg_traffic_grapher_35128.nasl 2009-06-01 11:46:24 UTC (rev 3558) @@ -0,0 +1,92 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id$ +# +# PRTG Traffic Grapher 'Monitor_Bandwidth' Cross Site Scripting +# Vulnerability +# +# Authors +# Michael Meyer +# +# Copyright: +# Copyright (c) 2009 Michael Meyer +# +# 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(100216); + script_bugtraq_id(35128); + script_version ("1.0"); + + script_name(english:"PRTG Traffic Grapher 'Monitor_Bandwidth' Cross Site Scripting Vulnerability"); + desc["english"] = " + + Overview: + PRTG Traffic Grapher is prone to a cross-site scripting + vulnerability because it fails to properly sanitize user-supplied + input. + + An attacker may leverage this issue to execute arbitrary script code + in the browser of an unsuspecting user in the context of the + affected site. This may allow the attacker to steal cookie-based + authentication credentials and to launch other attacks. + + PRTG Traffic Grapher 6.2.2.977 is vulnerable. + + Solution: + Updates are available. Please see http://www.paessler.com/prtg6 for + more information. + + See also: + http://www.securityfocus.com/bid/35128 + + Risk factor : Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Determine if PRTG Traffic Grapher is vulnerable to XSS"); + script_category(ACT_GATHER_INFO); + script_family(english:"Web application abuses"); + script_copyright(english:"This script is Copyright (C) 2009 Michael Meyer"); + script_dependencie("prtg_traffic_grapher_detect.nasl"); + script_require_ports("Services/www", 80); + script_exclude_keys("Settings/disable_cgi_scanning"); + exit(0); +} + +include("http_func.inc"); +include("version_func.inc"); + +port = get_http_port(default:80); + +if(!get_port_state(port))exit(0); +if(!can_host_php(port:port))exit(0); + +if(!version = get_kb_item(string("www/", port, "/PRTGTrafficGrapher")))exit(0); +if(!matches = eregmatch(string:version, pattern:"^(.+) under (/.*)$"))exit(0); + +vers = matches[1]; + +if(!isnull(vers) && vers >!< "unknown") { + + if(version_is_equal(version: vers, test_version: "6.2.2.977")) + { + security_warning(port:port); + exit(0); + } + +} + +exit(0); Property changes on: trunk/openvas-plugins/scripts/prtg_traffic_grapher_35128.nasl ___________________________________________________________________ Name: svn:keyword + ID Added: trunk/openvas-plugins/scripts/prtg_traffic_grapher_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/prtg_traffic_grapher_detect.nasl 2009-06-01 10:38:52 UTC (rev 3557) +++ trunk/openvas-plugins/scripts/prtg_traffic_grapher_detect.nasl 2009-06-01 11:46:24 UTC (rev 3558) @@ -0,0 +1,102 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id$ +# +# PRTG Traffic Grapher Detection +# +# Authors: +# Michael Meyer +# +# Copyright: +# Copyright (c) 2009 Michael Meyer +# +# 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. +############################################################################### + +# need desc here to modify it later in script. +desc["english"] = " + + Overview: + PRTG Traffic Grapher, a Windows software for monitoring and + classifying bandwidth traffic usage is running at this host. + + See also: + http://www.paessler.com/prtg6 + + Risk factor : None"; + +if (description) +{ + script_id(100215); + script_version ("1.0"); + + script_name(english:"PRTG Traffic Grapher Detection"); + + script_description(english:desc["english"]); + script_summary(english:"Checks for the presence of PRTG Traffic Grapher"); + script_category(ACT_GATHER_INFO); + script_family(english:"Service detection"); + script_copyright(english:"This script is Copyright (C) 2009 Michael Meyer"); + script_dependencie("find_service.nes", "http_version.nasl"); + script_require_ports("Services/www", 80); + script_exclude_keys("Settings/disable_cgi_scanning"); + exit(0); +} + +include("http_func.inc"); +include("http_keepalive.inc"); +include("global_settings.inc"); + +port = get_http_port(default:80); + +if(!get_port_state(port))exit(0); + + url = string("/login.htm"); + req = http_get(item:url, port:port); + buf = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE); + + if( buf == NULL )continue; + if( egrep(pattern: 'PRTG Traffic Grapher V[0-9.]+', string: buf, icase: TRUE) && + egrep(pattern: 'sensorlist.htm', string: buf, icase: TRUE) ) + { + + vers = string("unknown"); + + ### try to get version. + version = eregmatch(string: buf, pattern: 'PRTG Traffic Grapher V([0-9.]+)',icase:TRUE); + + if ( !isnull(version[1]) ) { + vers=version[1]; + } + + set_kb_item(name: string("www/", port, "/PRTGTrafficGrapher"), value: string(vers," under /")); + + info = string("None\n\nPRTG Traffic Grapher Version '"); + info += string(vers); + info += string("' was detected on the remote host\n"); + + desc = ereg_replace( + string:desc["english"], + pattern:"None$", + replace:info + ); + + if(report_verbosity > 0) { + security_note(port:port,data:desc); + } + exit(0); + + } + +exit(0); Property changes on: trunk/openvas-plugins/scripts/prtg_traffic_grapher_detect.nasl ___________________________________________________________________ Name: svn:keyword + ID From scm-commit at wald.intevation.org Mon Jun 1 16:05:01 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Mon, 1 Jun 2009 16:05:01 +0200 (CEST) Subject: [Openvas-commits] r3559 - trunk/openvas-plugins Message-ID: <20090601140501.6AF15D6311@pyrosoma.intevation.org> Author: chandra Date: 2009-06-01 16:05:01 +0200 (Mon, 01 Jun 2009) New Revision: 3559 Modified: trunk/openvas-plugins/cve_current.txt Log: New cve's updated. Modified: trunk/openvas-plugins/cve_current.txt =================================================================== --- trunk/openvas-plugins/cve_current.txt 2009-06-01 11:46:24 UTC (rev 3558) +++ trunk/openvas-plugins/cve_current.txt 2009-06-01 14:05:01 UTC (rev 3559) @@ -84,3 +84,10 @@ 35125 mime svn 35134 mime svn 35128 mime svn +CVE-2009-1827 SecPod +CVE-2009-1828 SecPod +CVE-2009-1815 SecPod +CVE-2009-1831 SecPod svn +CVE-2009-1792 SecPod +CVE-2009-1817 SecPod +CVE-2009-1824 SecPod From scm-commit at wald.intevation.org Mon Jun 1 16:39:49 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Mon, 1 Jun 2009 16:39:49 +0200 (CEST) Subject: [Openvas-commits] r3560 - in trunk/openvas-plugins: . scripts Message-ID: <20090601143949.7AFB2D6308@pyrosoma.intevation.org> Author: chandra Date: 2009-06-01 16:39:46 +0200 (Mon, 01 Jun 2009) New Revision: 3560 Added: trunk/openvas-plugins/scripts/gb_hp_ux_HPSBUX02366.nasl trunk/openvas-plugins/scripts/gb_hp_ux_HPSBUX02429.nasl Modified: trunk/openvas-plugins/ChangeLog Log: New HP LSC scripts added Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-01 14:05:01 UTC (rev 3559) +++ trunk/openvas-plugins/ChangeLog 2009-06-01 14:39:46 UTC (rev 3560) @@ -1,3 +1,8 @@ +2009-06-01 Chandan S + * scripts/gb_hp_ux_HPSBUX02366.nasl, + scripts/gb_hp_ux_HPSBUX02366.nasl: + New HP LSC scripts added. + 2009-06-01 Michael Meyer * scripts/prtg_traffic_grapher_35128.nasl, scripts/phpBugTracker_detect.nasl, Added: trunk/openvas-plugins/scripts/gb_hp_ux_HPSBUX02366.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_hp_ux_HPSBUX02366.nasl 2009-06-01 14:05:01 UTC (rev 3559) +++ trunk/openvas-plugins/scripts/gb_hp_ux_HPSBUX02366.nasl 2009-06-01 14:39:46 UTC (rev 3560) @@ -0,0 +1,116 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# HP-UX Update for useradd(1M) HPSBUX02366 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(835198); + script_version("$Revision: 1.0 $"); + script_xref(name: "HPSBUX", value: "02366"); + script_cve_id("CVE-2009-0719"); + script_name(english: "HP-UX Update for useradd(1M) HPSBUX02366"); + desc["english"] = " + + Vulnerability Insight: + A potential security vulnerability has been identified in HP-UX running the + useradd(1M) command. The vulnerability could be exploited locally to allow + unauthorized access to directories or files. + + Impact: + Local unauthorized access + + Affected Software/OS: + useradd(1M) on + HP-UX B.11.11, B.11.23, B.11.31 running the useradd(1M) command + + Fix: Please Install the Updated Packages. + + References: + http://www11.itrc.hp.com/service/cki/docDisplay.do?docId=emr_na-c01539431-2 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of useradd(1M)"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"HP-UX Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/release"); + exit(0); +} + + +include("pkg-lib-hpux.inc"); +include("revisions-lib.inc"); + +release = get_kb_item("ssh/login/release"); + +if(release == NULL){ + exit(0); +} + +if(release == "HPUX11.31") +{ + + if(ishpuxpkgvuln(pkg:"OS-Core.SYS2-ADMIN", patch_list:['PHCO_38547'], rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + exit(0); +} + + +if(release == "HPUX11.23") +{ + + if(ishpuxpkgvuln(pkg:"OS-Core.SYS-ADMIN", patch_list:['PHCO_38491'], rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"OS-Core.SYS2-ADMIN", patch_list:['PHCO_38491'], rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + exit(0); +} + + +if(release == "HPUX11.11") +{ + + if(ishpuxpkgvuln(pkg:"OS-Core.SYS-ADMIN", patch_list:['PHCO_38492'], rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_hp_ux_HPSBUX02429.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_hp_ux_HPSBUX02429.nasl 2009-06-01 14:05:01 UTC (rev 3559) +++ trunk/openvas-plugins/scripts/gb_hp_ux_HPSBUX02429.nasl 2009-06-01 14:39:46 UTC (rev 3560) @@ -0,0 +1,906 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# HP-UX Update for Java HPSBUX02429 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(835197); + script_version("$Revision: 1.0 $"); + script_xref(name: "HPSBUX", value: "02429"); + script_cve_id("CVE-2009-1093", "CVE-2009-1094", "CVE-2009-1095", "CVE-2009-1096", "CVE-2009-1097", "CVE-2009-1098", "CVE-2009-1099", "CVE-2009-1100", "CVE-2009-1101", "CVE-2009-1102", "CVE-2009-1103", "CVE-2009-1104", "CVE-2009-1105", "CVE-2009-1106", "CVE-2009-1107"); + script_name(english: "HP-UX Update for Java HPSBUX02429"); + desc["english"] = " + + Vulnerability Insight: + Potential security vulnerabilities have been identified in Java Runtime + Environment (JRE) and Java Developer Kit (JDK) running on HP-UX. These + vulnerabilities could allow remote unauthorized access, privilege + escalation, execution of arbitrary code, and Denial of Service (DoS). + + Impact: + Remote execution of arbitrary code and other vulnerabilities + + Affected Software/OS: + Java on + HP-UX B.11.11, B.11.23, B.11.31 running HP JDK and JRE 6.0.03 or earlier + HP-UX B.11.11, B.11.23, B.11.31 running HP JDK and JRE 5.0.16 or earlier + HP-UX B.11.11, B.11.23, B.11.31 running HP Java SDK and RTE 1.4.2.22 or + earlier + + Fix: Please Install the Updated Packages. + + References: + http://www11.itrc.hp.com/service/cki/docDisplay.do?docId=emr_na-c01745133-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Java"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"HP-UX Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/release"); + exit(0); +} + + +include("pkg-lib-hpux.inc"); +include("revisions-lib.inc"); + +release = get_kb_item("ssh/login/release"); + +if(release == NULL){ + exit(0); +} + +if(release == "HPUX11.31") +{ + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-COM", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-IPF32", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-IPF64", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-PA11", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-PA20", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-PA20W", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-COM", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF32", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF32-HS", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF64", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF64-HS", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA11", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA11-HS", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20-HS", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20W", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20W-HS", revision:"1.4.2.22.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-COM", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-PA20", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-PA20W", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-IPF32", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-IPF64", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-COM", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20-HS", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20W", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20W-HS", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF32", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF32-HS", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF64", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF64-HS", revision:"1.5.0.16.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-COM", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-PA20", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-PA20W", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-IPF32", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-IPF64", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-COM", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF32", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF32-HS", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF64", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF64-HS", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20-HS", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20W", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20W-HS", revision:"1.6.0.04.00", rls:"HPUX11.31")) + { + security_hole(0); + exit(0); + } + + exit(0); +} + + +if(release == "HPUX11.23") +{ + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-COM", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-IPF32", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-IPF64", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-PA11", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-PA20", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-PA20W", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-COM", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF32", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF32-HS", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF64", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF64-HS", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA11", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA11-HS", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20-HS", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20W", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20W-HS", revision:"1.4.2.22.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-COM", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-PA20", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-PA20W", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-IPF32", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-IPF64", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-COM", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20-HS", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20W", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20W-HS", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF32", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF32-HS", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF64", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF64-HS", revision:"1.5.0.16.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-COM", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-PA20", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-PA20W", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-IPF32", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-IPF64", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-COM", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF32", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF32-HS", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF64", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF64-HS", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20-HS", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20W", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20W-HS", revision:"1.6.0.04.00", rls:"HPUX11.23")) + { + security_hole(0); + exit(0); + } + + exit(0); +} + + +if(release == "HPUX11.11") +{ + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-COM", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-IPF32", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-IPF64", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-PA11", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-PA20", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk14.JDK14-PA20W", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-COM", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF32", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF32-HS", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF64", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-IPF64-HS", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA11", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA11-HS", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20-HS", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20W", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre14.JRE14-PA20W-HS", revision:"1.4.2.22.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-COM", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-PA20", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-PA20W", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-IPF32", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk15.JDK15-IPF64", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-COM", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20-HS", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20W", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-PA20W-HS", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF32", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF32-HS", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF64", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre15.JRE15-IPF64-HS", revision:"1.5.0.16.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-COM", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-PA20", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-PA20W", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-IPF32", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jdk60.JDK60-IPF64", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-COM", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF32", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF32-HS", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF64", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-IPF64-HS", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20-HS", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20W", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + if(ishpuxpkgvuln(pkg:"Jre60.JRE60-PA20W-HS", revision:"1.6.0.04.00", rls:"HPUX11.11")) + { + security_hole(0); + exit(0); + } + + exit(0); +} \ No newline at end of file From scm-commit at wald.intevation.org Tue Jun 2 07:18:01 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 07:18:01 +0200 (CEST) Subject: [Openvas-commits] r3561 - trunk/openvas-plugins Message-ID: <20090602051801.E6130136E7@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 07:18:01 +0200 (Tue, 02 Jun 2009) New Revision: 3561 Modified: trunk/openvas-plugins/cve_current.txt Log: New cve's added Modified: trunk/openvas-plugins/cve_current.txt =================================================================== --- trunk/openvas-plugins/cve_current.txt 2009-06-01 14:39:46 UTC (rev 3560) +++ trunk/openvas-plugins/cve_current.txt 2009-06-02 05:18:01 UTC (rev 3561) @@ -70,7 +70,7 @@ CVE-2009-1634 SecPod CVE-2009-1476 SecPod 35081 SecPod svn -35117 SecPod +35117 SecPod svn 35111 SecPod CVE-2009-1754 SecPod CVE-2009-0162 SecPod @@ -91,3 +91,6 @@ CVE-2009-1792 SecPod CVE-2009-1817 SecPod CVE-2009-1824 SecPod +CVE-2009-1842 SecPod svn +CVE-2008-6819 SecPod +CVE-2009-1850 SecPod From scm-commit at wald.intevation.org Tue Jun 2 08:16:43 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 08:16:43 +0200 (CEST) Subject: [Openvas-commits] r3562 - in trunk/openvas-plugins: . scripts Message-ID: <20090602061643.C5FB7D6309@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 08:16:42 +0200 (Tue, 02 Jun 2009) New Revision: 3562 Added: trunk/openvas-plugins/scripts/secpod_apple_safari_mult_vuln_june09.nasl trunk/openvas-plugins/scripts/secpod_avg_detection_bypass_vuln_lin.nasl trunk/openvas-plugins/scripts/secpod_b2evolution_detect.nasl trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_lin.nasl trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_win.nasl trunk/openvas-plugins/scripts/secpod_imagemagick_detect_lin.nasl trunk/openvas-plugins/scripts/secpod_imagemagick_detect_win.nasl trunk/openvas-plugins/scripts/secpod_ms_win_xp_spi_dos_vuln.nasl trunk/openvas-plugins/scripts/secpod_php_nuke_userlog_sql_inj_vuln.nasl Modified: trunk/openvas-plugins/ChangeLog trunk/openvas-plugins/scripts/gb_avg_av_detect_lin.nasl trunk/openvas-plugins/scripts/secpod_php_nuke_detect.nasl Log: New checkin's." Modifed Avg and PHP-Nuke detect scripts. Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/ChangeLog 2009-06-02 06:16:42 UTC (rev 3562) @@ -1,3 +1,19 @@ +2009-06-02 Chandan S + * scripts/secpod_apple_safari_mult_vuln_june09.nasl, + scripts/secpod_avg_detection_bypass_vuln_lin.nasl, + scripts/secpod_b2evolution_detect.nasl, + scripts/secpod_imagemagick_bof_vuln_lin.nasl, + scripts/secpod_imagemagick_bof_vuln_win.nasl, + scripts/secpod_imagemagick_detect_lin.nasl, + scripts/secpod_imagemagick_detect_win.nasl, + scripts/secpod_ms_win_xp_spi_dos_vuln.nasl, + scripts/secpod_php_nuke_userlog_sql_inj_vuln.nasl: + New checkin's + + * scripts/gb_avg_av_detect_lin.nasl, + scripts/secpod_php_nuke_detect.nasl: + Modified to detect the new versions. + 2009-06-01 Chandan S * scripts/gb_hp_ux_HPSBUX02366.nasl, scripts/gb_hp_ux_HPSBUX02366.nasl: Modified: trunk/openvas-plugins/scripts/gb_avg_av_detect_lin.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_avg_av_detect_lin.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/gb_avg_av_detect_lin.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -1,12 +1,15 @@ ############################################################################### # OpenVAS Vulnerability Test -# $Id: gb_avg_av_detect_lin.nasl 1566 2009-04-13 15:21:24Z apr $ +# $Id: gb_avg_av_detect_lin.nasl 1566 2009-04-13 15:21:24Z apr $ # # AVG Anti-Virus Version Detection (Linux) # # Authors: # Sharath S # +# Script modified by Sujit Ghosal (Date: 2009-05-27) +# NOTE: Patterns and variables used previously were wrong. +# # Copyright: # Copyright (c) 2009 Intevation GmbH, http://www.intevation.net # @@ -51,18 +54,26 @@ exit(0); } -paths = find_bin(prog_name:"avgupdate", sock:sock); +avgPaths = find_file(file_name:"avgupdate", file_path:"/", useregex:TRUE, + regexpar:"$", sock:sock); +foreach avgBin (avgPaths) +{ + filter = get_bin_version(full_prog_name:chomp(avgBin), sock:sock, + version_argv:"-v", + ver_pattern:"version:? ([0-9.]+)\.([0-9]+)[^.]?"); -foreach sslBin (paths) -{ - avgVer = get_bin_version(full_prog_name:chomp(sslBin), sock:sock, - version_argv:"--version", - ver_pattern:"avgupdate version ([0-9]\.[0-9.]+)"); - if(avgVer[1] != NULL) + # The below steps are carried out to append/increment build by one + # (since it gets build version alwasy reduced by one. + if(filter[1] != NULL && filter[2] != NULL) { - set_kb_item(name:"AVG/AV/Linux/Ver", value:avgVer[1]); - ssh_close_connection(); - exit(0); + end = int(filter[2]) + 1; + avgVer = filter[1] + "." + end; + if(avgVer != NULL) + { + set_kb_item(name:"AVG/AV/Linux/Ver", value:avgVer); + ssh_close_connection(); + exit(0); + } } } ssh_close_connection(); Added: trunk/openvas-plugins/scripts/secpod_apple_safari_mult_vuln_june09.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_apple_safari_mult_vuln_june09.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_apple_safari_mult_vuln_june09.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -0,0 +1,90 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_apple_safari_mult_vuln_june09.nasl 2511 2009-06-01 10:40:43Z June $ +# +# Apple Safari Multiple Vulnerabilities +# +# Authors: +# Sujit Ghosal +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900723); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-0162"); + script_bugtraq_id(34925); + script_name(english:"Apple Safari Multiple Vulnerabilities"); + desc["english"] = " + + Overview: The host is running Apple Safari web browser and is prone to + multiple vulnerabilities. + + Vulnerability Insight: + Browser faces input validation error while handing 'feed:' protocol based + URLs which causes injection of arbitrary codes. + + Impact: + Successful exploitation will let the attacker execute arbitrary codes and can + cause XSS, Buffer Overflow, JavaScript code injection and denial of service in + the context of an affected system. + + Impact level: System/Application + + Affected Software/OS: + Apple Safari version prior to 3.2.3 and 4 Beta on Windows + + Fix: Upgrade to Safari version 3.2.3 or later + http://www.apple.com/safari/download + + References: + http://secunia.com/advisories/35056 + http://www.vupen.com/english/advisories/2009/1298 + http://lists.apple.com/archives/security-announce/2009/May/msg00000.html + http://lists.apple.com/archives/security-announce/2009/May/msg00001.html + + CVSS Score: + CVSS Base Score : 4.3 (AV:N/AC:M/Au:NR/C:N/I:P/A:N) + CVSS Temporal Score : 3.2 + Risk factor : Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the version of Apple Safari"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Web application abuses"); + script_dependencies("secpod_apple_safari_detect_win_900003.nasl"); + script_require_keys("AppleSafari/Version"); + exit(0); +} + + +include("version_func.inc"); + +safariVer = get_kb_item("AppleSafari/Version"); +if(!safariVer){ + exit(0); +} + +# Check for Safari version prior to 3.2.3 (3.525.29.0) +if(version_is_less(version:safariVer, test_version:"3.525.29.0") || + version_in_range(version:safariVer, test_version:"4.0", + test_version2:"4.28.17.0")){ # 4 Beta range + security_warning(0); +} Property changes on: trunk/openvas-plugins/scripts/secpod_apple_safari_mult_vuln_june09.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_avg_detection_bypass_vuln_lin.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_avg_detection_bypass_vuln_lin.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_avg_detection_bypass_vuln_lin.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -0,0 +1,86 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_avg_detection_bypass_vuln_lin.nasl 2477 2009-06-01 15:51:24Z jun $ +# +# AVG AntiVirus Engine Malware Detection Bypass Vulnerability (Linux) +# +# Authors: +# Sujit Ghosal +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900720); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-1784"); + script_bugtraq_id(34895); + script_name(english:"AVG AntiVirus Engine Malware Detection Bypass Vulnerability (Linux)"); + desc["english"] = " + + Overview: This host is installed with AVG AntiVirus Server Edition for Linux + and is prone to Malware Detection Bypass Vulnerability. + + Vulnerability Insight: + Error in the file parsing engine can be exploited to bypass the anti-virus + scanning functionality via a specially crafted ZIP or RAR file. + + Impact: + Successful exploitation will let the attacker craft malwares in a crafted + archive file and spread it across the network to gain access to sensitive + information or cause damage to the remote system. + + Impact Level: System + + Affected Software/OS: + AVG Anti-Virus Server Edition prior to 8.5.323 on Linux + + Fix: Upgrade to the AVG Anti-Virus Scanning Engine build 8.5.323 + http://www.avg.com/download + + References: + http://xforce.iss.net/xforce/xfdb/50426 + http://blog.zoller.lu/2009/04/avg-zip-evasion-bypass.html + + CVSS Score: + CVSS Base Score : 10.0 (AV:N/AC:L/Au:N/C:C/I:C/A:C) + CVSS Temporal Score : 7.4 + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of AVG AntiVirus Server Edition"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Remote file access"); + script_dependencies("gb_avg_av_detect_lin.nasl"); + script_require_keys("AVG/AV/Linux/Ver"); + exit(0); +} + + +include("version_func.inc"); + +version = get_kb_item("AVG/AV/Linux/Ver"); +if(!version){ + exit(0); +} + +# Check for AntiVirus Server Edition version prior to 8.5.323 +if(version_is_less(version:version, test_version:"8.5.323")){ + security_hole(0); +} Property changes on: trunk/openvas-plugins/scripts/secpod_avg_detection_bypass_vuln_lin.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_b2evolution_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_b2evolution_detect.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_b2evolution_detect.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_b2evolution_detect.nasl 2378 2009-06-01 16:50:36Z may $ +# +# b2evolution Version Detection +# +# Authors: +# Sujit Ghosal +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900712); + script_version("Revision: 1.0 "); + script_name(english:"b2evolution Version Detection"); + desc["english"] = " + Overview: This script finds the installed b2evolution script and saves the + version in KB. + + Risk factor: Informational"; + + script_description(english:desc["english"]); + script_summary(english:"Set the Version of b2evolution in KB"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Service detection"); + script_dependencies("find_service.nes"); + script_require_ports("Services/www", 80, 8080); + exit(0); +} + + +include("http_func.inc"); + +b2Port = get_http_port(default:80); +if(!b2Port){ + b2Port = 80; +} + +if(!get_port_state(b2Port)){ + exit(0); +} + +foreach path (make_list("/blogs/htsrv", "/b2evolution/blogs/htsrv", cgi_dirs())) +{ + request = http_get(item:string(path, "/login.php"), port:b2Port); + response = http_send_recv(port:b2Port, data:request); + + if("b2evolution" >< response) + { + b2Ver = eregmatch(pattern:"b2evolution ([0-9.]+)", string:response); + if(b2Ver[1] != NULL) + { + set_kb_item(name:"www/" + b2Port + "/b2evolution", + value:b2Ver[1] + " under " + path); + } + } +} Property changes on: trunk/openvas-plugins/scripts/secpod_b2evolution_detect.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_lin.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_lin.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_lin.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -0,0 +1,82 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_imagemagick_bof_vuln_lin.nasl 2507 2009-05-29 09:36:22Z may $ +# +# ImageMagick Buffer Overflow Vulnerability (Linux) +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900565); + script_version("$Revision: 1.0$"); + script_bugtraq_id(35111); + script_name(english:"ImageMagick Buffer Overflow Vulnerability (Linux)"); + desc["english"] = " + + Overview: The host is installed with ImageMagick and is prone to Buffer + Overflow Vulnerability. + + Vulnerability Insight: + The flaw occurs due to an integer overflow error within the 'XMakeImage()' + function in magick/xwindow.c file while processing malformed TIFF files. + + Impact: + Attackers can exploit this issue by executing arbitrary code via a crafted + TIFF files in the context of an affected application. + + Impact Level: Application + + Affected Software/OS: + ImageMagick version prior to 6.5.2-9 on Linux. + + Fix: Upgrade to ImageMagick version 6.5.2-9 or later. + http://www.imagemagick.org/script/download.php + + References: + http://secunia.com/advisories/35216/ + + CVSS Score: + CVSS Base Score : 5.0 (AV:N/AC:L/Au:NR/C:N/I:N/A:P) + CVSS Temporal Score : 3.7 + Risk factor: Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of ImageMagick"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Buffer overflow"); + script_dependencies("secpod_imagemagick_detect_lin.nasl"); + script_require_keys("ImageMagick/Lin/Ver"); + exit(0); +} + + +include("version_func.inc"); + +imageVer = get_kb_item("ImageMagick/Lin/Ver"); +if(!imageVer){ + exit(0); +} + +if(version_is_less(version:imageVer, test_version:"6.5.2.9")){ + security_warning(0); +} Property changes on: trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_lin.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_win.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_win.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_win.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -0,0 +1,82 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_imagemagick_bof_vuln_win.nasl 2507 2009-06-01 09:15:22Z may $ +# +# ImageMagick Buffer Overflow Vulnerability (Win) +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900564); + script_version("$Revision: 1.0$"); + script_bugtraq_id(35111); + script_name(english:"ImageMagick Buffer Overflow Vulnerability (Win)"); + desc["english"] = " + + Overview: The host is installed with ImageMagick and is prone to Buffer + Overflow Vulnerability. + + Vulnerability Insight: + The flaw occurs due to an integer overflow error within the 'XMakeImage()' + function in magick/xwindow.c file while processing malformed TIFF files. + + Impact: + Attackers can exploit this issue by executing arbitrary code via a crafted + TIFF files in the context of an affected application. + + Impact Level: Application + + Affected Software/OS: + ImageMagick version prior to 6.5.2-9 on Windows. + + Fix: Upgrade to ImageMagick version 6.5.2-9 or later. + http://www.imagemagick.org/script/download.php + + References: + http://secunia.com/advisories/35216/ + + CVSS Score: + CVSS Base Score : 5.0 (AV:N/AC:L/Au:NR/C:N/I:N/A:P) + CVSS Temporal Score : 3.7 + Risk factor: Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of ImageMagick"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Buffer overflow"); + script_dependencies("secpod_imagemagick_detect_win.nasl"); + script_require_keys("ImageMagick/Win/Ver"); + exit(0); +} + + +include("version_func.inc"); + +imageVer = get_kb_item("ImageMagick/Win/Ver"); +if(!imageVer){ + exit(0); +} + +if(version_is_less(version:imageVer, test_version:"6.5.2.9")){ + security_warning(0); +} Property changes on: trunk/openvas-plugins/scripts/secpod_imagemagick_bof_vuln_win.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_imagemagick_detect_lin.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_imagemagick_detect_lin.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_imagemagick_detect_lin.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -0,0 +1,68 @@ +############################################################################## +# OpenVAS Vulnerability Test +# $Id: secpod_imagemagick_detect_lin.nasl 2507 2009-06-01 16:55:37Z may $ +# +# ImageMagick Version Detection (Linux) +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900563); + script_version("$Revision: 1.1 $"); + script_name(english:"ImageMagick version Detection (Linux)"); + desc["english"] = " + + Overview : This script retrieves ImageMagick version and saves the + result in KB. + + Risk factor : Informational"; + + script_description(english:desc["english"]); + script_family(english:"Service detection"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_summary(english:"Set Version of ImageMagick in KB"); + exit(0); +} + + +include("version_func.inc"); + +sock = ssh_login_or_reuse_connection(); +if(!sock){ + exit(0); +} + +getPath = find_bin(prog_name:"identify", sock:sock); +foreach binaryFile (getPath) +{ + imageVer = get_bin_version(full_prog_name:chomp(binaryFile), version_argv:"-version", + ver_pattern:"ImageMagick ([0-9.]+\-?[0-9]?)", sock:sock); + + if(imageVer[1] != NULL) + { + imageVer[1] = ereg_replace(pattern:"-", string:imageVer[1], replace: "."); + set_kb_item(name:"ImageMagick/Lin/Ver", value:imageVer[1]); + } +} +ssh_close_connection(); Property changes on: trunk/openvas-plugins/scripts/secpod_imagemagick_detect_lin.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_imagemagick_detect_win.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_imagemagick_detect_win.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_imagemagick_detect_win.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_imagemagick_detect_win.nasl 2507 2009-06-01 17:34:29Z may $ +# +# ImageMagick Version Detection (Win) +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900562); + script_version("$Revision: 1.0 $"); + script_name(english:"ImageMagick Version Detection (Win)"); + desc["english"] = " + Overview: This script detects the installed version of ImageMagick and + sets the result in KB. + + Risk Factor: Informational"; + + script_description(english:desc["english"]); + script_summary(english:"Set KB for the version of ImageMagick"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Service detection"); + script_dependencies("secpod_reg_enum.nasl"); + script_require_keys("SMB/WindowsVersion"); + exit(0); +} + + +include("smb_nt.inc"); +include("secpod_smb_func.inc"); + +if(!get_kb_item("SMB/WindowsVersion")){ + exit(0); +} + +if(!registry_key_exists(key:"SOFTWARE\ImageMagick")){ + exit(0); +} + +key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\"; +foreach item (registry_enum_keys(key:key)) +{ + imName = registry_get_sz(key:key + item, item:"DisplayName"); + if("ImageMagick" >< imName) + { + imVer = eregmatch(pattern:"ImageMagick ([0-9.]+\-?[0-9]?)", string:imName); + if(imVer[1] != NULL){ + imVer[1] = ereg_replace(pattern:"-", string:imVer[1], replace: "."); + set_kb_item(name:"ImageMagick/Win/Ver", value:imVer[1]); + } + exit(0); + } +} Property changes on: trunk/openvas-plugins/scripts/secpod_imagemagick_detect_win.nasl ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/scripts/secpod_ms_win_xp_spi_dos_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_ms_win_xp_spi_dos_vuln.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_ms_win_xp_spi_dos_vuln.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -0,0 +1,80 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_ms_win_xp_spi_dos_vuln.nasl 2535 2009-06-01 16:19:35Z jun $ +# +# Windows XP 'SPI_GETDESKWALLPAPER' DoS Vulnerability +# +# Authors: +# Sujit Ghosal +# +# Copyright: +# Copyright (c) 2009 SecPod, http://www.secpod.org +# +# 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(900724); + script_version("$Revision: 1.0 $"); + script_cve_id("CVE-2009-1808"); + script_bugtraq_id(35120); + script_name(english:"Windows XP 'SPI_GETDESKWALLPAPER' DoS Vulnerability"); + desc["english"] = " + + Overview: This host is running Windows XP operating system and is prone to + Denial of Service vulnerability. + + Vulnerability Insight: + Error exists while making an 'SPI_SETDESKWALLPAPER' SystemParametersInfo + call with an improperly terminated 'pvParam' argument, followed by an + 'SPI_GETDESKWALLPAPER' SystemParametersInfo system calls. + + Impact: + Successful exploitation will let the attacker execute the malicious code + into the context of an affected operating system and cause crash in the + operating system. + + Impact Level: System + + Affected Software/OS: + Microsoft Windows XP SP3 and prior. + + Fix: No solution or patch is available as on 02nd June, 2009. Information + regarding this issue will be updated once the solution details are available. + For updates refer, http://www.microsoft.com/en/us/default.aspx + + References: + http://www.ragestorm.net/blogs/?p=78 + + CVSS Score: + CVSS Base Score : 4.9 (AV:L/AC:L/Au:NR/C:N/I:N/A:C) + CVSS Temporal Score : 4.4 + Risk factor: Medium"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the existence of Windows XP"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Denial of Service"); + script_dependencies("secpod_reg_enum.nasl"); + exit(0); +} + + +include("secpod_reg.inc"); + +if(hotfix_check_sp(xp:4) > 0){ + security_hole(0); +} Property changes on: trunk/openvas-plugins/scripts/secpod_ms_win_xp_spi_dos_vuln.nasl ___________________________________________________________________ Name: svn:executable + * Modified: trunk/openvas-plugins/scripts/secpod_php_nuke_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_php_nuke_detect.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_php_nuke_detect.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -55,13 +55,13 @@ exit(0); } -foreach dir (make_list("/php-nuke", "/", cgi_dirs())) +foreach dir (make_list("/php-nuke", "/phpnuke", "/", cgi_dirs())) { - sndReq = http_get(item:string(dir, "/index.php"), port:nukePort); + sndReq = http_get(item:string(dir, "/html/index.php"), port:nukePort); rcvRes = http_send_recv(port:nukePort, data:sndReq); if(rcvRes == NULL) { - sndReq = http_get(item:string(dir, "/admin.php"), port:nukePort); + sndReq = http_get(item:string(dir, "/html/admin.php"), port:nukePort); rcvRes = http_keepalive_send_recv(port:nukePort, data:sndReq); if(rcvRes == NULL){ exit(0); @@ -79,11 +79,9 @@ if("PHP-Nuke" >< rcvRes && "Version" >< rcvRes) { nukeVer = eregmatch(pattern:"Version ([0-9.]+)", string:rcvRes); - if(nukeVer[1]!= NULL) - { + if(nukeVer[1]!= NULL){ set_kb_item(name:"www/"+ nukePort + "/php-nuke", value:nukeVer[1] + " under " + dir); - exit(0); } } } Added: trunk/openvas-plugins/scripts/secpod_php_nuke_userlog_sql_inj_vuln.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_php_nuke_userlog_sql_inj_vuln.nasl 2009-06-02 05:18:01 UTC (rev 3561) +++ trunk/openvas-plugins/scripts/secpod_php_nuke_userlog_sql_inj_vuln.nasl 2009-06-02 06:16:42 UTC (rev 3562) @@ -0,0 +1,97 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: secpod_php_nuke_userlog_sql_inj_vuln.nasl 2506 2009-06-01 12:09:29Z may $ +# +# PHP-Nuke SQL Injection Vulnerability +# +# Authors: +# Nikita MR +# +# Copyright: +# Copyright (c) 2009 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. +############################################################################### + +if(description) +{ + script_id(900561); + script_version("$Revision: 1.1 $"); + script_cve_id("CVE-2009-1842"); + script_bugtraq_id(35117); + script_name(english:"PHP-Nuke SQL Injection Vulnerability"); + desc["english"] = " + + Overview: This host is running PHP-Nuke and is prone to SQL Injection + vulnerability. + + Vulnerability Insight: + The flaw is generated because the user supplied data passed into 'referer' + header element when requesting the '/main/tracking/userLog.php' is not + properly sanitized before it is used in an SQL query. + + Impact: + Successful exploitation will let the attacker cause SQL Injection attack, + gain sensitive information about the database used by the web application + or can execute arbitrary code inside the context of the web application. + + Impact Level: Application + + Affected Software/OS: + PHP-Nuke version 8.0 and prior on all platforms. + + Fix: Upgrade to version or later + http://phpnuke-downloads.com/phpnuke.html + + References: + http://www.securityfocus.com/archive/1/503845 + http://gsasec.blogspot.com/2009/05/php-nuke-v80-referer-sql-injection.html + + CVSS Score: + CVSS Base Score : 7.5 (AV:N/AC:L/Au:NR/C:P/I:P/A:P) + CVSS Temporal Score : 5.9 + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the version of PHP-Nuke"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Web application abuses"); + script_dependencies("secpod_php_nuke_detect.nasl"); + script_require_ports("Services/www", 80); + exit(0); +} + + +include("http_func.inc"); +include("version_func.inc"); + +nukePort = get_http_port(default:80); +if(!nukePort){ + exit(0); +} + +nukeVer = get_kb_item("www/"+ nukePort + "/php-nuke"); +if(!nukeVer){ + exit(0); +} + +phpNukeVer = eregmatch(pattern:"^(.+) under (/.*)$", string:nukeVer); +if(phpNukeVer[1] != NULL) +{ + # Check for PHP-Nuke version 8.0 and prior + if(version_is_less_equal(version:phpNukeVer[1], test_version:"8.0")){ + security_hole(nukePort); + } +} Property changes on: trunk/openvas-plugins/scripts/secpod_php_nuke_userlog_sql_inj_vuln.nasl ___________________________________________________________________ Name: svn:executable + * From scm-commit at wald.intevation.org Tue Jun 2 08:17:35 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 08:17:35 +0200 (CEST) Subject: [Openvas-commits] r3563 - trunk/openvas-plugins Message-ID: <20090602061735.4878BD6309@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 08:17:35 +0200 (Tue, 02 Jun 2009) New Revision: 3563 Modified: trunk/openvas-plugins/cve_current.txt Log: Update of released cve's/bid's Modified: trunk/openvas-plugins/cve_current.txt =================================================================== --- trunk/openvas-plugins/cve_current.txt 2009-06-02 06:16:42 UTC (rev 3562) +++ trunk/openvas-plugins/cve_current.txt 2009-06-02 06:17:35 UTC (rev 3563) @@ -71,11 +71,11 @@ CVE-2009-1476 SecPod 35081 SecPod svn 35117 SecPod svn -35111 SecPod +35111 SecPod svn CVE-2009-1754 SecPod -CVE-2009-0162 SecPod +CVE-2009-0162 SecPod svn CVE-2009-1789 SecPod -CVE-2009-1808 SecPod +CVE-2009-1808 SecPod svn CVE-2009-1801 SecPod CVE-2009-1802 SecPod CVE-2009-1803 SecPod From scm-commit at wald.intevation.org Tue Jun 2 09:26:56 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 09:26:56 +0200 (CEST) Subject: [Openvas-commits] r3564 - trunk/openvas-plugins/scripts Message-ID: <20090602072656.5FDCFDA282@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 09:26:55 +0200 (Tue, 02 Jun 2009) New Revision: 3564 Removed: trunk/openvas-plugins/scripts/gb_axigen_mail_server_detect.nasl Log: Removed Duplicate script. Deleted: trunk/openvas-plugins/scripts/gb_axigen_mail_server_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_axigen_mail_server_detect.nasl 2009-06-02 06:17:35 UTC (rev 3563) +++ trunk/openvas-plugins/scripts/gb_axigen_mail_server_detect.nasl 2009-06-02 07:26:55 UTC (rev 3564) @@ -1,75 +0,0 @@ -############################################################################### -# OpenVAS Vulnerability Test -# $Id: gb_axigen_mail_server_detect.nasl 2053 2009-05-05 20:07:05Z may $ -# -# Axigen Mail Server Version Detection -# -# Authors: -# Antu Sanadi -# -# Copyright: -# Copyright (c) 2009 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(800603); - script_version("$Revision: 1.0 $"); - script_name(english:"Axigen Mail Server Version Detection"); - desc["english"] = " - - Overview: The script detects the installed version of Axigen Mail - Server and sets the result in KB. - - Risk factor: Informational"; - - script_description(english:desc["english"]); - script_summary(english:"Sets KB for the version of Axigen Mail Server"); - script_category(ACT_GATHER_INFO); - script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); - script_family(english:"Service detection"); - script_dependencies("find_service.nes", "http_version.nasl"); - script_require_ports("Services/www", 9000); - exit(0); -} - - -include("http_func.inc"); - -axigenPort = get_http_port(default:9000); - -if(!axigenPort){ - axigenPort = 9000; -} - -if(!get_port_state(axigenPort)){ - exit(0); -} - -request = http_get(item:string("/"), port:axigenPort); -rcvRes = http_send_recv(port:axigenPort, data:request); - -if(rcvRes != NULL && "Axigen-Webadmin" >< rcvRes) -{ - axigenVer = eregmatch(pattern:"AXIGEN WebAdmin ([0-9.]+)", - string:rcvRes); - - if(axigenVer[1] != NULL) - { - set_kb_item(name:"www/" + axigenPort + "/AxigenMailServer", - value:axigenVer[1]); - } -} From scm-commit at wald.intevation.org Tue Jun 2 09:27:26 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 09:27:26 +0200 (CEST) Subject: [Openvas-commits] r3565 - in trunk/openvas-plugins: . scripts Message-ID: <20090602072726.EEADBDA282@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 09:27:25 +0200 (Tue, 02 Jun 2009) New Revision: 3565 Added: trunk/openvas-plugins/scripts/gb_merak_mail_server_detect.nasl Modified: trunk/openvas-plugins/ChangeLog Log: Checked in missing merakmail script. Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 07:26:55 UTC (rev 3564) +++ trunk/openvas-plugins/ChangeLog 2009-06-02 07:27:25 UTC (rev 3565) @@ -1,4 +1,10 @@ 2009-06-02 Chandan S + * scripts/gb_axigen_mail_server_detect.nasl: + Removed duplicate Axigen script. + * scripts/gb_merak_mail_server_detect.nasl: + Added missing merak detect script + +2009-06-02 Chandan S * scripts/secpod_apple_safari_mult_vuln_june09.nasl, scripts/secpod_avg_detection_bypass_vuln_lin.nasl, scripts/secpod_b2evolution_detect.nasl, Added: trunk/openvas-plugins/scripts/gb_merak_mail_server_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_merak_mail_server_detect.nasl 2009-06-02 07:26:55 UTC (rev 3564) +++ trunk/openvas-plugins/scripts/gb_merak_mail_server_detect.nasl 2009-06-02 07:27:25 UTC (rev 3565) @@ -0,0 +1,84 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id: gb_merak_mail_server_detect.nasl 790 2009-01-06 13:49:39Z jan $ +# +# Merak Mail Server Web Mail Version Detection +# +# Authors: +# Chandan S +# +# Copyright: +# Copyright (c) 2009 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(800096); + script_version("$Revision: 1.0 $"); + script_name(english:"Merak Mail Server Web Mail Version Detection"); + desc["english"] = " + + Overview: This script will detect the version of Merak Mail Server Web Mail + on the remote host and sets the KB. + + Risk factor: Informational"; + + script_description(english:desc["english"]); + script_summary(english:"Set KB for the version of Merak Mail Server"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"General"); + script_dependencies("find_service.nes"); + exit(0); +} + + +include("http_func.inc"); + +port = 32000; +banner = get_http_banner(port); + +if("IceWarp" >!< banner){ + exit(0); +} + +smtpPort = get_kb_item("Services/smtp"); +if(!smtpPort){ + smtpPort = 25; +} + +imapPort = get_kb_item("Services/imap"); +if(!imapPort){ + imapPort = 143; +} + +popPort = get_kb_item("Services/pop3"); +if(!popPort){ + popPort = 110; +} + +foreach port (make_list(smtpPort, imapPort, popPort)) +{ + banner = get_kb_item(string("Banner/", port)); + if(banner =~ "IceWarp|Merak") + { + ver = eregmatch(pattern:"(Merak|IceWarp) ([0-9.]+)", string:banner); + if(ver[2] != NULL){ + set_kb_item(name:"MerakMailServer/Ver", value:ver[2]); + } + exit(0); + } +} Property changes on: trunk/openvas-plugins/scripts/gb_merak_mail_server_detect.nasl ___________________________________________________________________ Name: svn:executable + * From scm-commit at wald.intevation.org Tue Jun 2 11:40:00 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 11:40:00 +0200 (CEST) Subject: [Openvas-commits] r3566 - trunk/openvas-compendium Message-ID: <20090602094000.69626D6308@pyrosoma.intevation.org> Author: geoff Date: 2009-06-02 11:39:59 +0200 (Tue, 02 Jun 2009) New Revision: 3566 Modified: trunk/openvas-compendium/ChangeLog trunk/openvas-compendium/openvas-compendium.tex Log: minor grammar changes for the OpenVAS LSC Credentials Section Modified: trunk/openvas-compendium/ChangeLog =================================================================== --- trunk/openvas-compendium/ChangeLog 2009-06-02 07:27:25 UTC (rev 3565) +++ trunk/openvas-compendium/ChangeLog 2009-06-02 09:39:59 UTC (rev 3566) @@ -1,3 +1,10 @@ +2009-06-02 Geoff Galitz + + * openvas-compendium.tex: made small edits for grammar in regards + to SVN versions r3440. Affected sections are "Changing severities + or reported issues" and "Configure the local security checks in + OpenVAS-Client <= 2.0.1" + 2009-05-20 Felix Wolfsteller * openvas-compendium.tex: Added/expanded sections about severity Modified: trunk/openvas-compendium/openvas-compendium.tex =================================================================== --- trunk/openvas-compendium/openvas-compendium.tex 2009-06-02 07:27:25 UTC (rev 3565) +++ trunk/openvas-compendium/openvas-compendium.tex 2009-06-02 09:39:59 UTC (rev 3566) @@ -2044,7 +2044,7 @@ reported issues (e.g. because running an apache on a classified machine is extra bad). -Severity overrides are organized in a Severity filter. +Severity overrides are organized in a severity filter. The filter is off by default. It can be switched on or off in the "Report" Menu (item "Override Severities"/ "Undo Severity Overrides") on a per-report basis. Reports for which the filter is active are @@ -2490,8 +2490,8 @@ Copy the resulting executable to the target machine and execute it with administrator privileges. -To remove the user, execute the Uninstaller which should be located on the -Desktop of the user that was used to install the user. +To remove the user, execute the uninstaller which should be located on the +Desktop in that user's account. Note that this will delete the test- users home directory as well. \paragraph{Additional Note for Windows XP} From scm-commit at wald.intevation.org Tue Jun 2 12:21:37 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 12:21:37 +0200 (CEST) Subject: [Openvas-commits] r3567 - in trunk/openvas-plugins: . scripts Message-ID: <20090602102137.574321356C@pyrosoma.intevation.org> Author: felix Date: 2009-06-02 12:21:36 +0200 (Tue, 02 Jun 2009) New Revision: 3567 Modified: trunk/openvas-plugins/ChangeLog trunk/openvas-plugins/scripts/ssh_authorization.nasl Log: * scripts/ssh_authorization.nasl: Corrected check for definition of credentials (kb-item not readable from nvt that set it, thus going over ssh_func.inc's kb_ssh_login etc). Corrected wording. Survive if no explicit port was found (defaults to 22). Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 09:39:59 UTC (rev 3566) +++ trunk/openvas-plugins/ChangeLog 2009-06-02 10:21:36 UTC (rev 3567) @@ -1,3 +1,11 @@ +2009-06-02 Felix Wolfsteller + + * scripts/ssh_authorization.nasl: + Corrected check for definition of credentials (kb-item not readable + from nvt that set it, thus going over ssh_func.inc's kb_ssh_login etc). + Corrected wording. + Survive if no explicit port was found (defaults to 22). + 2009-06-02 Chandan S * scripts/gb_axigen_mail_server_detect.nasl: Removed duplicate Axigen script. Modified: trunk/openvas-plugins/scripts/ssh_authorization.nasl =================================================================== --- trunk/openvas-plugins/scripts/ssh_authorization.nasl 2009-06-02 09:39:59 UTC (rev 3566) +++ trunk/openvas-plugins/scripts/ssh_authorization.nasl 2009-06-02 10:21:36 UTC (rev 3567) @@ -107,22 +107,17 @@ port = get_kb_item("Services/ssh"); if(!port) { - log_message(data:'No port for an ssh connect was found open.\nHence local security checks are not enabled.'); - exit(0); + log_message(data:'No port for an ssh connect was found open.\nHence local security checks might not work.'); } # Check if an account was defined either by the preferences ("old") or by the # server ("new"). - -ssh_login_name = get_kb_item(name: "Secret/SSH/login"); -ssh_public_key = get_kb_item(name: "Secret/SSH/publickey"); - -if(ssh_login_name || ssh_public_key) +if(kb_ssh_login() || kb_ssh_publickey()) { sock = ssh_login_or_reuse_connection(); if(!sock) { - security_note(data: 'It was not possible to login using the SSH crendentials supplied.\n Hence local security checks are not enabled.', port:port); + security_note(data: 'It was not possible to login using the SSH crendentials supplied.\nHence local security checks are not enabled.', port:port); ssh_close_connection(); exit(0); } From scm-commit at wald.intevation.org Tue Jun 2 12:54:53 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 12:54:53 +0200 (CEST) Subject: [Openvas-commits] r3568 - trunk/openvas-plugins/scripts Message-ID: <20090602105453.F268C13457@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 12:54:52 +0200 (Tue, 02 Jun 2009) New Revision: 3568 Added: trunk/openvas-plugins/scripts/secpod_putty_version.nasl trunk/openvas-plugins/scripts/secpod_zikula_detect.nasl Modified: trunk/openvas-plugins/scripts/embedded_web_server_detect.nasl trunk/openvas-plugins/scripts/msrpc_dcom.nasl trunk/openvas-plugins/scripts/myserver_post_dos.nasl trunk/openvas-plugins/scripts/postnuke_news_xss.nasl trunk/openvas-plugins/scripts/putty_arbitrary_command_execution.nasl trunk/openvas-plugins/scripts/servletExec_DoS.nasl trunk/openvas-plugins/scripts/teso_telnet.nasl trunk/openvas-plugins/scripts/ws4e_too_long_url.nasl Log: New dependencie scripts added.Few more missing dependencie issue resolved. Modified: trunk/openvas-plugins/scripts/embedded_web_server_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/embedded_web_server_detect.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/embedded_web_server_detect.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -31,11 +31,10 @@ family["english"] = "Misc."; script_family(english:family["english"]); - script_dependencies("cisco_ids_manager_detect.nasl", "ciscoworks_detect.nasl", -"clearswift_mimesweeper_smtp_detect.nasl", "imss_detect.nasl", "interspect_detect.nasl", "intrushield_console_detect.nasl", -"iwss_detect.nasl", "linuxconf_detect.nasl", "securenet_provider_detect.nasl", -"tmcm_detect.nasl", "websense_detect.nasl", "xedus_detect.nasl", "xerox_document_centre_detect.nasl", "xerox_workcentre_detect.nasl", "compaq_wbem_detect.nasl"); - + script_dependencies("ciscoworks_detect.nasl", "clearswift_mimesweeper_smtp_detect.nasl", + "imss_detect.nasl", "interspect_detect.nasl", "intrushield_console_detect.nasl", + "iwss_detect.nasl", "linuxconf_detect.nasl", "securenet_provider_detect.nasl", + "tmcm_detect.nasl", "websense_detect.nasl", "xedus_detect.nasl", "compaq_wbem_detect.nasl"); exit(0); } Modified: trunk/openvas-plugins/scripts/msrpc_dcom.nasl =================================================================== --- trunk/openvas-plugins/scripts/msrpc_dcom.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/msrpc_dcom.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -46,7 +46,7 @@ script_copyright(english:"This script is Copyright (C) 2003 KK LIU"); family["english"] = "Gain root remotely"; script_family(english:family["english"]); - script_dependencies("secpod_reg_enum.nasl", "msrpc_dcom2.nasl"); + script_dependencies("secpod_reg_enum.nasl"); script_require_ports("Services/msrpc", 135, 593); exit(0); } Modified: trunk/openvas-plugins/scripts/myserver_post_dos.nasl =================================================================== --- trunk/openvas-plugins/scripts/myserver_post_dos.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/myserver_post_dos.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -39,7 +39,7 @@ family["english"] = "CGI abuses"; script_family(english:family["english"]); - script_dependencie("find_service.nes", "www_too_long_url.nasl"); + script_dependencie("find_service.nes"); script_exclude_keys("www/too_long_url_crash"); script_require_ports("Services/www", 80); exit(0); Modified: trunk/openvas-plugins/scripts/postnuke_news_xss.nasl =================================================================== --- trunk/openvas-plugins/scripts/postnuke_news_xss.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/postnuke_news_xss.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -1,4 +1,4 @@ -# +############################################################################################ # This script was written by David Maciejak # # based on work from @@ -8,54 +8,70 @@ # # This script is released under the GNU GPLv2 # +############################################################################################## -if (description) +if(description) { - script_id(14727); - script_bugtraq_id(5809); - script_xref(name:"OSVDB", value:"5499"); - script_version("$Revision$"); - script_name(english:"Post-Nuke News module XSS"); - desc["english"] = " -The remote host is running a version of Post-Nuke which contains -the 'News' module which itself is vulnerable to a cross site -scripting issue. + script_id(14727); + script_bugtraq_id(5809); + script_version("$Revision$"); + script_name(english:"Post-Nuke News module XSS"); + desc["english"] = " + The remote host is running a version of Post-Nuke which contains + the 'News' module which itself is vulnerable to a cross site + scripting issue. + An attacker may use these flaws to steal the cookies of the + legitimate users of this web site. -An attacker may use these flaws to steal the cookies of the -legitimate users of this web site. + Solution : Upgrade to the latest version of postnuke + Risk factor : Medium"; -Solution : Upgrade to the latest version of postnuke -Risk factor : Medium"; - - script_description(english:desc["english"]); - script_summary(english:"Determines if post-nuke is vulnerable to XSS"); - script_category(ACT_GATHER_INFO); - script_family(english:"CGI abuses : XSS"); - script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); - script_dependencie("postnuke_detect.nasl", "cross_site_scripting.nasl"); - script_require_ports("Services/www", 80); - exit(0); + script_description(english:desc["english"]); + script_summary(english:"Determines if post-nuke is vulnerable to XSS"); + script_category(ACT_GATHER_INFO); + script_family(english:"CGI abuses : XSS"); + script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); + script_dependencie("secpod_zikula_detect.nasl", "cross_site_scripting.nasl"); + script_require_ports("Services/www", 80); + exit(0); } include("http_func.inc"); include("http_keepalive.inc"); +include("version_func.inc"); - port = get_http_port(default:80); -if(!get_port_state(port))exit(0); -if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0); -if(!can_host_php(port:port))exit(0); +if(!get_port_state(port)){ + exit(0); +} -kb = get_kb_item("www/" + port + "/postnuke" ); -if ( ! kb ) exit(0); -stuff = eregmatch(pattern:"(.*) under (.*)", string:kb ); -dir = stuff[2]; +postVer =get_kb_item("www/" + port + "/postnuke"); +if(!postVer){ + exit(0); +} +postVer = eregmatch(pattern:"(.*) under (.*)", string:postVer); +if(phpVer[1] == NULL && phpVer[2] == NULL){ + exit(0); +} -req = http_get(item:string(dir, "/modules.php?op=modload&name=News&file=article&sid="), port:port); -res = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE); -if(res == NULL ) exit(0); - -if("" >< res) security_warning(port); +version=phpVer[1]; +dir = phpVer[2]; + +if(!safe_checks()) +{ + req = http_get(item:string(dir, "/modules.php?op=modload&name=News&file=article&sid="), port:port); + res = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE); + if(res == NULL ){ + exit(0); + } + if("" >< res){ + security_warning(port); + } +} + +if(version_is_less_equal(version:version,test_version:"0.721")){ + security_warning(port); +} Modified: trunk/openvas-plugins/scripts/putty_arbitrary_command_execution.nasl =================================================================== --- trunk/openvas-plugins/scripts/putty_arbitrary_command_execution.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/putty_arbitrary_command_execution.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -1,3 +1,4 @@ +######################################################################################## # This script was written by David Maciejak # based on work from # (C) Tenable Network Security @@ -3,53 +4,46 @@ # # This script is released under the GNU GPLv2 - +# +# +######################################################################################### if(description) { - script_id(14262); - script_cve_id("CVE-2003-0069"); - script_xref(name:"OSVDB", value:"8347"); + script_id(14262); + script_cve_id("CVE-2003-0069"); + script_version("$Revision$"); + script_name(english:"PuTTY window title escape character arbitrary command execution"); + desc["english"] = " + PuTTY is a free SSH client. + This version contains a flaw that may allow a malicious user to insert + arbitrary commands and execute them. + The issue is triggered when an attacker sends commands, + preceded by terminal emulator escape sequences. + It is possible that the flaw may allow arbitrary code execution + resulting in a loss of integrity. - script_version("$Revision$"); + Solution : Upgrade to version 0.54 or newer + Risk factor : High"; - name["english"] = "PuTTY window title escape character arbitrary command execution"; - - script_name(english:name["english"]); - - - desc["english"] = " -PuTTY is a free SSH client. - -This version contains a flaw that may allow a malicious user to insert -arbitrary commands and execute them. -The issue is triggered when an attacker sends commands, -preceded by terminal emulator escape sequences. -It is possible that the flaw may allow arbitrary code execution -resulting in a loss of integrity. - -Solution : Upgrade to version 0.54 or newer -Risk factor : High"; - - - - script_description(english:desc["english"]); - - summary["english"] = "Determine PuTTY version"; - - script_summary(english:summary["english"]); - - script_category(ACT_GATHER_INFO); - + script_description(english:desc["english"]); + script_summary(english:"Determine PuTTY version"); + script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); - family["english"] = "Windows"; - script_family(english:family["english"]); + script_family(english:"Windows"); + script_dependencies("secpod_putty_version.nasl","secpod_reg_enum.nasl"); + script_require_keys("SMB/PuTTY/version"); + exit(0); +} - script_dependencies("putty_version_check.nasl"); - script_require_keys("SMB/PuTTY/version"); +include("smb_nt.inc"); +include("version_func.inc"); +include("secpod_smb_func.inc"); - exit(0); +puttyVer=get_kb_item("PuTTY/Version"); +if(!puttyVer){ + exit(0); } -version = get_kb_item("SMB/PuTTY/version"); -if ( ! version ) exit(0); -if ( ereg(pattern:"^([0-4]|5\.[0-3]([^0-9]|$))", string:version) ) - security_hole(0); +if(version_is_less_equal(version:puttyVer, test_version:"0.53")){ + security_hole(0); +} + Added: trunk/openvas-plugins/scripts/secpod_putty_version.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_putty_version.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/secpod_putty_version.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -0,0 +1,61 @@ +############################################################################### +# OpenVAS Vulnerability Test +# $Id:secpod_putty_version.nasl 1020 2009-06-01 20:05:29Z Feb $ +# +# Ptty Version Detection +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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. +################################################################################ + +if(description) +{ + script_id(900618); + script_version ("$Revision: 1.2 $"); + script_name(english:"putty Version Detection"); + desc["english"] = " + Overview: This script determines the putty version on + the remote host and sets the result in the KB. + + Risk factor : Informational"; + + script_description(english:desc["english"]); + script_summary(english:"Sets KB of puTTY version"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod."); + script_family(english:"services detection"); + script_dependencie("find_service.nes", "secpod_reg_enum.nasl"); + exit(0); +} + + +include("smb_nt.inc"); +include("version_func.inc"); +include("secpod_smb_func.inc"); + +path = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\PuTTY_is1",item:"DisplayName"); + +if(!path){ + exit(0); +} + +version = eregmatch(pattern:"[0-9.]+", string:path); +if(version){ + set_kb_item(name:"PuTTY/Version", value:version[0]); +} Added: trunk/openvas-plugins/scripts/secpod_zikula_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_zikula_detect.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/secpod_zikula_detect.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -0,0 +1,138 @@ +############################################################################## +# OpenVAS Vulnerability Test +# $Id: secpod_zikula_detect.nasl 1096 2009-06-01 20:05:29Z Apr $ +# +# Detection of zikula or Post-Nuke Version +# +# Authors: +# Antu Sanadi +# +# Copyright: +# Copyright (c) 2009 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. +################################################################################ +if(description) +{ + script_id(900620); + script_version("$Revision: 1.0 $"); + script_name(english:"Detecting the zikula or PostNuke version"); + desc["english"] = " + Overview:This script finds the version of the PostNuke installed + on remote system and sets the equivelent value in the KB. + + Risk factor:Informational"; + + script_description(english:desc["english"]); + script_summary(english:"Detects the version of zikula or PHP-Nuke and sets the kb value"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 SecPod"); + script_family(english:"Service detection"); + script_require_ports("Services/www", 80); + script_dependencies("find_service.nes"); + exit(0); +} + + + +# The PostNuke product is stopped and again started same product with the name zikula. +# This script first searches the version of postnuke installed , if it not founds then +# it serches for the zikula installed. + +include("http_func.inc"); +include("http_keepalive.inc"); + +port = get_http_port(default:80); +if(!port){ + exit(0); +} + +foreach dir (make_list("/PostNuke", "/zikula", cgi_dirs())) +{ + req = http_get(item:string(dir, "/index.php"), port:port); + r = http_keepalive_send_recv(port:port, data:req, bodyonly:1); + if(r == NULL){ + exit(0); + } + # searching for postnuke version in different possible files + if('PostNuke' >< r && egrep(pattern:"< r && egrep(pattern:".*PostNuke:.The (Phoenix|"+ + "Platinum) Release.*$", string:r)) + { + version_str = egrep(pattern:".*PostNuke:.The (Phoenix|"+ + "Platinum) Release.*$", string:r); + version_str = chomp(version_str); + version = ereg_replace(pattern:".*PostNuke:.The (Phoenix|"+ + "Platinum) Release.*\(([0-9].*)\)", + string:version_str, replace:"\2"); + # if postnuke is installed sets the kb values and exits + if(version){ + set_kb_item(name:"www/"+ port + "/postnuke", value:version + " under " + dir); + exit(0); + } + } + } + } + + # searching for postnuke version in different possible files + if(dir=="PostNuke") + { + sndReq = http_get(item:string(dir, "/html/themes/SeaBreeze/style/style.css"), port:port); + rcvRes =http_send_recv(port:port, data:sndReq); + if(rcvRes == NULL){ + exit(0); + } + if(egrep(pattern:"^HTTP/.* 200 OK", string:rcvRes)) + { + postNuke= egrep(pattern:"PN [0-9.]+", string:rcvRes); + version = eregmatch(pattern:"([0-9.]+)", string:postNuke); + if(version[0]!= NULL){ + set_kb_item(name:"www/"+ port + "/postnuke", value:version[0] + " under " + dir); + exit(0); + } + } + } + + + # searching for the zikula version in zikula directory + sndReq = http_get(item:string(dir, "/docs/distribution/tour_page1.htm"), port:port); + rcvRes =http_send_recv(port:port, data:sndReq); + if(rcvRes == NULL){ + exit(0); + } + if(egrep(pattern:"^HTTP/.* 200 OK", string:rcvRes) && "congratulations and welcome to Zikula" >< rcvRes) + { + zikula= egrep(pattern:"welcome to Zikula [0-9.]+", string:rcvRes); + version = eregmatch(pattern:"([0-9.]+)", string:zikula); + # if postnuke is not installed and zikulla is installed then setsthe zikull version + if(version[0]!= NULL){ + set_kb_item(name:"www/"+ port + "/zikula", value:version[0] + " under " + dir); + } + } +} Modified: trunk/openvas-plugins/scripts/servletExec_DoS.nasl =================================================================== --- trunk/openvas-plugins/scripts/servletExec_DoS.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/servletExec_DoS.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -46,7 +46,7 @@ francais:"Ce script est Copyright (C) 2002 Matt Moore"); family["english"] = "CGI abuses"; script_family(english:family["english"]); - script_dependencie("find_service.nes", "no404.nasl", "www_too_long_url.nasl"); + script_dependencie("find_service.nes", "no404.nasl"); script_require_ports("Services/www", 80); script_exclude_keys("www/too_long_url_crash"); exit(0); @@ -55,7 +55,8 @@ # Check starts here include("http_func.inc"); -crashes_already = get_kb_item("www/too_long_url_crash"); + +crashes_already = http_is_dead(port: port, retry:1); if(crashes_already)exit(0); port = get_http_port(default:80); Modified: trunk/openvas-plugins/scripts/teso_telnet.nasl =================================================================== --- trunk/openvas-plugins/scripts/teso_telnet.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/teso_telnet.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -47,7 +47,7 @@ script_family(english:family["english"]); # Must run AFTER ms_telnet_overflow-004.nasl - script_dependencie("find_service.nes", "ms_telnet_overflow.nasl"); + script_dependencie("find_service.nes"); script_require_ports("Services/telnet", 23); exit(0); Modified: trunk/openvas-plugins/scripts/ws4e_too_long_url.nasl =================================================================== --- trunk/openvas-plugins/scripts/ws4e_too_long_url.nasl 2009-06-02 10:21:36 UTC (rev 3567) +++ trunk/openvas-plugins/scripts/ws4e_too_long_url.nasl 2009-06-02 10:54:52 UTC (rev 3568) @@ -59,7 +59,7 @@ francais:"Ce script est Copyright (C) 2002 Michel Arboi"); family["english"] = "Gain root remotely"; script_family(english:family["english"]); - script_dependencie("find_service.nes", "www_too_long_url.nasl", "http_version.nasl"); + script_dependencie("find_service.nes", "http_version.nasl"); script_require_ports("Services/www",80); script_exclude_keys("www/too_long_url_crash"); script_require_keys("www/webserver4everyone"); From scm-commit at wald.intevation.org Tue Jun 2 12:55:13 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 12:55:13 +0200 (CEST) Subject: [Openvas-commits] r3569 - trunk/openvas-plugins Message-ID: <20090602105513.6121552034@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 12:55:12 +0200 (Tue, 02 Jun 2009) New Revision: 3569 Modified: trunk/openvas-plugins/ChangeLog Log: New dependencie scripts added.Few more missing dependencie issue resolved. Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 10:54:52 UTC (rev 3568) +++ trunk/openvas-plugins/ChangeLog 2009-06-02 10:55:12 UTC (rev 3569) @@ -1,3 +1,19 @@ +2009-06-02 Chandan S + + * scripts/secpod_zikula_detect.nasl, + scripts/secpod_putty_version.nasl: + Added new dependencie scripts required by others. + + * scripts/ws4e_too_long_url.nasl, + scripts/servletExec_DoS.nasl, + scripts/putty_arbitrary_command_execution.nasl, + scripts/myserver_post_dos.nasl, + scripts/embedded_web_server_detect.nasl, + scripts/msrpc_dcom.nasl, + scripts/teso_telnet.nasl, + scripts/postnuke_news_xss.nasl: + Resolved few more missing dependencie scripts. + 2009-06-02 Felix Wolfsteller * scripts/ssh_authorization.nasl: From scm-commit at wald.intevation.org Tue Jun 2 13:01:36 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 13:01:36 +0200 (CEST) Subject: [Openvas-commits] r3570 - in trunk/openvas-plugins: . scripts Message-ID: <20090602110136.A294C13451@pyrosoma.intevation.org> Author: felix Date: 2009-06-02 13:01:35 +0200 (Tue, 02 Jun 2009) New Revision: 3570 Modified: trunk/openvas-plugins/ChangeLog trunk/openvas-plugins/scripts/ssh_detect.nasl Log: * scripts/ssh_detect.nasl: Cosmetics (whitespaces removed/added). Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 10:55:12 UTC (rev 3569) +++ trunk/openvas-plugins/ChangeLog 2009-06-02 11:01:35 UTC (rev 3570) @@ -1,3 +1,8 @@ +2009-06-02 Felix Wolfsteller + + * scripts/ssh_detect.nasl: + Cosmetics (whitespaces removed/added). + 2009-06-02 Chandan S * scripts/secpod_zikula_detect.nasl, Modified: trunk/openvas-plugins/scripts/ssh_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/ssh_detect.nasl 2009-06-02 10:55:12 UTC (rev 3569) +++ trunk/openvas-plugins/scripts/ssh_detect.nasl 2009-06-02 11:01:35 UTC (rev 3570) @@ -8,10 +8,10 @@ { script_id(10267); script_version ("$Revision$"); - + name["english"] = "SSH Server type and version"; script_name(english:name["english"]); - + desc["english"] = "This detects the SSH Server's type and version by connecting to the server and processing the buffer received. This information gives potential attackers additional information about the @@ -20,15 +20,15 @@ Solution: Apply filtering to disallow access to this port from untrusted hosts -Risk factor : Low"; + Risk factor : Low"; script_description(english:desc["english"]); - + summary["english"] = "SSH Server type and version"; script_summary(english:summary["english"]); - + script_category(ACT_GATHER_INFO); - + script_copyright(english:"This script is Copyright (C) 1999 SecuriTeam"); family["english"] = "General"; script_family(english:family["english"]); @@ -51,7 +51,7 @@ { soc = open_sock_tcp(22); if ( ! soc ) exit(0); - if ( defined_func("bn_random") ) + if ( defined_func("bn_random") ) { ssh_login (socket:soc, login:"n3ssus", password:"n3ssus", pub:NULL, priv:NULL, passphrase:NULL); @@ -75,7 +75,7 @@ set_kb_item(name:"SSH/supportedauth/" + port, value:supported); text += 'Remote SSH supported authentication : ' + supported + '\n\n'; } - + if (banner) { set_kb_item(name:"SSH/textbanner/" + port, value:banner); @@ -83,7 +83,6 @@ } security_note(port:port, data:text); - register_service(port: 22, proto: "ssh"); + register_service(port: 22, proto: "ssh"); } } - From scm-commit at wald.intevation.org Tue Jun 2 13:03:06 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 13:03:06 +0200 (CEST) Subject: [Openvas-commits] r3571 - in trunk/openvas-plugins: . scripts Message-ID: <20090602110306.9B2BD13451@pyrosoma.intevation.org> Author: felix Date: 2009-06-02 13:03:05 +0200 (Tue, 02 Jun 2009) New Revision: 3571 Modified: trunk/openvas-plugins/ChangeLog trunk/openvas-plugins/scripts/ssh_detect.nasl Log: * scripts/ssh_detect.nasl: Use correct port(s) for checking and reporting ssh server presence. Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 11:01:35 UTC (rev 3570) +++ trunk/openvas-plugins/ChangeLog 2009-06-02 11:03:05 UTC (rev 3571) @@ -1,6 +1,11 @@ 2009-06-02 Felix Wolfsteller * scripts/ssh_detect.nasl: + Use correct port(s) for checking and reporting ssh server presence. + +2009-06-02 Felix Wolfsteller + + * scripts/ssh_detect.nasl: Cosmetics (whitespaces removed/added). 2009-06-02 Chandan S Modified: trunk/openvas-plugins/scripts/ssh_detect.nasl =================================================================== --- trunk/openvas-plugins/scripts/ssh_detect.nasl 2009-06-02 11:01:35 UTC (rev 3570) +++ trunk/openvas-plugins/scripts/ssh_detect.nasl 2009-06-02 11:03:05 UTC (rev 3571) @@ -49,7 +49,7 @@ if (!port) port = 22; if (get_port_state(port)) { - soc = open_sock_tcp(22); + soc = open_sock_tcp(port); if ( ! soc ) exit(0); if ( defined_func("bn_random") ) { @@ -83,6 +83,6 @@ } security_note(port:port, data:text); - register_service(port: 22, proto: "ssh"); + register_service(port: port, proto: "ssh"); } } From scm-commit at wald.intevation.org Tue Jun 2 13:32:17 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 13:32:17 +0200 (CEST) Subject: [Openvas-commits] r3572 - trunk/openvas-plugins Message-ID: <20090602113217.6DDD95203A@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 13:32:17 +0200 (Tue, 02 Jun 2009) New Revision: 3572 Modified: trunk/openvas-plugins/cve_current.txt Log: New cve's added Modified: trunk/openvas-plugins/cve_current.txt =================================================================== --- trunk/openvas-plugins/cve_current.txt 2009-06-02 11:03:05 UTC (rev 3571) +++ trunk/openvas-plugins/cve_current.txt 2009-06-02 11:32:17 UTC (rev 3572) @@ -94,3 +94,13 @@ CVE-2009-1842 SecPod svn CVE-2008-6819 SecPod CVE-2009-1850 SecPod +CVE-2009-0185 SecPod +CVE-2009-0188 SecPod +CVE-2009-0950 SecPod +CVE-2009-0951 SecPod +CVE-2009-0952 SecPod +CVE-2009-0953 SecPod +CVE-2009-0954 SecPod +CVE-2009-0955 SecPod +CVE-2009-0956 SecPod +CVE-2009-0957 SecPod From scm-commit at wald.intevation.org Tue Jun 2 15:21:47 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 15:21:47 +0200 (CEST) Subject: [Openvas-commits] r3573 - in trunk/openvas-plugins: . scripts Message-ID: <20090602132147.029051120BC@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 15:21:46 +0200 (Tue, 02 Jun 2009) New Revision: 3573 Modified: trunk/openvas-plugins/ChangeLog trunk/openvas-plugins/scripts/mailreader.nasl trunk/openvas-plugins/scripts/no404.nasl trunk/openvas-plugins/scripts/secpod_freesshd_sftp_remote_dos_vuln_900165.nasl Log: Fresshd updated with smb_nt.incand removed webmirror.nasl from mailreader/no404 scripts. Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 11:32:17 UTC (rev 3572) +++ trunk/openvas-plugins/ChangeLog 2009-06-02 13:21:46 UTC (rev 3573) @@ -1,3 +1,10 @@ +2009-06-02 Chandan S + + * scripts/mailreader.nasl, + scripts/no404.nasl, + scripts/secpod_freesshd_sftp_remote_dos_vuln_900165.nasl: + Freesshd included smb_nt.inc and other 2 removed webmirror.nasl + 2009-06-02 Felix Wolfsteller * scripts/ssh_detect.nasl: Modified: trunk/openvas-plugins/scripts/mailreader.nasl =================================================================== --- trunk/openvas-plugins/scripts/mailreader.nasl 2009-06-02 11:32:17 UTC (rev 3572) +++ trunk/openvas-plugins/scripts/mailreader.nasl 2009-06-02 13:21:46 UTC (rev 3573) @@ -41,9 +41,9 @@ family["english"]="CGI abuses"; script_family(english:family["english"]); - script_dependencie("find_service.nes", "no404.nasl", "webmirror.nasl"); + script_dependencie("find_service.nes", "no404.nasl"); script_require_ports("Services/www", 80); - script_exclude_keys("Settings/disable_cgi_scanning"); + script_exclude_keys("Settings/disable_cgi_scanning"); exit(0); } Modified: trunk/openvas-plugins/scripts/no404.nasl =================================================================== --- trunk/openvas-plugins/scripts/no404.nasl 2009-06-02 11:32:17 UTC (rev 3572) +++ trunk/openvas-plugins/scripts/no404.nasl 2009-06-02 13:21:46 UTC (rev 3573) @@ -43,7 +43,7 @@ script_copyright(english:"This script is Copyright (C) 2000 RD / H D Moore"); family["english"] = "Web Servers"; script_family(english:family["english"]); - script_dependencie("find_service.nes", "httpver.nasl", "http_login.nasl", "webmirror.nasl"); + script_dependencie("find_service.nes", "httpver.nasl", "http_login.nasl"); script_require_ports("Services/www", 80); exit(0); } Modified: trunk/openvas-plugins/scripts/secpod_freesshd_sftp_remote_dos_vuln_900165.nasl =================================================================== --- trunk/openvas-plugins/scripts/secpod_freesshd_sftp_remote_dos_vuln_900165.nasl 2009-06-02 11:32:17 UTC (rev 3572) +++ trunk/openvas-plugins/scripts/secpod_freesshd_sftp_remote_dos_vuln_900165.nasl 2009-06-02 13:21:46 UTC (rev 3573) @@ -68,6 +68,7 @@ } +include("smb_nt.inc"); include("secpod_smb_func.inc"); sshdPort = get_kb_item("Services/ssh"); From scm-commit at wald.intevation.org Tue Jun 2 16:26:43 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 16:26:43 +0200 (CEST) Subject: [Openvas-commits] r3575 - in trunk/openvas-plugins: . scripts Message-ID: <20090602142643.C663713698@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 16:26:42 +0200 (Tue, 02 Jun 2009) New Revision: 3575 Modified: trunk/openvas-plugins/ChangeLog trunk/openvas-plugins/scripts/solaris.inc Log: Bug fixes and KB item names changed Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 14:18:19 UTC (rev 3574) +++ trunk/openvas-plugins/ChangeLog 2009-06-02 14:26:42 UTC (rev 3575) @@ -1,4 +1,8 @@ 2009-06-02 Chandrashekhar B + * scripts/solaris.inc: + KB item names changed as in gather-package-list.nasl and bug fixes + +2009-06-02 Chandrashekhar B * extra/lsc_generator/test/sanity_test.py, extra/lsc_generator/test/unit_test/work/input/solaris_1-21-118919-21-1.html, extra/lsc_generator/test/unit_test/work/input/solaris_main_advisory_10_x86.html, Modified: trunk/openvas-plugins/scripts/solaris.inc =================================================================== --- trunk/openvas-plugins/scripts/solaris.inc 2009-06-02 14:18:19 UTC (rev 3574) +++ trunk/openvas-plugins/scripts/solaris.inc 2009-06-02 14:26:42 UTC (rev 3575) @@ -10,28 +10,28 @@ function patch_installed(showrev, patch) { - local_var v, p,r,patches,spatches; - v = split(patch, sep:"-", keep:0); - patches = egrep(pattern:"^Patch: " + v[0], string:showrev); - if ( ! patches ) return 0; # No patch -# -# there may be more then one patch version be listed, so split up the result -# and do a foreach check. -# - spatches = split(patches, keep:0); - flag = 0; - foreach r (spatches) - { - # Get the revision number of the installed patch - r = ereg_replace(pattern:"Patch: ([0-9]*-[0-9]*) .*", replace:"\1", string:r); - p = split(r, sep:"-", keep:0); - # If the installed patch is newer than or equal to what we expect, consider - # it installed + local_var v, p,r,patches,spatches; + v = split(patch, sep:"-", keep:0); + patches = egrep(pattern:"^Patch: " + v[0], string:showrev); + if ( ! patches ) return 0; # No patch + # + # there may be more then one patch version be listed, so split up the result + # and do a foreach check. + # + spatches = split(patches, keep:0); + foreach r (spatches) + { + # Get the revision number of the installed patch + r = ereg_replace(pattern:"Patch: ([0-9]*-[0-9]*) .*", replace:"\1", string:r); + p = split(r, sep:"-", keep:0); + # If the installed patch is newer than or equal to what we expect, consider + # it installed - if ( int(p[1]) >= int(v[1]) ) - flag = 1; # Patch is installed - } -return flag; + if ( int(p[1]) >= int(v[1]) ){ + return 1; # Patch is installed + } + } + return 0; # Patch is missing } @@ -48,8 +48,15 @@ if ( "_x86" >< release ) release -= "_x86"; - packages = get_kb_item("Host/Solaris/pkginfo"); - showrev = get_kb_item("Host/Solaris/showrev"); + kb_release = get_kb_item("ssh/login/solosversion") - '\n'; + kb_arch = get_kb_item("ssh/login/solhardwaretype") - '\n'; + + if (kb_release != release || kb_arch != arch){ + return 0; + } + + packages = get_kb_item("ssh/login/solpackages"); + showrev = get_kb_item("ssh/login/solpatches"); if ( ! packages || ! showrev || !release || !patch ) return 0; # Look if at least one of the packages installed are affected @@ -68,19 +75,6 @@ # No package is affected - return if ( flag == 0 ) return 0; - - r = split(release, sep:" ", keep:0); - flag = 0; - foreach release (r) - { - if ( egrep(pattern:"^Release: " + release, string:showrev) ) flag ++; - } - - if ( ! flag ) return 0; # Not the right release - - if ( ! egrep(pattern:"^Application architecture: " + arch, string:showrev) ) - return 0; # Wrong architecture (intel vs. sparc) - if ( patch_installed(patch:patch, showrev:showrev) ) return 1; # Installed @@ -89,5 +83,3 @@ return -1; # Not installed } - - From scm-commit at wald.intevation.org Tue Jun 2 17:07:10 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 17:07:10 +0200 (CEST) Subject: [Openvas-commits] r3576 - in trunk/openvas-manager: . src Message-ID: <20090602150710.24A7A1120BC@pyrosoma.intevation.org> Author: mattm Date: 2009-06-02 17:07:09 +0200 (Tue, 02 Jun 2009) New Revision: 3576 Modified: trunk/openvas-manager/ChangeLog trunk/openvas-manager/src/omp.c trunk/openvas-manager/src/ompd.c Log: Move response statuses into attributes. * src/ompd.c (serve_omp): On process_omp_client_input error, write out the rest of the to_client buffer before exiting. Handle the response from the very first process_omp_client_input. * src/omp.c (XML_ERROR_SYNTAX, XML_ERROR_MISSING, XML_ERROR_AUTH_FAILED) (XML_OK, XML_OK_REQUESTED, XML_INTERNAL_ERROR, XML_SERVICE_DOWN): New macros. (omp_xml_handle_start_element, omp_xml_handle_end_element): Convert all status tags to attributes. (process_omp_client_input): Return -4 on XML syntax error. Modified: trunk/openvas-manager/ChangeLog =================================================================== --- trunk/openvas-manager/ChangeLog 2009-06-02 14:26:42 UTC (rev 3575) +++ trunk/openvas-manager/ChangeLog 2009-06-02 15:07:09 UTC (rev 3576) @@ -1,3 +1,18 @@ +2009-06-02 Matthew Mundell + + Move response statuses into attributes. + + * src/ompd.c (serve_omp): On process_omp_client_input error, write out + the rest of the to_client buffer before exiting. Handle the response + from the very first process_omp_client_input. + + * src/omp.c (XML_ERROR_SYNTAX, XML_ERROR_MISSING, XML_ERROR_AUTH_FAILED) + (XML_OK, XML_OK_REQUESTED, XML_INTERNAL_ERROR, XML_SERVICE_DOWN): New + macros. + (omp_xml_handle_start_element, omp_xml_handle_end_element): Convert all + status tags to attributes. + (process_omp_client_input): Return -4 on XML syntax error. + 2009-05-29 Matthew Mundell Make the tests compile and run again. Modified: trunk/openvas-manager/src/omp.c =================================================================== --- trunk/openvas-manager/src/omp.c 2009-06-02 14:26:42 UTC (rev 3575) +++ trunk/openvas-manager/src/omp.c 2009-06-02 15:07:09 UTC (rev 3576) @@ -272,6 +272,16 @@ /* XML parser handlers. */ +#define XML_ERROR_SYNTAX(tag) "<" tag "_response status=\"" STATUS_ERROR_SYNTAX "\"/>" +#define XML_ERROR_MISSING(tag) "<" tag "_response status=\"" STATUS_ERROR_MISSING "\"/>" +#define XML_ERROR_AUTH_FAILED(tag) "<" tag "_response status=\"" STATUS_ERROR_AUTH_FAILED "\"/>" + +#define XML_OK(tag) "<" tag "_response status=\"" STATUS_OK "\"/>" +#define XML_OK_REQUESTED(tag) "<" tag "_response status=\"" STATUS_OK_REQUESTED "\"/>" + +#define XML_INTERNAL_ERROR(tag) "<" tag "_response status=\"" STATUS_INTERNAL_ERROR "\"/>" +#define XML_SERVICE_DOWN(tag) "<" tag "_response status=\"" STATUS_SERVICE_DOWN "\"/>" + /** * @brief Handle the start of an OMP XML element. * @@ -315,9 +325,7 @@ else { // TODO: If one of other commands, STATUS_ERROR_AUTHENTICATE - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("omp"))) { error_send_to_client (error); return; @@ -404,9 +412,7 @@ } else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("omp"))) { error_send_to_client (error); return; @@ -423,9 +429,7 @@ set_client_state (CLIENT_CREDENTIALS); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("authenticate"))) { error_send_to_client (error); return; @@ -446,9 +450,7 @@ set_client_state (CLIENT_CREDENTIALS_PASSWORD); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("authenticate"))) { error_send_to_client (error); return; @@ -467,9 +469,7 @@ set_client_state (CLIENT_DELETE_REPORT_ID); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("delete_report"))) { error_send_to_client (error); return; @@ -487,9 +487,7 @@ set_client_state (CLIENT_DELETE_TASK_TASK_ID); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("delete_task"))) { error_send_to_client (error); return; @@ -504,9 +502,7 @@ case CLIENT_GET_CERTIFICATES: { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("get_certificates"))) { error_send_to_client (error); return; @@ -521,9 +517,7 @@ case CLIENT_GET_DEPENDENCIES: { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("get_dependencies"))) { error_send_to_client (error); return; @@ -538,9 +532,7 @@ case CLIENT_GET_NVT_ALL: { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("get_nvt_all"))) { error_send_to_client (error); return; @@ -555,9 +547,7 @@ case CLIENT_GET_NVT_FEED_CHECKSUM: { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("get_nvt_feed_checksum"))) { error_send_to_client (error); return; @@ -575,9 +565,7 @@ set_client_state (CLIENT_GET_NVT_DETAILS_OID); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("get_nvt_details"))) { error_send_to_client (error); return; @@ -592,9 +580,7 @@ case CLIENT_GET_PREFERENCES: { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("get_preferences"))) { error_send_to_client (error); return; @@ -612,9 +598,7 @@ set_client_state (CLIENT_GET_REPORT_ID); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("get_report_response"))) { error_send_to_client (error); return; @@ -629,9 +613,7 @@ case CLIENT_GET_RULES: { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("get_rules"))) { error_send_to_client (error); return; @@ -646,9 +628,7 @@ case CLIENT_HELP: { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("help"))) { error_send_to_client (error); return; @@ -670,9 +650,7 @@ set_client_state (CLIENT_MODIFY_REPORT_VALUE); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("modify_report"))) { error_send_to_client (error); return; @@ -694,9 +672,7 @@ set_client_state (CLIENT_MODIFY_TASK_VALUE); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("modify_task"))) { error_send_to_client (error); return; @@ -718,9 +694,7 @@ #endif else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("abort_task"))) { error_send_to_client (error); return; @@ -742,9 +716,7 @@ set_client_state (CLIENT_CREATE_TASK_COMMENT); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("create_task"))) { error_send_to_client (error); return; @@ -762,9 +734,7 @@ set_client_state (CLIENT_START_TASK_TASK_ID); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("start_task"))) { error_send_to_client (error); return; @@ -782,9 +752,7 @@ set_client_state (CLIENT_GET_STATUS_TASK_ID); else { - if (send_to_client ("" - "" STATUS_ERROR_SYNTAX "" - "")) + if (send_to_client (XML_ERROR_SYNTAX ("get_status"))) { error_send_to_client (error); return; @@ -1269,11 +1237,7 @@ assert (current_client_task == (task_t) NULL); if (find_task (current_uuid, &task)) - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_MISSING - "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_MISSING ("abort_task")); else if (stop_task (task)) { /* to_server is full. */ @@ -1282,15 +1246,11 @@ abort (); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK_REQUESTED "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_OK_REQUESTED ("abort_task")); free_string_var (¤t_uuid); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_INTERNAL_ERROR "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_SYNTAX ("abort_task")); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_ABORT_TASK_TASK_ID: @@ -1325,21 +1285,13 @@ set_client_state (CLIENT_AUTHENTIC); break; case 1: - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_AUTH_FAILED - "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_AUTH_FAILED ("authenticate")); free_credentials (¤t_credentials); set_client_state (CLIENT_TOP); break; case -1: default: - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_INTERNAL_ERROR - "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("authenticate")); free_credentials (¤t_credentials); set_client_state (CLIENT_TOP); break; @@ -1364,8 +1316,8 @@ case CLIENT_GET_PREFERENCES: if (server.preferences) { - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK ""); + SEND_TO_CLIENT_OR_FAIL (""); if (g_hash_table_find (server.preferences, send_preference, NULL)) { error_send_to_client (error); @@ -1374,17 +1326,15 @@ SEND_TO_CLIENT_OR_FAIL (""); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_SERVICE_DOWN "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_SERVICE_DOWN ("get_preferences")); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_GET_CERTIFICATES: if (server.certificates) { - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK ""); + SEND_TO_CLIENT_OR_FAIL (""); if (certificates_find (server.certificates, send_certificate, NULL)) @@ -1396,9 +1346,7 @@ } else { - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_SERVICE_DOWN "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_SERVICE_DOWN ("get_certificates")); /* \todo TODO Sort out a proactive mechanism for this. */ if (request_certificates ()) { @@ -1414,8 +1362,8 @@ case CLIENT_GET_DEPENDENCIES: if (server.plugins_dependencies) { - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK ""); + SEND_TO_CLIENT_OR_FAIL (""); if (g_hash_table_find (server.plugins_dependencies, send_dependency, NULL)) @@ -1426,17 +1374,15 @@ SEND_TO_CLIENT_OR_FAIL (""); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_SERVICE_DOWN "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_SERVICE_DOWN ("get_dependencies")); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_GET_NVT_ALL: if (server.plugins) { - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK ""); + SEND_TO_CLIENT_OR_FAIL (""); SENDF_TO_CLIENT_OR_FAIL ("%u", nvtis_size (server.plugins)); if (server.plugins_md5) @@ -1455,9 +1401,7 @@ } else { - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_SERVICE_DOWN "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_SERVICE_DOWN ("get_nvt_all")); /* \todo TODO Sort out a cache for this. */ if (request_plugin_list ()) { @@ -1473,41 +1417,39 @@ case CLIENT_GET_NVT_FEED_CHECKSUM: if (server.plugins_md5) { - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK "" + SEND_TO_CLIENT_OR_FAIL ("" "md5"); SEND_TO_CLIENT_OR_FAIL (server.plugins_md5); SEND_TO_CLIENT_OR_FAIL (""); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_SERVICE_DOWN "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_SERVICE_DOWN ("get_nvt_feed_checksum")); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_GET_NVT_DETAILS: if (server.plugins) { - SEND_TO_CLIENT_OR_FAIL (""); if (current_uuid) { nvti_t* plugin = find_nvti (server.plugins, current_uuid); if (plugin) - { - SEND_TO_CLIENT_OR_FAIL ("" STATUS_OK ""); + { + SEND_TO_CLIENT_OR_FAIL (""); send_plugin (plugin->oid, plugin, (gpointer) 1); + SEND_TO_CLIENT_OR_FAIL (""); } else - { - SEND_TO_CLIENT_OR_FAIL ("" - STATUS_ERROR_MISSING - ""); - } + SEND_TO_CLIENT_OR_FAIL + (XML_ERROR_MISSING ("get_nvt_details")); } else { - SENDF_TO_CLIENT_OR_FAIL ("%u", + SENDF_TO_CLIENT_OR_FAIL ("" + "%u", nvtis_size (server.plugins)); if (server.plugins_md5) { @@ -1521,14 +1463,12 @@ error_send_to_client (error); return; } + SEND_TO_CLIENT_OR_FAIL (""); } - SEND_TO_CLIENT_OR_FAIL (""); } else { - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_SERVICE_DOWN "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_SERVICE_DOWN ("get_nvt_details")); /* \todo TODO Sort out a cache for this. */ if (request_plugin_list ()) { @@ -1547,7 +1487,7 @@ case CLIENT_DELETE_REPORT: assert (strncasecmp ("DELETE_REPORT", element_name, 13) == 0); - SEND_TO_CLIENT_OR_FAIL (""); + SEND_TO_CLIENT_OR_FAIL ("" STATUS_OK ""); + SEND_TO_CLIENT_OR_FAIL (STATUS_OK); break; case -1: /* Failed to find associated task. */ case -2: /* Report file missing. */ - SEND_TO_CLIENT_OR_FAIL ("" - STATUS_ERROR_MISSING - ""); + SEND_TO_CLIENT_OR_FAIL (STATUS_ERROR_MISSING); break; case -3: /* Failed to read link. */ case -4: /* Failed to remove report. */ default: free_string_var (¤t_uuid); - SEND_TO_CLIENT_OR_FAIL ("" - STATUS_INTERNAL_ERROR - ""); + SEND_TO_CLIENT_OR_FAIL (STATUS_INTERNAL_ERROR); break; } } else - SEND_TO_CLIENT_OR_FAIL ("" STATUS_INTERNAL_ERROR ""); - SEND_TO_CLIENT_OR_FAIL (""); + SEND_TO_CLIENT_OR_FAIL (STATUS_INTERNAL_ERROR); + SEND_TO_CLIENT_OR_FAIL ("\"/>"); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_DELETE_REPORT_ID: @@ -1613,16 +1549,13 @@ { if (content_error) g_error_free (content_error); - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_MISSING - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_MISSING ("get_report")); } else { gchar* base64_content; - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK "" + SEND_TO_CLIENT_OR_FAIL ("" ""); base64_content = g_base64_encode ((guchar*) content, content_length); @@ -1634,27 +1567,21 @@ return; } g_free (base64_content); - SEND_TO_CLIENT_OR_FAIL (""); + SEND_TO_CLIENT_OR_FAIL ("" + ""); } } else { g_free (name); - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_MISSING - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_MISSING ("get_report")); } } else { free_string_var (¤t_uuid); - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_INTERNAL_ERROR - ""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("get_report")); } - SEND_TO_CLIENT_OR_FAIL (""); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_GET_REPORT_ID: @@ -1666,8 +1593,8 @@ if (server.rules) { int index; - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK ""); + SEND_TO_CLIENT_OR_FAIL (""); for (index = 0; index < server.rules_size; index++) if (send_rule (g_ptr_array_index (server.rules, index))) { @@ -1677,15 +1604,13 @@ SEND_TO_CLIENT_OR_FAIL (""); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_INTERNAL_ERROR "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("get_rules")); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_VERSION: - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK "" + SEND_TO_CLIENT_OR_FAIL ("" "1.0" ""); set_client_state (CLIENT_AUTHENTIC); @@ -1697,11 +1622,7 @@ assert (current_client_task == (task_t) NULL); task_t task; if (find_task (current_uuid, &task)) - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_MISSING - "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_MISSING ("delete_task")); else if (request_delete_task (&task)) { /* to_server is full. */ @@ -1712,15 +1633,11 @@ abort (); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK_REQUESTED "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_OK_REQUESTED ("delete_task")); free_string_var (¤t_uuid); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_INTERNAL_ERROR "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("delete_task")); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_DELETE_TASK_TASK_ID: @@ -1729,8 +1646,7 @@ break; case CLIENT_HELP: - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK ""); + SEND_TO_CLIENT_OR_FAIL (""); SEND_TO_CLIENT_OR_FAIL (help_text); SEND_TO_CLIENT_OR_FAIL (""); set_client_state (CLIENT_AUTHENTIC); @@ -1750,21 +1666,14 @@ switch (ret) { case 0: - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK ""); + SEND_TO_CLIENT_OR_FAIL (XML_OK ("modify_report")); break; case -2: /* Parameter name error. */ - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_SYNTAX - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_SYNTAX ("modify_report")); break; case -3: /* Failed to write to disk. */ default: - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_INTERNAL_ERROR - ""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("modify_report")); break; } } @@ -1773,12 +1682,8 @@ free_string_var (&modify_task_parameter); free_string_var (&modify_task_value); free_string_var (¤t_uuid); - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_INTERNAL_ERROR - ""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("modify_report")); } - SEND_TO_CLIENT_OR_FAIL (""); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_MODIFY_REPORT_PARAMETER: @@ -1800,11 +1705,7 @@ assert (current_client_task == (task_t) NULL); task_t task; if (find_task (current_uuid, &task)) - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_MISSING - "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_MISSING ("modify_task")); else { // FIX check if param,value else respond fail @@ -1817,34 +1718,21 @@ free (modify_task_value); modify_task_value = NULL; if (fail == -4) - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_INTERNAL_ERROR - "" - ""); + SEND_TO_CLIENT_OR_FAIL + (XML_INTERNAL_ERROR ("modify_task")); else - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_SYNTAX - "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_SYNTAX ("modify_task")); } else { modify_task_value = NULL; - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_OK_REQUESTED - "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_OK_REQUESTED ("modify_task")); } } free_string_var (¤t_uuid); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_INTERNAL_ERROR "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("modify_task")); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_MODIFY_TASK_PARAMETER: @@ -1872,14 +1760,12 @@ // eg on err half task could be saved (or saved with base64 file) if (task_uuid (current_client_task, &tsk_uuid)) - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_ERROR_MISSING "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_MISSING ("create_task")); else { gchar* msg; - msg = g_strdup_printf ("" - "" STATUS_OK_CREATED "" + msg = g_strdup_printf ("" "%s" "", tsk_uuid); @@ -1924,11 +1810,7 @@ assert (current_client_task == (task_t) NULL); task_t task; if (find_task (current_uuid, &task)) - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_MISSING - "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_MISSING ("start_task")); else if (start_task (task)) { /* to_server is full. */ @@ -1937,15 +1819,11 @@ abort (); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK_REQUESTED "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_OK_REQUESTED ("start_task")); free_string_var (¤t_uuid); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_INTERNAL_ERROR "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("start_task")); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_START_TASK_TASK_ID: @@ -1959,20 +1837,13 @@ { task_t task; if (find_task (current_uuid, &task)) - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_ERROR_MISSING - ""); + SEND_TO_CLIENT_OR_FAIL (XML_ERROR_MISSING ("get_status")); else { char* tsk_uuid; if (task_uuid (task, &tsk_uuid)) - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_INTERNAL_ERROR - "" - ""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("get_status")); else { int ret; @@ -1981,10 +1852,10 @@ name = task_name (task); response = g_strdup_printf ("" - "" STATUS_OK "" + " status=\"" STATUS_OK "\">" "%s" "%s" - "%s" // FIX again! + "%s" "" "%i" "%i" @@ -2025,8 +1896,8 @@ free_string_var (¤t_uuid); - SEND_TO_CLIENT_OR_FAIL ("" - "" STATUS_OK ""); + SEND_TO_CLIENT_OR_FAIL (""); response = g_strdup_printf ("%u", task_count ()); if (send_to_client (response)) @@ -2077,13 +1948,10 @@ } g_free (line); } + SEND_TO_CLIENT_OR_FAIL (""); } else - SEND_TO_CLIENT_OR_FAIL ("" - "" - STATUS_INTERNAL_ERROR - ""); - SEND_TO_CLIENT_OR_FAIL (""); + SEND_TO_CLIENT_OR_FAIL (XML_INTERNAL_ERROR ("get_status")); set_client_state (CLIENT_AUTHENTIC); break; case CLIENT_GET_STATUS_TASK_ID: @@ -2247,7 +2115,7 @@ * the client in \ref to_client (using \ref send_to_client). * * @return 0 success, -1 error, -2 or -3 too little space in \ref to_client - * or \ref to_server. + * or \ref to_server (respectively), -4 XML syntax error. */ int process_omp_client_input () @@ -2263,8 +2131,10 @@ &error); if (success == FALSE) { + int err; if (error) { + err = -4; if (g_error_matches (error, G_MARKUP_ERROR, G_MARKUP_ERROR_UNKNOWN_ELEMENT)) @@ -2277,13 +2147,17 @@ G_MARKUP_ERROR, G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE)) tracef (" client error: G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE\n"); + else + err = -1; fprintf (stderr, "Failed to parse client XML: %s\n", error->message); g_error_free (error); } - /* In all error cases return -1 to close the connection, because it - would be too hard, if possible at all, to figure out where the - next command starts. */ - return -1; + else + err = -1; + /* In all error cases the caller must cease to call this function as it + * would be too hard, if possible at all, to figure out the position of + * start of the next command. */ + return err; } from_client_end = from_client_start = 0; return 0; Modified: trunk/openvas-manager/src/ompd.c =================================================================== --- trunk/openvas-manager/src/ompd.c 2009-06-02 14:26:42 UTC (rev 3575) +++ trunk/openvas-manager/src/ompd.c 2009-06-02 15:07:09 UTC (rev 3576) @@ -398,13 +398,13 @@ gnutls_certificate_credentials_t* server_credentials, int client_socket, int* server_socket_addr) { - int nfds; + int nfds, ret; uint8_t lastfds; fd_set readfds, exceptfds, writefds; int server_socket = *server_socket_addr; /* True if processing of the client input is waiting for space in the * to_server buffer. */ - short client_input_stalled = 0; + short client_input_stalled; /* True if processing of the server input is waiting for space in the * to_client buffer. */ gboolean server_input_stalled = FALSE; @@ -440,8 +440,36 @@ from_client_end); #endif #endif /* TRACE || LOG */ - // FIX handle client_input_stalled - if (process_omp_client_input ()) return -1; + ret = process_omp_client_input (); + if (ret == 0) + /* Processed all input. */ + client_input_stalled = 0; + else if (ret == -1 || ret == -4) + { + /* Error. Write rest of to_client to client, so that the + * client gets any buffered output and the response to the + * error. */ + write_to_client (client_session); + return -1; + } + else if (ret == -2) + { + /* to_server buffer full. */ + tracef (" client input stalled 0\n"); + client_input_stalled = 1; + } + else if (ret == -3) + { + /* to_client buffer full. */ + tracef (" client input stalled 0\n"); + client_input_stalled = 2; + } + else + { + /* Programming error. */ + assert (0); + client_input_stalled = 0; + } /* Loop handling input from the sockets. * @@ -605,12 +633,14 @@ if (ret == 0) /* Processed all input. */ client_input_stalled = 0; - else if (ret == -1) - /* Error. */ - // FIX might be nice to write rest of to_client to client, so - // that the client gets any buffered output and the response to - // the error - return -1; + else if (ret == -1 || ret == -4) + { + /* Error. Write rest of to_client to client, so that the + * client gets any buffered output and the response to the + * error. */ + write_to_client (client_session); + return -1; + } else if (ret == -2) { /* to_server buffer full. */ @@ -781,8 +811,13 @@ /* Processed all input. */ client_input_stalled = 0; else if (ret == -1) - /* Error. */ - return -1; + { + /* Error. Write rest of to_client to client, so that the + * client gets any buffered output and the response to the + * error. */ + write_to_client (client_session); + return -1; + } else if (ret == -2) { /* to_server buffer full. */ From scm-commit at wald.intevation.org Tue Jun 2 16:18:21 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 16:18:21 +0200 (CEST) Subject: [Openvas-commits] r3574 - in trunk/openvas-plugins: . extra/lsc_generator extra/lsc_generator/common extra/lsc_generator/parser extra/lsc_generator/templates extra/lsc_generator/test extra/lsc_generator/test/unit_test extra/lsc_generator/test/unit_test/work/input extra/lsc_generator/test/unit_test/work/input/Solaris_Patches extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06 Message-ID: <20090602141821.6D04F13459@pyrosoma.intevation.org> Author: chandra Date: 2009-06-02 16:18:19 +0200 (Tue, 02 Jun 2009) New Revision: 3574 Added: trunk/openvas-plugins/extra/lsc_generator/parser/solaris.py trunk/openvas-plugins/extra/lsc_generator/templates/Solaris.template trunk/openvas-plugins/extra/lsc_generator/test/unit_test/test_solaris.py trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/LEGAL_LICENSE.TXT trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/README.119725-06 trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/SUNWljdk/ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_1-21-118919-21-1.html trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_1-21-119725-06-1.html trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_main_advisory_10_x86.html Modified: trunk/openvas-plugins/ChangeLog trunk/openvas-plugins/extra/lsc_generator/LSCGenerator.py trunk/openvas-plugins/extra/lsc_generator/README trunk/openvas-plugins/extra/lsc_generator/common/generate_script.py trunk/openvas-plugins/extra/lsc_generator/common/utils.py trunk/openvas-plugins/extra/lsc_generator/lsc.conf trunk/openvas-plugins/extra/lsc_generator/lsc_unit_test.py trunk/openvas-plugins/extra/lsc_generator/parser/__init__.py trunk/openvas-plugins/extra/lsc_generator/parser/gentoo.py trunk/openvas-plugins/extra/lsc_generator/test/sanity_test.py trunk/openvas-plugins/extra/lsc_generator/test/unit_test/__init__.py trunk/openvas-plugins/extra/lsc_generator/test/unit_test/test_generate_script.py Log: Added Solaris parser and fixed issues in Gentoo parser Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/ChangeLog 2009-06-02 14:18:19 UTC (rev 3574) @@ -1,3 +1,28 @@ +2009-06-02 Chandrashekhar B + * extra/lsc_generator/test/sanity_test.py, + extra/lsc_generator/test/unit_test/work/input/solaris_1-21-118919-21-1.html, + extra/lsc_generator/test/unit_test/work/input/solaris_main_advisory_10_x86.html, + extra/lsc_generator/test/unit_test/work/input/Solaris_Patches, + extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06, + extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/SUNWljdk, + extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/LEGAL_LICENSE.TXT, + extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/README.119725-06, + extra/lsc_generator/test/unit_test/work/input/solaris_1-21-119725-06-1.html, + extra/lsc_generator/test/unit_test/__init__.py, + extra/lsc_generator/test/unit_test/test_solaris.py, + extra/lsc_generator/test/unit_test/test_generate_script.py, + extra/lsc_generator/LSCGenerator.py, + extra/lsc_generator/lsc.conf, + extra/lsc_generator/lsc_unit_test.py, + extra/lsc_generator/common/generate_script.py, + extra/lsc_generator/common/utils.py, + extra/lsc_generator/parser/gentoo.py, + extra/lsc_generator/parser/solaris.py, + extra/lsc_generator/parser/__init__.py, + extra/lsc_generator/README, + extra/lsc_generator/templates/Solaris.template: + Added Solaris Parser and fixed issues in Gentoo parser + 2009-06-02 Chandan S * scripts/mailreader.nasl, Modified: trunk/openvas-plugins/extra/lsc_generator/LSCGenerator.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/LSCGenerator.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/LSCGenerator.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -64,6 +64,7 @@ 'Mandriva' : (mandriva, 'Mandriva'), 'Hpux' : (hp_ux, 'HPUX'), 'Gentoo' : (gentoo, 'Gentoo'), + 'Solaris' : (solaris, 'Solaris'), } Modified: trunk/openvas-plugins/extra/lsc_generator/README =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/README 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/README 2009-06-02 14:18:19 UTC (rev 3574) @@ -17,6 +17,7 @@ - Ubuntu - Mandriva - Gentoo +- Solaris Support for other Operating Systems is underway. This can be achieved by implementing a parser for that particular vendor advisory and interfacing @@ -44,6 +45,7 @@ | |-- redhat.py - RedHat advisory parser | `-- ubuntu.py - Ubunutu advisory parser | `-- gentoo.py - Gentoo advisory parser +| '-- solaris.py - Solaris advisory parser |-- report | |-- __init__.py | `-- mantisreporter.py - Report the tasks in Mantis @@ -56,6 +58,7 @@ | |-- RedHat.template - RedHat NVT skeleton code | `-- Ubuntu.template - Ubuntu NVT skeleton code | `-- Gentoo.template - Gentoo NVT skeleton code +| '-- Solaris.template - Solaris NVT skeleton code `-- test - Unit and sanity testing |-- __init__.py `-- sanity_test.py - Sanity test module @@ -74,6 +77,7 @@ |-- test_suse.py |-- test_ubuntu.py |-- test_utils.py + |-- test_solaris.py |-- test_gentoo.py `-- work - Workspace for unit test |-- input @@ -170,3 +174,7 @@ Revision 1.5: - Parser for all versions of Gentoo + +Revision 1.6 +- Parser for all versions of Solaris +- Fixed issues in Gentoo parser Modified: trunk/openvas-plugins/extra/lsc_generator/common/generate_script.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/common/generate_script.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/common/generate_script.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -221,26 +221,31 @@ packages = parse.Packages[platform] else: if debug: - print "%s Platform not found in %s" %(platform, parse) + print "ERROR: %s Platform not found in %s" %(platform, parse) for pkgs in packages: ver_list = packages[pkgs] ## ver_list should have even number for elements, ## i.e Key Pair "le","1.2" - if len(ver_list)%2 == 1: + if len(ver_list)%2 == 1 and len(ver_list) != 3: if debug: - print "Something wrong in the dict : ", ver_list - continue + print "ERROR: Something wrong in the dict : ", ver_list + return {} package = pkgs.strip() vuln_ver_list = [] un_aff_list = [] ## Create list for vulnerable and unaffected versions + flag = 0 count = 0 for i in ver_list: + if "break" in i: + count = count + 1 + flag = 1 + continue if not re.findall('[0-9.]+', i): - if count == 0: + if not flag: vuln_ver_list.append(str(i + " " + \ ver_list[count + 1])) else: @@ -256,7 +261,7 @@ ## vulnerable version if not(package and vuln_ver_list): if debug: - print "Didn't find all gentoo package "+ \ + print "ERROR: Didn't find all gentoo package "+ \ "information: ", package, vuln_ver_list continue @@ -274,6 +279,76 @@ sys.exit(msg) + def generateSolarisPkgCheck(self, parse, platform, debug = 0): + """ + Generates Solaris PKG verifying code + """ + + try: + gentoo_pkg_code = '' + os = release = arch = patch = '' + packages = {} + + if debug: + print "Generating Solaris Pkg Code..." + + ## Example for parse.Packages {'solaris_5.10_sparc': + ## ['SUNWcnetr', 'SUNWcsl', 'SUNWckr', 'SUNWcsr', 'SUNWhea'], + ## 'solaris_5.9_sparc': ['SUNWcnetr', 'SUNWcsl', 'SUNWckr', + ## 'SUNWcsr', 'SUNWhea']} + + if not platform: + if debug: + print "ERROR: Platform not Found", platform + return '' + + all_fields = platform.split('_') + if len(all_fields) == 3: + release = all_fields[1] + if all_fields[2] == 'x86': + arch = 'i386' + elif all_fields[2] == 'sparc': + arch = 'sparc' + else: + if debug: + print "ERROR: x86/sparch Architecture not found : ", \ + all_fields + return '' + else: + if debug: + print "ERROR: Required Fields not found os=%s, release=%s," \ + " arch=%s" %(os, release, arch) + return '' + + if parse.Packages.has_key(platform): + if len(parse.Packages[platform]) == 2: + packages, patch = parse.Packages[platform] + else: + if debug: + print "ERROR: Packages or Patch not found in ", \ + parse.Packages[platform] + return '' + else: + if debug: + print "ERROR: %s Platform not found in %s" \ + %(platform, parse.Packages) + return '' + + gentoo_pkg_code += """ + +if(solaris_check_patch(release:"%s", arch:"%s", patch:"%s", package:"%s") < 0) +{ + security_hole(0); + exit(0); +}""" % (release, arch, patch, packages) + + return(gentoo_pkg_code) + except Exception, msg: + print "Exception in : GenerateCode -> generateSolarisPkgCheck() "+ \ + "method", msg + sys.exit(msg) + + class GenerateNVTLocal: """ GenerateNVTLocal: NASL code generator based on the template @@ -298,6 +373,9 @@ '___IS_GENTOO_PKG_VULN___' : 'self.ActionObj.generateGentooPkgCheck\ (self.parse, platform, debug)', + '___IS_SOLARIS_PKG_VULN___' : 'self.ActionObj.generateSolarisPkgCheck\ + (self.parse, platform, debug)', + '___IF_RELEASE_CLOSE___' : 'self.ActionObj.generateClose(debug)', } @@ -389,8 +467,12 @@ template = string.replace(template, '__SCRIPT_DESC__', description) - template = string.replace(template, '__CVEIDS__', \ - self.parse.CVEs) + ## Remove CVEIDS line, If CVEs are not present. + if not self.parse.CVEs: + template = re.sub('\s?\s?script_cve_id\("__CVEIDS__"\);.*?\n','', template) + else: + template = string.replace(template, '__CVEIDS__', \ + self.parse.CVEs) template = string.replace(template, '__SCRIPT_IMPACT__', \ self.parse.Impact) Modified: trunk/openvas-plugins/extra/lsc_generator/common/utils.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/common/utils.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/common/utils.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -24,6 +24,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. ############################################################################### +import os import sys import urllib import pickle @@ -202,3 +203,19 @@ formated_data += tmp return formated_data + + +def createDir(path, debug=0): + """ + Create Directory, If not exists + """ + + if not path: + if debug: + print 'Path not passed to _createDir() Function' + return None + + if not os.path.exists(path): + os.mkdir(path) + + return True Modified: trunk/openvas-plugins/extra/lsc_generator/lsc.conf =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/lsc.conf 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/lsc.conf 2009-06-02 14:18:19 UTC (rev 3574) @@ -90,7 +90,7 @@ [common] -generate = Suse , Fedora, Redhat, CentOS, Debian, Ubuntu, Mandriva,HPUX, Gentoo, +generate = Suse , Fedora, Redhat, CentOS, Debian, Ubuntu, Mandriva,HPUX, Gentoo, Solaris, build_path = ./build @@ -102,7 +102,18 @@ openvas_bin_path = openvas-nasl +# Solaris Core Section +[Solaris] +startid = 855000 + +mainurl = http://sunsolve.sun.com/ + +year = 2009 + +template = ./templates/Solaris.template + + # HP-UX Core Section [HPUX] Modified: trunk/openvas-plugins/extra/lsc_generator/lsc_unit_test.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/lsc_unit_test.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/lsc_unit_test.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -5,6 +5,7 @@ from test.unit_test import * ## Create Test Suite +solaris_test_suite = unittest.makeSuite(test_solaris.SolarisParserTestCase ,'test') gentoo_test_suite = unittest.makeSuite(test_gentoo.GentooParserTestCase ,'test') hpux_test_suite = unittest.makeSuite(test_hpux.HPUXParserTestCase ,'test') mandriva_test_suite = unittest.makeSuite(test_mandriva.MandrivaParserTestCase ,'test') @@ -27,7 +28,8 @@ sanity_test_suite, generate_test_suite, mantisreporter_test_suite, lsc_test_suite, fedora_test_suite, redhat_test_suite, centos_test_suite, debian_test_suite, ubuntu_test_suite, - mandriva_test_suite, hpux_test_suite, gentoo_test_suite] + mandriva_test_suite, hpux_test_suite, gentoo_test_suite, + solaris_test_suite] runner = unittest.TextTestRunner() Modified: trunk/openvas-plugins/extra/lsc_generator/parser/__init__.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/parser/__init__.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/parser/__init__.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -75,3 +75,4 @@ import mandriva import hp_ux import gentoo +import solaris Modified: trunk/openvas-plugins/extra/lsc_generator/parser/gentoo.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/parser/gentoo.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/parser/gentoo.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -385,6 +385,9 @@ all_pkgs[pkg].append(ver[0]) elif debug and 'AMD' not in line: print "ERROR: Version not found : ", line + + if "" in line: + all_pkgs[pkg].append("break") continue if debug: Added: trunk/openvas-plugins/extra/lsc_generator/parser/solaris.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/parser/solaris.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/parser/solaris.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -0,0 +1,570 @@ +############################################################################### +# Local Security Check Automation Framework +# +# Authors: +# Veerendra GG +# +# Revision 1.0 +# Date: 2009/06/02 +# +# Copyright: +# Copyright (c) 2009 SecPod , http://www.secpod.org +# +# 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. +############################################################################### + +import re +import os +import sys +import httplib2 +import commands + +from common import utils + + +## Supported Solaris OSes for parsing. + +os_map = { + 'solaris_5.10_x86' : 'http://sunsolve.sun.com/patchRedirnew.do?type=report&item=10_x86_patch_report', + 'solaris_5.10_sparc' : 'http://sunsolve.sun.com/patchRedirnew.do?type=report&item=10_patch_report', + 'solaris_5.9_x86' : 'http://sunsolve.sun.com/patchRedirnew.do?type=report&item=9_x86_patch_report', + 'solaris_5.9_sparc' : 'http://sunsolve.sun.com/patchRedirnew.do?type=report&item=9_patch_report', + 'solaris_5.8_x86' : 'http://sunsolve.sun.com/patchRedirnew.do?type=report&item=8_x86_patch_report', + 'solaris_5.8_sparc' : 'http://sunsolve.sun.com/patchRedirnew.do?type=report&item=8_patch_report', + 'solaris_5.7_x86' : 'http://sunsolve.sun.com/patchRedirnew.do?type=report&item=7_x86_patch_report', + 'solaris_5.7_sparc' : 'http://sunsolve.sun.com/patchRedirnew.do?type=report&item=7_patch_report', +} + +append_url = 'https://www.solaris.com/archives/rhsa-announce/' + +class Parser: + """ + Solaris security advisory parser, parse and populate the global variables + """ + + ## Global parse structure, initializing + AdvID = '' + Description = '' + Packages = {} + CVEs = '' + Name = '' + Summary = '' + Platforms = '' + Product = [] + Html_content = '' + XREF = [] + FileName = '' + total_prod_list = [] + + + def _getMainSolarisAdvPage(self, url, debug=0): + """ + Read Solaris Main Advisory page + """ + + http = httplib2.Http() + + ## Required Headers + headers = {'User-Agent':'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.5) Gecko/2008120121 Firefox/3.0.5', 'Content-Type':'application/x-www-form-urlencoded', 'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'Accept-Language':'en-us,en;q=0.5', 'Accept-Charset':'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'Keep-Alive':'300','Accept-Encoding':'gzip,deflate', 'Connection':'keep-alive'} + + ## Add Cookie into the header + headers['Cookie'] = 'SunSolve_SLA=accept=Y' + + ## Send Get Request and get response, content + response, content = http.request(url, 'GET', '', headers) + + return (response, content) + + + def _getAdvIds(self, data, debug=0): + """ + Get Advisory ID from Solaris Advisory + """ + + adv_list = [] + ref_data = re.findall('(?s)Security Fixes:(.*)security patch is '+ + 'not listed', data) + if ref_data: + ref_data = ref_data[0] + adv_list = re.findall('([0-9]{6}\d?\d?-[0-9]{2}\d?\d?) ', ref_data) + + return adv_list + + + def _getSolarisPatch(self, patch_id, debug=0): + """ + Download and Extract Solaris Patch using wget and unzip commands + """ + + ## Command to download Patches + cmd = "wget --http-user tech.veerendra at gmail.com --http-password \ + Jk6cKX2S --header Cookie:SunSolve_SLA=accept=Y" + + if not patch_id: + if debug: + print "Did not find patch id" + return False + + url = "http://sunsolve.sun.com/pdownload.do?target=%s&method=h" \ + %(patch_id) + if debug: + print "\nDownloading (%s) patch from \n(%s)\n" %(patch_id, url) + print "Started Downloading (%s) patch using (wget)..."%(patch_id) + print "NOTE: Downloading will take time depending on patch size..." + + ## Execute command for download patches + cmd = cmd + " " + url + msg = commands.getoutput(cmd) + + ## Verify the result + if not "200 OK" in msg and "404 Not Found" in msg: + if debug: + print 'ERROR 404: Not Found.' + return False + + if not os.path.exists(patch_id + '.zip'): + if debug: + print "(%s) Patch not downloaded." %(patch_id) + return False + + length = re.findall('\[(\d+)/\d+\]', msg) + if length: + length = length[0] + if debug: + print "Downloaded (%s) patch having (%s) size" \ + %(length, patch_id) + ## Execute command to unzip patches + cmd = 'unzip '+ patch_id + '.zip' + if debug: + print "\nExtracting downloaded patch %s : " %(patch_id + '.zip') + msg = commands.getoutput(cmd) + + if "cannot find or open" in msg: + print "ERROR: ",msg + return False + + ## Remove zipped files + cmd = 'rm -rf ' + patch_id + '.zip' + if debug: + print "Removing zip file %s " %(patch_id + '.zip') + msg = commands.getoutput(cmd) + + return True + + + def fetchHTML(self, year, debug=0): + """ + Retrive Solaris Advisories locally + """ + + try: + all_adv_ids = [] + + ## Iterate over all os and collect all advisory ids into the list + for _os in os_map.keys(): + if debug: + print "\nGetting Advisory ids for (%s) ..."%(_os) + + link = os_map[_os] + ## Get main advisory to collect advisory ids + response, content = self._getMainSolarisAdvPage(link, debug) + if not (response.has_key('status') or \ + response['status'] == '200'): + if debug: + print "ERROR: Din't get a proper response "+ \ + "from %s os " %(_os) + continue + + ## Get Advisory ids from the main page + adv_ids = self._getAdvIds(content, debug) + + if not adv_ids: + if debug: + print "ERROR: Didn't found any Solaris Advisory "+ \ + "ids for (%s) " %_os + continue + + if debug: + print "Found (%s) Advisory ids for (%s) os" \ + %(len(adv_ids), _os) + ## Append all advisory ids + all_adv_ids.extend(adv_ids) + + ## Remove dupicate Advisory ids in the list + all_adv_ids = utils.removeDups(all_adv_ids) + + if not all_adv_ids: + print "ERROR: Advisories ids not found for any of the os" + print "Exiting ..." + sys.exit(0) + + if debug: + print "\nTotal (%s) Advisories found " %(len(all_adv_ids)) + + ## Iterate over all Advisory ids, download the + ## Advisory page and Patch for the same + for adv_id in all_adv_ids: + print "\n###############################################" + adv_url = "http://sunsolve.sun.com/search/document.do?"+ \ + "assetkey=1-21-%s-1" %(adv_id) + + base_name = adv_url.split('=')[-1] + file_name = self.html_cache + "solaris" + '_' + \ + base_name + '.html' + + ## Download Advisory page, if not downloaded + if not os.path.isfile(file_name): + if debug: + print "\nFetching Solaris Advisory..." + \ + os.path.basename(adv_url) + try: + utils.fetchFiles(adv_url, file_name, debug) + except Exception, msg: + print 'ERROR: Error fething the url %s' % msg + + ## Create patch Dir, if not exists + patch_down_path = self.html_cache + '../Solaris_Patches' + if utils.createDir(patch_down_path, debug): + if debug: + print "\nPatches wll be downloaded in (%s) path " \ + %(patch_down_path) + else: + if debug: + print "\nERROR: Error while creating directory..." + print "\nPatches will not be downloaded..." + + ## Check patch is downloaded or not, + ## If not then download + patch_path = patch_down_path + '/' + adv_id + if not os.path.exists(patch_path): + ## Download Patch for Advisory + try: + ## Get working dir and change to patch download path + cwd = os.getcwd() + os.chdir(patch_down_path) + + ## Download path and get back to proper path + val = self._getSolarisPatch(adv_id, debug) + os.chdir(cwd) + if not val: + if debug: + print "ERROR: Error while downloading (%s) "+ \ + "patch " % adv_id + except Exception, msg: + ## Get back to proper path from patch download path + os.chdir(cwd) + if debug: + print "Exception while downloading (%s) patch " \ + % adv_id + print "Exception: ",msg + else: + print "\n%s patch is already downloaded..." %(adv_id) + + print "##############################################################" + + except Exception, msg: + print "Exception in : solaris -> Parser(Class) -> fetchHTML "+ \ + "method()", msg + sys.exit(msg) + + + def _findAll(self, regex): + """ + Returns Matched data + """ + return regex.findall(self.Html_content, re.IGNORECASE) + + + def getCVE(self, debug=0): + """ + Returns CVE list + """ + if debug: + print "\nGetting CVE List..." + + cve_regex = re.compile('CVE-[0-9]+-[0-9]+') + can_regex = re.compile('CAN-[0-9]+-[0-9]+') + + cve_list = self._findAll(cve_regex) + cve_list.extend(self._findAll(can_regex)) + + cve_list = utils.removeDups(cve_list) + + if cve_list: + cve_list = '", "'.join(cve_list) + else: + cve_list = '' + + if debug: + print "CVE List : ", cve_list + + return cve_list + + + def getAdvID(self, debug=0): + """ + Returns Solaris Security Advisory ID + """ + + if debug: + print "\nGetting Advisory ID..." + + adv_id_regex = re.compile('Document ID:.*'+ \ + '(\d\d\d\d\d\d\d?\d?-\d\d\d?).*Title:') + adv_id = self._findAll(adv_id_regex) + + if not adv_id: + return '' + + if debug: + print "Advisory ID : ", adv_id + + return adv_id[0].strip() + + + def getAffectedPackage(self, debug=0): + """ + Returns Affected Packages/RPM's + """ + + package = '' + if debug: + print "\nGetting Affected Packages/RPM List..." + + pkg_regex = re.compile("(.*)") + pkg = self._findAll(pkg_regex) + + if pkg: + pkg = pkg[0].strip() + for i in pkg.split(':'): + i = i.strip() + if 'patch' in i or 'Patch' in i: + i = i.replace('patch','') + i = i.replace('Patch','') + package = i.strip() + break + if not i or "SunOS" in i or "sparc" in i or "x86" in i: + continue + elif i.startswith('#'): + continue + else: + package = i + break + if debug: + print "Affected Packages/RPMS : ", package + + return package + + + def getDescription(self, packages, debug=0): + """ + Returns Vulnerability Description + """ + + if debug: + print "\nGetting Vulnerability Description..." + + description = \ +"""The remote host is missing a patch containing a security fix, + which affects the following component(s): \n %s + For more information please visit the below reference link.""" %(packages) + + return description + + + def getAffectedProduct(self, debug=0): + """ + Returns Affected Product/Platform + """ + prd_list = [] + + ## Check "Sun OS Release" is present in the advisory page + loc = self.Html_content.find('Sun OS Release:') + if loc <= 0: + print "Sun OS Release: string is not present" + return prd_list + + data = self.Html_content[loc:loc+128] + + products = re.findall("Sun OS Release:.*;(\d.*\d)<", data) + if products: + products = products[0].strip().split(' ') + if products: + for i in products: + prd_list.append(i.strip()) + if debug: + print "\nAffected Product is/are : (%s)" %(prd_list) + + ## Don't include Product/Platform, If not in "os_map" Dict + ref_list = [] + for prod in prd_list: + if "x86" in prod: + arch = "x86" + else: + arch = "sparc" + os_ver = prod.split('_')[0] + + prod = 'solaris_' + os_ver + '_' + arch + + ## Check os_map has product + if os_map.has_key(prod): + ref_list.append(prod) + elif debug and prod: + print "\nUPDATE: Not Generating Code for (%s) OS" %(prod) + print "If Needed to generate code, then "+ \ + "add into dict variable os_map in parser" + + if ref_list and debug: + print "\nGenerating Code for (%s) Products " %(ref_list) + + return ref_list + + + def getPackages(self, prod_list, patch_id, debug=0): + """ + Returns OS Package Dictionary + """ + + if debug: + print "\nGetting RPM List..." + + os_pkg_dict = {} + packages = "" + + patch_path = self.html_cache + '../Solaris_Patches/' + patch_id + if not os.path.isdir(patch_path): + if debug: + print "ERROR: %s Patch not downloaded " %(patch_id) + return os_pkg_dict + + list_files = os.listdir(patch_path) + + if debug: + print "List of (%s) files for (%s) Patch " %(list_files, patch_id) + + + exclude_files = ['OEM_NOTES.fjsv', 'patchinfo', 'LEGAL_LICENSE.TXT'] + + for _file in list_files: + _file = _file.strip() + if os.path.isdir(patch_path + '/' + _file) and _file not in exclude_files and not _file.startswith('README'): + packages += _file + " " + + if not packages: + packages = '' + if debug: + print "Either Packages or Patch is not present" + else: + if debug: + print "Packages are : ", packages + + for prod in prod_list: + prod = prod.strip() + packages = packages.strip() + if os_map.has_key(prod): + os_pkg_dict[prod] = [packages, patch_id] + + if debug: + print "\nOS PKG Dict : ", os_pkg_dict + + if not os_pkg_dict: + if debug: + print "\nERROR: No/different OS found ", + + return os_pkg_dict + + + def formatReference(self, main_url, file_name): + """ + Constructs a reference for advisory + """ + if not main_url.endswith('/'): + main_url = main_url + '/' + + main_url = main_url + 'search/document.do?assetkey=' + file_name = file_name.split('_')[-1].strip('.html') + + reference = main_url + file_name + + return reference + + + def parser(self, html_content, debug=0): + """ + Main parser function, builds the parser object + by invoking parse functions + """ + + try: + if debug: + print "Solaris Parser Initiated..." + + self.Html_content = html_content.replace('\r\n', '\n') + + self.CVEs = self.getCVE(debug) + + self.Platforms = self.getAffectedProduct(debug) + if not self.Platforms or self.Platforms == []: + if debug: + print "\nERROR: Required Platform not found..." + return False + + self.AdvID = self.getAdvID(debug) + if not self.AdvID or self.AdvID == '': + if debug: + print "\nERROR: Advisory ID not found..." + return False + + self.Packages = self.getPackages(self.Platforms, self.AdvID, debug) + if not self.Packages or self.Packages == '': + if debug: + print "\nERROR: Required Packages not found..." + return False + + self.Product = self.getAffectedPackage(debug) + if not self.Product or self.Product == '': + if debug: + print "\nERROR: Required Products/Packages not found..." + return False + + self.Description = self.getDescription(self.Product, debug) + if not self.Description or self.Description == '': + if debug: + print "\nERROR: Description not found..." + return False + + + self.Platforms = ",\n ".join(self.Platforms) + + self.Summary = self.Product + + self.Name = self.Product + " " + self.AdvID + + self.Impact = ' ' + + ## Construct File Name + self.FileName = 'solaris_' + self.AdvID.replace('-','_') + + ## Set XREF + self.XREF = ["SUNSolve", self.AdvID] + + if debug: + print "\nAll mandatory attributes are parsed: ", self.AdvID + + return True + + except Exception, msg: + print 'Exception in Parser solaris -> Parser -> parser() '+ \ + 'Method ', msg + sys.exit(msg) Property changes on: trunk/openvas-plugins/extra/lsc_generator/parser/solaris.py ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/extra/lsc_generator/templates/Solaris.template =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/templates/Solaris.template 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/templates/Solaris.template 2009-06-02 14:18:19 UTC (rev 3574) @@ -0,0 +1,67 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for __SCRIPT_NAME__ +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(__SCRIPT_ID__); + script_version("$Revision: 1.0 $"); + script_xref(name: "__XREF_NAME__", value: "__XREF_VALUE__"); + script_cve_id("__CVEIDS__"); + script_name(english: "Solaris Update for __SCRIPT_NAME__"); + desc["english"] = " + + Vulnerability Insight: + __SCRIPT_DESC__ + + Affected Software/OS: + __SCRIPT_PROD__ on __SCRIPT_PLAT__ + + Fix: Please Install the Updated Packages. + + References: + __SCRIPT_REF__ + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of __SCRIPT_PKG__"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +___IS_SOLARIS_PKG_VULN___ Property changes on: trunk/openvas-plugins/extra/lsc_generator/templates/Solaris.template ___________________________________________________________________ Name: svn:executable + * Modified: trunk/openvas-plugins/extra/lsc_generator/test/sanity_test.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/test/sanity_test.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/test/sanity_test.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -68,7 +68,8 @@ openvas_plugin_path + 'pkg-lib-rpm.inc', openvas_plugin_path + 'pkg-lib-deb.inc', openvas_plugin_path + 'pkg-lib-hpux.inc', - openvas_plugin_path + 'pkg-lib-gentoo.inc'] + openvas_plugin_path + 'pkg-lib-gentoo.inc', + openvas_plugin_path + 'solaris.inc'] for i in self.os_list: req_files.append(self.build_path + i.title() + '/*.nasl') Modified: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/__init__.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/test/unit_test/__init__.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/__init__.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -1,3 +1,4 @@ +import test_solaris import test_gentoo import test_hpux import test_mandriva Modified: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/test_generate_script.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/test/unit_test/test_generate_script.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/test_generate_script.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -75,6 +75,48 @@ self.assertEquals(out_put, req_out_put) + def test_generateHPUXPkgCheck(self): + req_out_put = '\n if(ishpuxpkgvuln(pkg:"VRTSodm.ODM-KRN", patch_list:[\'PHCO_38913\', \'PHCO_39132\', \'PHKL_39130\'], rls:"HPUX11.31"))\n {\n security_hole(0);\n exit(0);\n }\n\n if(ishpuxpkgvuln(pkg:"VRTSodm.ODM-RUN", patch_list:[\'PHCO_38913\', \'PHCO_39132\', \'PHKL_39130\'], rls:"HPUX11.31"))\n {\n security_hole(0);\n exit(0);\n }\n\n if(ishpuxpkgvuln(pkg:"VRTSodm.ODM-MAN", patch_list:[\'PHCO_38913\', \'PHCO_39132\', \'PHKL_39130\'], rls:"HPUX11.31"))\n {\n security_hole(0);\n exit(0);\n }\n\n if(ishpuxpkgvuln(pkg:"VRTSvxfs.VXFS-RUN", patch_list:[\'PHCO_38913\', \'PHCO_39132\', \'PHKL_39130\'], rls:"HPUX11.31"))\n {\n security_hole(0);\n exit(0);\n }\n' + + Packages = {'HPUX11.31': ['VRTSodm.ODM-KRN~PHCO_38913, PHCO_39132, PHKL_39130', 'VRTSodm.ODM-RUN~PHCO_38913, PHCO_39132, PHKL_39130', 'VRTSodm.ODM-MAN~PHCO_38913, PHCO_39132, PHKL_39130', 'VRTSvxfs.VXFS-RUN~PHCO_38913, PHCO_39132, PHKL_39130'], 'HPUX11.23': ['VRTSodm.ODM-KRN~PHCO_39027, PHKL_39029', 'VRTSodm.ODM-RUN~PHCO_39027, PHKL_39029', 'VRTSodm.ODM-MAN~PHCO_39027, PHKL_39029', 'VRTSvxfs.VXFS-RUN~PHCO_39027, PHKL_39029', 'VRTSvxfs.VXFS-RUN-PALIB~PHCO_39027, PHKL_39029', 'VRTSvxfs.VXFS-PRG~PHCO_39027, PHKL_39029', 'VRTSodm.ODM-KRN~PHCO_39103, PHCO_39104, PHKL_38795', 'VRTSodm.ODM-RUN~PHCO_39103, PHCO_39104, PHKL_38795', 'VRTSodm.ODM-MAN~PHCO_39103, PHCO_39104, PHKL_38795', 'VRTSvxfs.VXFS-RUN~PHCO_39103, PHCO_39104, PHKL_38795', 'VRTSvxfs.VXFS-RUN-PALIB~PHCO_39103, PHCO_39104, PHKL_38795', 'VRTSvxfs.VXFS-PRG~PHCO_39103, PHCO_39104, PHKL_38795'], 'HPUX11.11': ['VRTSvxfs.VXFS-RUN~PHCO_39124']} + platform = 'HPUX11.31' + setattr(generate_script.GenerateCode, 'Packages', Packages) + out_put = self.generate_obj.generateHPUXPkgCheck(self.generate_obj, platform) + self.assertEquals(out_put, req_out_put) + + + def test_generateGentooPkgCheck(self): + req_out_put = '\n\nif(ispkgvuln(pkg:"app-text/ghostscript-gnu", vulnerable:[\'lt 8.62.0\'], unaffected:[\'ge 8.62.0\']))\n{\n security_hole(0);\n exit(0);\n}\n\nif(ispkgvuln(pkg:"app-text/ghostscript-gpl", vulnerable:[\'lt 8.64-r2\'], unaffected:[\'ge 8.64-r2\']))\n{\n security_hole(0);\n exit(0);\n}\n\nif(ispkgvuln(pkg:"app-text/ghostscript-esp", vulnerable:[\'le 8.15.4-r1\'], unaffected:[\'\']))\n{\n security_hole(0);\n exit(0);\n}' + + Packages = {'All supported architectures': {'app-text/ghostscript-gnu': ['lt', '8.62.0', 'ge', '8.62.0'], 'app-text/ghostscript-gpl': ['lt', '8.64-r2', 'ge', '8.64-r2'], 'app-text/ghostscript-esp': ['le', '8.15.4-r1']}} + platform = 'All supported architectures' + setattr(generate_script.GenerateCode, 'Packages', Packages) + out_put = self.generate_obj.generateGentooPkgCheck(self.generate_obj, platform) + self.assertEquals(out_put, req_out_put) + + + def test_generateSolarisPkgCheck1(self): + req_out_put = '\n\nif(solaris_check_patch(release:"5.10", arch:"sparc", patch:"119725-06", package:"SUNWljdk") < 0)\n{\n security_hole(0);\n exit(0);\n}' + + Packages = {'solaris_5.10_sparc': ['SUNWljdk', '119725-06'], 'solaris_5.8_sparc': ['SUNWljdk', '119725-06'], 'solaris_5.10_x86': ['SUNWljdk', '119725-06'], 'solaris_5.9_x86': ['SUNWljdk', '119725-06'], 'solaris_5.9_sparc': ['SUNWljdk', '119725-06']} + platform = 'solaris_5.10_sparc' + setattr(generate_script.GenerateCode, 'Packages', Packages) + + out_put = self.generate_obj.generateSolarisPkgCheck(self.generate_obj, platform) + self.assertEquals(out_put, req_out_put) + + + def test_generateSolarisPkgCheck2(self): + req_out_put = '\n\nif(solaris_check_patch(release:"5.9", arch:"i386", patch:"119725-06", package:"SUNWljdk") < 0)\n{\n security_hole(0);\n exit(0);\n}' + + Packages = {'solaris_5.10_sparc': ['SUNWljdk', '119725-06'], 'solaris_5.8_sparc': ['SUNWljdk', '119725-06'], 'solaris_5.10_x86': ['SUNWljdk', '119725-06'], 'solaris_5.9_x86': ['SUNWljdk', '119725-06'], 'solaris_5.9_sparc': ['SUNWljdk', '119725-06']} + platform = 'solaris_5.9_x86' + setattr(generate_script.GenerateCode, 'Packages', Packages) + + out_put = self.generate_obj.generateSolarisPkgCheck(self.generate_obj, platform) + self.assertEquals(out_put, req_out_put) + + def test_truncateDescription(self): req_out_put = '\n\n Mozilla Firefox was updated to version 2.0.0.15, fixing various bugs\n including following security bugs.\n\n CVE-2008-2798 CVE-2008-2799 MFSA 2008-21:\n Mozilla developers identified and fixed several stability bugs in the\n browser engine used in Firefox and other Mozilla-based products. Some\n of these crashes showed evidence of memory corruption under certain\n circumstances and we presume that with enough effort at least some\n of these could be exploited to run arbitrary code.\n\n CVE-2008-2800 MFSA 2008-22:\n Mozilla contributor moz_bug_r_a4 submitted a set of vulnerabilities\n which allow scripts from one document to be executed in the context\n of a different document. These vulnerabilities could be used by an\n attacker to violate the same-origin policy and perform an XSS attack.\n\n CVE-2008-2801 MFSA 2008-23:\n Security researcher Collin Jackson reported a series of vulnerabilities\n which allow JavaScript to be injected into signed JARs and executed\n under the context of the JAR\'s signer. This could allow an attacker\n to run JavaScript in a victim\'s browser with the privileges of a\n different website, provided the attacker possesses a JAR signed by\n the other website.\n\n CVE-2008-2802 MFSA 2008-24:\n Mozilla contributor moz_bug_r_a4 reported a vulnerability that\n allowed non-privileged XUL documents to load chrome scripts from\n the fastload file. This could allow an attacker to run arbitrary\n JavaScript code with chrome privileges.\n\n CVE-2008-2803 MFSA 2008-25:\n Mozilla contributor moz_bug_r_a4 reported a vulnerability which allows\n arbitrary JavaScript to be executed with chrome privileges. The\n privilege escalation was possible because JavaScript loaded via\n mozIJSSubScriptLoader.loadSubScript() was no ... \n\n Description truncated, for more information please check the Reference URL' Added: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/test_solaris.py =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/test/unit_test/test_solaris.py 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/test_solaris.py 2009-06-02 14:18:19 UTC (rev 3574) @@ -0,0 +1,162 @@ +############################################################################## +# Local Security Check Automation Framework +# +# Authors: +# Veerendra GG +# +# Revision 1.0 +# Date: 2009/05/29 +# +# Copyright: +# Copyright (c) 2009 SecPod , http://www.secpod.org +# +# 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. +############################################################################### + +import unittest +from parser import solaris + + +class SolarisParserTestCase(unittest.TestCase): + + ## Initial Setup + solaris_parser_obj = solaris.Parser() + + def setUp(self): + ptr = open('./test/unit_test/work/input/solaris_1-21-119725-06-1.html', 'r') + lines = ptr.readlines() + ptr.close + + self.Html_content = "".join(lines) + setattr(self.solaris_parser_obj, 'Html_content', self.Html_content) + + + def test_getCVE(self): + print "\nTesting Solaris Parser Test Suite ..." + req_out_put = 'CVE-2006-3738", "CVE-2006-4343", "CVE-2006-4339", "CVE-2006-2937", "CVE-2006-2940' + + out_put = self.solaris_parser_obj.getCVE() + self.assertEquals(out_put, req_out_put) + + + def test_getAdvID(self): + req_out_put = '119725-06' + + out_put = self.solaris_parser_obj.getAdvID() + self.assertEquals(out_put, req_out_put) + + + def test_getAffectedPackage(self): + req_out_put = 'Sun Java(TM) System LDAP Java Development Kit' + + out_put = self.solaris_parser_obj.getAffectedPackage() + self.assertEquals(out_put, req_out_put) + + + def test_getDescription(self): + req_out_put = "The remote host is missing a patch containing a security fix,\n which affects the following component(s): \n Sun Java(TM) System LDAP Java Development Kit\n For more information please visit the below reference link." + + pkg = 'Sun Java(TM) System LDAP Java Development Kit' + out_put = self.solaris_parser_obj.getDescription(pkg) + self.assertEquals(out_put, req_out_put) + + + def test_getAffectedProduct1(self): + req_out_put = ['solaris_5.8_sparc', 'solaris_5.9_sparc', 'solaris_5.9_x86', 'solaris_5.10_sparc', 'solaris_5.10_x86'] + + out_put = self.solaris_parser_obj.getAffectedProduct() + self.assertEquals(out_put, req_out_put) + + + def test_getAffectedProduct2(self): + req_out_put = ['solaris_5.10_x86'] + ptr = open('./test/unit_test/work/input/solaris_1-21-118919-21-1.html', 'r') + lines = ptr.readlines() + ptr.close + + self.Html_content = "".join(lines) + setattr(self.solaris_parser_obj, 'Html_content', self.Html_content) + + out_put = self.solaris_parser_obj.getAffectedProduct() + self.assertEquals(out_put, req_out_put) + + + def test_getPackages1(self): + req_out_put = {'solaris_5.10_sparc': ['SUNWljdk', '119725-06'], 'solaris_5.8_sparc': ['SUNWljdk', '119725-06'], 'solaris_5.10_x86': ['SUNWljdk', '119725-06'], 'solaris_5.9_x86': ['SUNWljdk', '119725-06'], 'solaris_5.9_sparc': ['SUNWljdk', '119725-06']} + + setattr(self.solaris_parser_obj, 'html_cache', "./test/unit_test/work/input/Solaris/") + prod_list = ['solaris_5.8_sparc', 'solaris_5.9_sparc', 'solaris_5.9_x86', 'solaris_5.10_sparc', 'solaris_5.10_x86'] + patch_id = '119725-06' + out_put = self.solaris_parser_obj.getPackages(prod_list, patch_id) + self.assertEquals(out_put, req_out_put) + + + def test_getPackages2(self): + req_out_put = {} + + ptr = open('./test/unit_test/work/input/glsa-200703-23.html', 'r') + lines = ptr.readlines() + ptr.close + self.Html_content = "".join(lines) + + setattr(self.solaris_parser_obj, 'html_cache', "./test/unit_test/work/input/Solaris/") + prod_list = ['solaris_5.10_x86'] + patch_id = '118919-21' + setattr(self.solaris_parser_obj, 'Html_content', self.Html_content) + + out_put = self.solaris_parser_obj.getPackages(prod_list, patch_id) + self.assertEquals(out_put, req_out_put) + + + def test_formatReference1(self): + req_out_put = 'http://sunsolve.sun.com/search/document.do?assetkey=1-21-119725-06-1' + + main_url = 'http://sunsolve.sun.com/' + file_name = 'solaris_1-21-119725-06-1.html' + out_put = self.solaris_parser_obj.formatReference(main_url, file_name) + self.assertEquals(out_put, req_out_put) + + + def test_formatReference2(self): + req_out_put = 'http://sunsolve.sun.com/search/document.do?assetkey=1-21-118919-21-1' + + main_url = 'http://sunsolve.sun.com' + file_name = 'solaris_1-21-118919-21-1.html' + out_put = self.solaris_parser_obj.formatReference(main_url, file_name) + self.assertEquals(out_put, req_out_put) + + + def test_parser(self): + req_out_put = True + + setattr(self.solaris_parser_obj, 'html_cache', "./test/unit_test/work/input/Solaris/") + out_put = self.solaris_parser_obj.parser(self.Html_content) + self.assertEquals(out_put, req_out_put) + + + def test_getAdvIds(self): + req_out_put = ['118855-36', '118919-21', '119255-65', '119549-13', '119725-06', '119758-14', '119784-10', '119811-05', '119904-02', '120012-14', '120273-25', '120293-02', '120330-02', '120413-09', '120415-23', '120544-14', '120720-02', '120740-05', '120831-06', '121013-02', '121096-02', '121212-02', '121309-16', '121395-03', '121454-02', '122213-32', '122676-02', '122912-15', '123006-07', '123591-10', '124944-01', '124998-01', '125280-05', '125333-05', '125540-06', '125542-04', '125732-04', '126207-04', '126441-01', '126869-03', '127128-11', '128329-01', '128412-01', '136883-02', '136999-05', '137001-03', '137005-04', '137033-01', '137081-01', '137094-01', '137138-09', '137872-02', '138105-01', '138266-01', '138270-02', '138323-02', '138362-01', '138374-02', '138877-01', '139100-02', '139463-02', '139556-08', '140084-01', '140102-01', '140106-01', '140119-06', '140130-06', '140392-02', '140400-01', '140560-01', '140564-01', '141015-01'] + + ptr = open('./test/unit_test/work/input/solaris_main_advisory_10_x86.html', 'r') + lines = ptr.readlines() + ptr.close + + data = "".join(lines) + out_put = self.solaris_parser_obj._getAdvIds(data) + self.assertEquals(out_put, req_out_put) + + +if __name__ == '__main__': + unittest.main() + Property changes on: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/test_solaris.py ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/LEGAL_LICENSE.TXT =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/LEGAL_LICENSE.TXT 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/LEGAL_LICENSE.TXT 2009-06-02 14:18:19 UTC (rev 3574) @@ -0,0 +1,218 @@ +PLEASE READ THE TERMS AND CONDITIONS OF THIS SOFTWARE LICENSE AGREEMENT (THE +"AGREEMENT") CAREFULLY. BY CLICKING THE ACCEPT BUTTON (OR EQUIVALENT), OR BY +DOWNLOADING, INSTALLING OR USING THE SOFTWARE, YOU ACCEPT ALL OF THE TERMS AND +CONDITIONS OF THIS AGREEMENT AS OF THE DATE YOU CLICK SUCH BUTTON, OR DOWNLOAD, +INSTALL OR USE THE SOFTWARE, WHICHEVER IS EARLIER (THE "EFFECTIVE DATE"). IF +YOU DO NOT AGREE TO ALL OF THESE TERMS AND CONDITIONS, YOU SHOULD NOT CLICK ON +THE ACCEPT BUTTON (OR EQUIVALENT) AND YOU SHOULD NOT DOWNLOAD, INSTALL OR USE +THE SOFTWARE. IF YOU DO NOT CLICK ON THE ACCEPT BUTTON (OR EQUIVALENT), YOU +WILL NOT BE ABLE TO ACCESS THE SOFTWARE (INCLUDING PATCHES) AND INFORMATION +AVAILABLE THROUGH THE ACCESS TOOLS DESCRIBED BELOW. + +This Agreement is made by and between Sun Microsystems, Inc. ("Sun") and the +individual or entity accepting the terms and conditions as of the Effective +Date. This Agreement pertains to Software and Information (as defined below) +made available by Sun via any website, tool, technology or other mechanism for +the purposes described herein (collectively, the "Access Tools"). + +1. For all Software and/or other Information which is made available to you + by Sun through the Access Tools and which is covered by a separate + agreement between you and Sun (a "Separate Agreement"), the terms and + conditions of that Separate Agreement shall govern your rights and + obligations as to such Software and/or Information. + +2. For all other Software and Information made available through the Access + Tools, the following terms and conditions shall govern your rights and + obligations as to such Software and/or Information: + A. LICENSE TO USE. Subject to and conditioned upon your compliance with + the restrictions and obligations of this Agreement, including but not + limited to Section 2.B: + a. Sun grants you a non-exclusive and nontransferable license to the + software made available via the Access Tools and related + documentation made available by Sun, including without limitation + patches and updates (collectively, "Software") for your own internal + use only; and + b. Sun grants you a non-exclusive and nontransferable license to + information other than Software provided or made available by Sun via + the Access Tools, including without limitation release notes, read-me + files, and patch number designations (collectively, "Information") + for your own internal use only. + B. RESTRICTIONS. (a) The Software and Information made available under this + Agreement are licensed, not sold, to you by Sun. Sun reserves all rights + not expressly granted hereunder. (b) You may make a single archival copy + of Software and Information to the extent permitted by law. You may not + otherwise copy the Software or Information, or modify or distribute all + or any portion of the Software or Information. However, if the Sun + documentation accompanying Software lists specific portions of Software, + such as header files, class libraries, reference source code, and/or + redistributable files, that may be handled differently, you may use such + specific portions of the Software only as provided in the applicable Sun + documentation. (c) You may not rent, lease, lend or encumber Software or + Information, or use the Software or Information in any manner to provide + time-share or service bureau services. (d) The scope of your license + does not include any right, express or implied, (i) to access, copy, + distribute, display or use the Software or Information to provide + diagnostic, maintenance, repair or technical support services on behalf + of any third party, without Sun's prior written authorization, or (ii) + for any third party to access, copy, distribute, display or use the + Software or Information to provide diagnostic, maintenance, repair or + technical support services on your behalf, without Sun's prior written + authorization. (e) You may not decompile, disassemble, or + reverse-engineer Software except to the extent otherwise permitted by + law. (f) You may not publish or provide the results of any benchmark or + comparison tests run on Software to any third party without the prior + written consent of Sun. (g) Software and Information are the + confidential information of Sun. The scope of your license does not + include any right, express or implied, to do any of the following + without Sun's prior written authorization: (i) disclose the Software or + Information to any third party for your direct or indirect commercial + gain or advantage, (ii) access, copy, distribute, display or use the + Software or Information in any way to provide diagnostic, maintenance, + repair or technical support services for Sun software or Sun hardware on + behalf of any third party for your direct or indirect commercial gain or + advantage, or (iii) for any third party to access, copy, distribute, + display or use the Software or Information to provide diagnostic, + maintenance, repair or technical support services for Sun software or + Sun hardware on your behalf for such party's direct or indirect + commercial gain or advantage. The Software and Information are + copyrighted by Sun. (h) Unless otherwise specified, if Software is + delivered with embedded or bundled software that enables functionality + of Software, you may not use such embedded/bundled software on a + stand-alone basis or use any portion of such embedded/bundled software + to interoperate with any program(s) other than Software. (i) Software + may contain programs that perform automated collection of system data + and/or automated software updating services. System data collected + through such programs may be used by Sun, its subcontractors, and its + service delivery partners for the purpose of providing you with remote + system services and/or improving Sun's software and systems. + (j) Software and Information are not designed, licensed or intended for + use in the design, construction, operation or maintenance of any nuclear + facility and Sun and its licensors disclaim any express or implied + warranty of fitness for such uses. (k) No right, title or interest in or + to any trademark, service mark, logo or trade name of Sun or its + licensors is granted under this Agreement. (l) Your license to use the + Software hereunder is conditioned upon your having a valid license to + use any underlying Sun software to which the Software pertains. For + example, in the case of patches and updates for the Solaris OS, you must + have a valid license to use the Solaris OS in order to use the related + patches and updates provided hereunder. + + C. DISCLAIMER OF WARRANTY. THE SOFTWARE AND INFORMATION ARE PROVIDED "AS + IS" AND WITHOUT WARRANTY OF ANY KIND. TO THE FULLEST EXTENT PERMITTED + BY LAW, ALL EXPRESS AND IMPLIED CONDITIONS, REPRESENTATIONS AND + WARRANTIES, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTY OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT + ARE DISCLAIMED, EXCEPT TO THE EXTENT THESE DISCLAIMERS ARE HELD TO BE + LEGALLY INVALID. + + D. LIMITATION OF LIABILITY. TO THE FULLEST EXTENT PERMITTED BY LAW, IN NO + EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT + OR DATA, OR FOR ANY DIRECT, SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL + OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF + LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE + SOFTWARE AND/OR THE INFORMATION EVEN IF SUN HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES AND WHETHER OR NOT SUCH DAMAGES ARE + FORESEEABLE. IN NO EVENT WILL SUN'S LIABILITY TO YOU, WHETHER IN + CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, EXCEED THE AMOUNT, + IF ANY, PAID BY YOU FOR THE SOFTWARE AND INFORMATION UNDER THIS + AGREEMENT. THE FOREGOING LIMITATIONS WILL APPLY EVEN IF THE ABOVE + STATED WARRANTY FAILS OF ITS ESSENTIAL PURPOSE. + + E. EXPORT REGULATIONS. All Software, Information, documents, technical + data, and any other information made available or delivered to you under + this Agreement are subject to US export control laws and may be subject + to export or import regulations in other countries. You agree to comply + strictly with all such laws and regulations and acknowledge that you + have the responsibility to obtain such licenses to export, re-export, + or import as may be required after obtained by or delivered to you. + + F. U.S. GOVERNMENT RESTRICTED RIGHTS. If Software or Information is being + acquired by or on behalf of the U.S. Government or by a U.S. Government + prime contractor or subcontractor (at any tier), then the Government's + rights in Software and Information will be only as set forth in this + Agreement; this is in accordance with 48 C.F.R. 227.7202-4 or successor + regulation (for Department of Defense (DOD) acquisitions) and with 48 + CFR 2.101 and 12.212 or successor regulation (for non-DOD acquisitions). + + G. RECORDS AND AUDIT. During the term of this Agreement and for a period + of three (3) years thereafter, you agree to keep proper records and + documentation of your compliance with this Agreement. Upon five (5) + business days' notice, you shall permit an independent accounting firm + selected by Sun to examine and inspect, at your facility and during + normal business hours, such records and documentation for the purpose of + determining your compliance with the terms and conditions of this + Agreement, at Sun's expense. Sun may exercise its audit right pursuant + to this section once per calendar year; provided, however that if Sun + discovers a material default of your obligations pursuant to this + Agreement during an audit, then Sun may exercise its audit right every + three (3) months, until such time as the default is corrected. The + remedies provided in this section in the event of Sun's discovery of + any breach by you of this Agreement are in addition to all other rights + and remedies Sun may have with respect to such breach under this + Agreement, at law or in equity. + +3. TERMS OF USE. You confirm that you have read and understand the terms of + use located at the bottom of each Sun webpage ("Terms of Use") and that you + agree to the Terms of Use. + +4. ORDER OF PRECEDENCE. In the event of any conflict between the terms and + conditions of this Agreement, any Separate Agreement, and the Terms of Use, + the order of precedence shall be as follows: first, any Separate Agreement; + second, this Agreement; and third, the Terms of Use. Whether a conflict + exists between the terms and conditions of the aforementioned agreements + shall be determined by considering the text of the contract provisions, + their context and intended scope, and the subject matter of the agreements. + +5. AUTHORITY. If you are accepting this Agreement on behalf of a company or + other entity, you represent that you are authorized to bind the company or + entity to this Agreement. You further represent that you are of majority + age and otherwise competent to enter into contracts. + +6. GOVERNING LAW. Any action related to this Agreement will be governed by + California law and controlling U.S. federal law. No choice of law rules of + any jurisdiction will apply. + +7. JURISDICTION; VENUE. The parties hereby exclusively and irrevocably submit + to, and waive any objection against, the personal jurisdiction of the + United States District Court for the Northern District of California, and + the state courts of the State of California located in the County of Santa + Clara. + +8. SEVERABILITY. If any provision of this Agreement is held to be + unenforceable, this Agreement will remain in effect with the provision + omitted, unless omission would frustrate the intent of the parties, in + which case this Agreement will immediately terminate. + +9. TERMINATION. This Agreement is effective until terminated. You may + terminate this Agreement at any time by destroying all copies of Software + and Information. This Agreement will terminate immediately without notice + from Sun if you fail to comply with any provision of this Agreement. Sun + may also terminate this Agreement at any time with written notice to you. + Upon termination, you must destroy all copies of Software and Information. + +10. NO AGENCY. This Agreement does not create any partnership, franchise, + joint venture, agency, or fiduciary relationship. Neither party may bind + the other party or act in a manner which expresses or implies a + relationship other than that of independent contractor. + +11. INTEGRATION. This Agreement is the entire agreement between you and Sun + relating to its subject matter. It supersedes all prior and contemporaneous + oral and written communications, proposals, representations and warranties + and prevails over any conflicting or additional terms of any quote, order, + acknowledgment, or other communication between the parties relating to its + subject matter during the term of this Agreement. No modification of this + Agreement will be binding, unless in writing and signed by an authorized + representative of each party. You may not assign this Agreement to any + third party without Sun's prior written consent. + +PLEASE READ THE TERMS AND CONDITIONS OF THIS SOFTWARE LICENSE AGREEMENT (THE +"AGREEMENT") CAREFULLY. BY CLICKING THE ACCEPT BUTTON (OR EQUIVALENT), OR BY +DOWNLOADING, INSTALLING OR USING THE SOFTWARE, YOU ACCEPT ALL OF THE TERMS AND +CONDITIONS OF THIS AGREEMENT AS OF THE DATE YOU CLICK SUCH BUTTON, OR DOWNLOAD, +INSTALL OR USE THE SOFTWARE, WHICHEVER IS EARLIER (THE "EFFECTIVE DATE"). IF +YOU DO NOT AGREE TO ALL OF THESE TERMS AND CONDITIONS, YOU SHOULD NOT CLICK ON +THE ACCEPT BUTTON (OR EQUIVALENT) AND YOU SHOULD NOT DOWNLOAD, INSTALL OR USE +THE SOFTWARE. IF YOU DO NOT CLICK ON THE ACCEPT BUTTON (OR EQUIVALENT), YOU +WILL NOT BE ABLE TO ACCESS THE SOFTWARE (INCLUDING PATCHES) AND INFORMATION +AVAILABLE THROUGH THE ACCESS TOOLS DESCRIBED BELOW. + Added: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/README.119725-06 =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/README.119725-06 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/Solaris_Patches/119725-06/README.119725-06 2009-06-02 14:18:19 UTC (rev 3574) @@ -0,0 +1,96 @@ +Patch-ID# 119725-06 + +NOTE: +*********************************************************************** +READ THE TERMS OF THE AGREEMENT ("AGREEMENT") IN THE LEGAL_LICENSE.TXT +FILE CAREFULLY BEFORE USING THIS SOFTWARE. BY USING THE SOFTWARE, YOU +AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE +TERMS, PROMPTLY DESTROY THE UNUSED SOFTWARE. +*********************************************************************** + +Keywords: ldap java development kit 4.21 security +Synopsis: SunOS : Sun Java(TM) System LDAP Java Development Kit patch +Date: Sep/19/2008 + + +Install Requirements: NA + +Solaris Release: 8 9 9_x86 10 10_x86 + +SunOS Release: 5.8 5.9 5.9_x86 5.10 5.10_x86 + +Unbundled Product: + +Unbundled Release: + +Xref: + +Topic: + +Relevant Architectures: all + +BugId's fixed with this patch: 6268213 6294799 6402167 6538128 6711620 6731145 + +Changes incorporated in this version: 6731145 + +Patches accumulated and obsoleted by this patch: + +Patches which conflict with this patch: + +Patches required with this patch: + +Obsoleted by: + +Files included with this patch: + +/usr/share/lib/ldapjdk.jar + +Problem Description: + +6731145 Failures occurring with ldapjdk 4.20 & persistent searches enabled on AM 7.0 p3 + +(from 119725-05) + +6711620 LDAPJDK returns the stale data to the client, and possibly causes password mismatches in AM +6538128 memory leak in ldapjdk + +(from 119725-04) + +6402167 LDAP JDK 4.18 cause LDAP client/DS stalling, hung, unexpected connection closes + +(from 119725-03) + +6268213 Reconnections fail with load balancers. +A recent executive alert was raised with the University of Nijmegen concerning Communications Express. +In situations where the customer was expecting reconnections to occur, java exceptions were thrown instead. + +6294799 JES4_07: Java exception error happens in stop DS server from console in ja locale +There was a problem in the ErrorCodes_ja.props file. +One of the unicode characters was improperly formatted. + +Patch Installation Instructions: +-------------------------------- + +For Solaris 7-9 releases, refer to the man pages for instructions +on using 'patchadd' and 'patchrm' scripts provided with Solaris. +Any other special or non-generic installation instructions should be +described below as special instructions. The following example +installs a patch to a standalone machine: + + example# patchadd /var/spool/patch/104945-02 + +The following example removes a patch from a standalone system: + + example# patchrm 104945-02 + +For additional examples please see the appropriate man pages. + +Special Install Instructions: +----------------------------- + + + +README -- Last modified date: August 07, 2008 + +README -- Last modified date: Friday, September 19, 2008 + Added: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_1-21-118919-21-1.html =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_1-21-118919-21-1.html 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_1-21-118919-21-1.html 2009-06-02 14:18:19 UTC (rev 3574) @@ -0,0 +1,788 @@ + + + + + + + + #118919-21: SunOS 5.10_x86: Solaris Crypto Framework patch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+Patches & Updates +
Deploy and monitor updates to all of your systems through Sun from anywhere you have an Internet connection.
Start today with Knowledge-based software update services for Solaris and Linux.
Please review changes to Patch Access + +
+
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + + + + + + +
+ [Printer-Friendly Page]
+
+ Patches: + + + + + + + + + + + + + + + + + + + + + + + + +
Download Patch (1356389 bytes): + HTTP  +
Download Signed Patch (1361058 bytes): + HTTP  +
+ Signed Patch Documentation  + + Patch Finder +
+ + + +
+ + + + +
+
+ +
+
+
Document Audience:PUBLIC
Document ID:118919-21
Title:SunOS 5.10_x86: Solaris Crypto Framework patch
Copyright Notice:Copyright © 2008 Sun Microsystems, Inc. All Rights Reserved
Update Date:Mon Feb 05 03:54:00 MST 2007
See Patch Revision History

Status: RELEASED
Patch Id: 118919-21
***********************************************************************
+READ THE TERMS OF THE AGREEMENT ("AGREEMENT") IN THE LEGAL_LICENSE.TXT
+FILE CAREFULLY BEFORE USING THIS SOFTWARE. BY USING THE SOFTWARE, YOU
+AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE
+TERMS, PROMPTLY DESTROY THE UNUSED SOFTWARE.
+***********************************************************************
Keywords: security libpkcs11 metaslot mars aes ulmaxrwsessioncount crypto
Summary: SunOS 5.10_x86: Solaris Crypto Framework patch
Date:  Feb/05/2007
Installation Requirements:
Reboot immediately after patch is installed                      
+                      Install in Single User Mode
Solaris Release: 10_x86
Sun OS Release: 5.10_x86
Unbundled Product: 
Unbundled Release: 
Xref: This patch available for SPARC as patch 118918
Topic: 
SunOS 5.10_x86: Solaris Crypto Framework patch
Relevant Architecture: i386
BugId's fixed with this patch:

4691624 4721729 4920408 4926742 5039273 5059459 5059461 5067502 5072858 5100567 6181926 6192431 6195428 6195934 6197268 6197284 6198116 6199119 6200215 6204887 6211857 6215509 6215816 6216772 6217866 6220814 6222467 6223863 6223866 6223869 6228384 6231739 6231978 6250168 6250963 6252894 6253484 6262344 6264344 6264379 6271754 6274680 6276483 6276609 6278459 6280574 6286372 6287425 6288840 6296920 6314217 6331488 6332420 6332630 6336131 6338653 6342066 6342468 6345493 6347073 6352877 6355571 6355597 6357426 6359179 6360218 6363872 6368332 6372169 6372587 6376993 6399680 6401115 6405871 6408419 6439285 6474874 6480958 6484163

Changes incorporated in this version:

6474874 6484163

Patches accumulated and obsoleted by this patch:

118917-03 119013-03 121283-02 121285-02 121293-01 121787-01

Patches which conflict with this patch: 

Required Patches:

Obsoleted by:
  + +
Files Included in this Patch: 
/etc/crypto/kcf.conf
+/etc/crypto/pkcs11.conf
+/etc/inet/ipsecalgs
+/kernel/crypto/aes
+/kernel/crypto/amd64/aes
+/kernel/crypto/amd64/arcfour
+/kernel/crypto/amd64/blowfish
+/kernel/crypto/amd64/des
+/kernel/crypto/amd64/md5
+/kernel/crypto/amd64/rsa
+/kernel/crypto/amd64/sha1
+/kernel/crypto/amd64/sha2
+/kernel/crypto/amd64/swrand
+/kernel/crypto/arcfour
+/kernel/crypto/blowfish
+/kernel/crypto/des
+/kernel/crypto/md5
+/kernel/crypto/rsa
+/kernel/crypto/sha1
+/kernel/crypto/sha2
+/kernel/crypto/swrand
+/kernel/drv/amd64/crypto
+/kernel/drv/crypto
+/kernel/misc/amd64/des
+/kernel/misc/amd64/kcf
+/kernel/misc/amd64/md5
+/kernel/misc/amd64/sha1
+/kernel/misc/amd64/sha2
+/kernel/misc/des
+/kernel/misc/kcf
+/kernel/misc/md5
+/kernel/misc/sha1
+/kernel/misc/sha2
+/lib/amd64/libmd5.so.1
+/lib/libmd5.so.1
+/usr/bin/digest
+/usr/bin/mac
+/usr/bin/pktool
+/usr/include/security/pkcs11t.h
+/usr/lib/amd64/libcryptoutil.so.1
+/usr/lib/amd64/libpkcs11.so.1
+/usr/lib/libcryptoutil.so.1
+/usr/lib/libpkcs11.so.1
+/usr/lib/security/amd64/pkcs11_kernel.so.1
+/usr/lib/security/amd64/pkcs11_softtoken.so.1
+/usr/lib/security/pkcs11_kernel.so.1
+/usr/lib/security/pkcs11_softtoken.so.1
+/usr/sbin/cryptoadm
Problem Description: 
6474874 cryptoadm(1M) silently re-enables random number operations
+6484163 memory leak in get_dsa_public_key
+ 
+(from 118919-20)
+ 
+6480958 "Keystore version failure" warning message should be moved to LOG_DEBUG
+ 
+(from 118919-19)
+ 
+6271754 pkcs11_softtoken too aggressive in looking for token data files
+ 
+(from 118919-18)
+ 
+6192431 C_GetAttribute value with CKA_KEY_TYPE attribute returns 8 bytes in 32-bit mode
+6439285 kernel des3 fails to return corrected key when all 3 parts of the key are identical
+ 
+(from 118919-17)
+ 
+6399680 logical provider selects busy member
+6363872 AES counter mode increments wrong counter bits on i386
+ 
+(from 118919-16)
+ 
+6401115 118919-13 missing i.kcfconfbase CAS
+6408419 i.ipsecalgsbase CAS missing in 118918-14 & 118919-12
+
+6405871 (rework) patch 118918-15 delivers 'f' objects previously delivered in 119012-03
+6342468 patchrm 118918-03 complains about failed to parse /etc/crypto/pkcs11.conf
+ 
+(from 118919-15)
+ 
+6405871 patch 118918-15 delivers 'f' objects previously delivered in 119012-03
+ 
+(from 118919-14)
+ 
+6338653 integrate ZFS
+ 
+(from 118919-13)
+ 
+6296920 IPsec 3DES can't be used in two-key mode
+ 
+(from 118919-12)
+ 
+        This revision accumulates S10U2 feature point patches
+        121787-01, 121293-01, 121285-02 and 121283-02.
+ 
+(from 118919-11)
+ 
+6276483 libpkcs11 pthread_atfork() code can cause child process to hang
+6345493 fork(2) handling fixes from 6276483 needs further work in pkcs11_softtoken
+6360218 uprev for patches that do not manually preserve the 'e' prototype file attribute
+6359179 i.script (pkgproto cmd) - is not "e" file friendly (synopsis modified)
+ 
+(from 118919-10)
+ 
+6376993 x86 patch T118844-29 is missing an object causing functional failure
+ 
+(from 118919-09)
+ 
+5039273 failure in crypto_verify() when using a bignum with value 0 for CKM_RSA_X_509
+6264344 remove gratuitous bzero() calls from SHA1Final() and MD5Final()
+6286372 kernel SHA1Update uses global variable making it non-reentrant
+6357426 increase rndmag_threshold and rndbuf_len default values
+ 
+(from 118919-08)
+ 
+6274680 Metaslot on Niagara (UltraSPARC T1) suddenly becomes very slow at high load
+ 
+(from 118919-07)
+ 
+6264379 Metaslot caused 20% performance degradation in crypto operations
+6250963 Metaslot doesn't perform well when there are many slots
+6276609 memory leak in meta_GetMechanismInfo
+6280574 pk11keymgmt_test dumps core
+6262344 Metaslot crashes in call to C_UnwrapKey during generation
+6252894 BER routines in LDAP library don't work for 64 bit
+ 
+(from 118919-06)
+ 
+6222467 system calls from C_Initialize() get interrupted
+ 
+(from 118919-05)
+ 
+4926742 CKM_DH_PKCS_DERIVE fails if derived secret is shorter than prime
+6215816 C_FindObjectsInit fails when token isn't present
+6220814 C_DigestKey failure causes C_DestroyObject being hung
+ 
+(from 118919-04)
+ 
+6217866 S1WS sometimes drops SSL connections
+6223866 C_SignInit() sometimes doesn't work using a generated key
+6223869 Metaslot trying to create key with bogus data
+6223863 Metaslot needs to return CK_EFFECTIVELY_INFINITE in token info
+6231978 Apache/mod_ssl fails SSL connections when Metaslot is present with SCA 1000
+ 
+(from 118919-03)
+ 
+        This revision accumulates S10U1 feature point patch 118917-03.
+ 
+(from 118919-02)
+ 
+6228384 cryptoadm gettext for usage too simplistic
+6231739 cryptoadm bugfix lost "metaslot" usage keywords
+ 
+(from 118919-01)
+ 
+4691624 libpkcs11: uCF meta slot management
+6199119 pk11object test program core dumps with metaslot+pkcs11_kernel+Deimos configured
+6215509 fix for 4691624 introduced a lock violation
+ 
+(from 118917-03)
+ 
+        Uprev due to the intersection between Feature and Generic gates.
+ 
+(from 118917-02)
+ 
+6197284 implement C_UnwrapKey(<secret keys>) with decrypt/create_object when needed in pkcs11_kernel
+6197268 pkcs11_kernel shouldn't reject C_GetAttributeValue() for a secret key's CKA_VALUE_LEN attr
+6204887 SEGV in process_found_objects()
+6195934 pkcs11_kernel C_DecryptInit() can return with the object_mutex still held
+ 
+(from 118917-01)
+ 
+4691624 libpkcs11: uCF meta slot management
+6199119 pk11object test program core dumps with metaslot+pkcs11_kernel+Deimos configured
+6215509 fix for 4691624 introduced a lock violation
+ 
+(from 121283-02)
+ 
+4721729 support AES Counter mode for encryption
+6253484 support mechanisms with complex mech_param structures across the EF stack
+6314217 hide underlying providers of logical providers
+ 
+(from 121283-01)
+ 
+4920408 PKCS#11 v2.20 support for the Crypto Framework
+ 
+(from 121285-02)
+ 
+6332630 chassis serial number support for Seattle/Boston
+6342066 add Boston and Seattle support to Solaris
+6372587 pkcs11_softtoken should use getpwuid_r(3C) to avoid overwriting thread-specific data
+6372169 blowfish can read past mblk and panic in cbc mode
+6368332 libpkcs11 should report that it is v2.20 not v2.11
+ 
+(from 121285-01)
+ 
+4920408 PKCS#11 v2.20 support for the Crypto Framework
+6181926 support SHA256, SHA384, SHA512 in kernel
+6336131 CKM_TLS_PRF support
+6287425 residual bzero's in hmac part of sha2
+6331488 OID with NO parameter for RSA sigs using SHA-1 missing from softtoken
+6347073 kcf missing some rsa mechs
+6198116 dprov in amd64 mode fails when interfacing with 32bit pk11objectkernel test
+5067502 dprov no longer generating correct key sizes for some mechanisms
+ 
+(from 121293-01)
+ 
+5059459 provide utility to export-to-PKCS#12-file from softtoken
+5059461 pktool(1) needs subcommands to list and delete objects in softtoken
+6216772 update pktool(1) list/delete subcommands
+6278459 add "tokens" subcommand to pktool(1)
+6288840 pktool(1) alternate token support
+6332420 change pktool CLI to use attr=value format
+ 
+(from 121787-01)
+ 
+4721729 support AES Counter mode for encryption
+6355571 fix for 6352877 broke the export source build
+6355597 fix for 6352877 broke punchin
+6352877 ckpi_004 - CKM_AES_ECB mechanism test failing with lots of Crypto error 29 messages
+ 
+(from 119013-03)
+ 
+5072858 cryptoadm disable does not work as expected when logical provider slot is involved
+6250168 assertion failure when second provider has function group flags in different class
+5100567 add logical provider assertion from crypto_provider_notification()
+ 
+(from 119013-02)
+ 
+6222467 system calls from C_Initialize() get interrupted
+6195428 "Slot Info is NULL for vca0" error when running SUNvts vcatest on E15K
+6211857 driver panics when kcf_free_context() is called
+ 
+(from 119013-01)
+ 
+6200215 ulMaxRwSessionCount says CK_UNAVAILABLE_INFORMATION
Revision History: 

118919-12 118919-16 118919-05 118919-02 118919-20 118919-19 119013-03 118919-08 118919-10 118919-18 118919-03 118919-07 118919-11 118919-06 118919-17

Patch Installation Instructions: 
--------------------------------
+ 
+For Solaris 2.0-2.6 releases, refer to the Install.info file and/or
+the README within the patch for instructions on using the generic
+'installpatch' and 'backoutpatch' scripts provided with each patch.
+ 
+For Solaris 7-10 releases, refer to the man pages for instructions
+on using 'patchadd' and 'patchrm' scripts provided with Solaris.
+Any other special or non-generic installation instructions should be
+described below as special instructions.  The following example
+installs a patch to a standalone machine:
+ 
+       example# patchadd /var/spool/patch/104945-02
+ 
+The following example removes a patch from a standalone system:
+ 
+       example# patchrm 104945-02
+ 
+For additional examples please see the appropriate man pages.
Special Install Instructions: 
-----------------------------
+ 
+NOTE 1:  Reboot system after patch installation is complete.
+ 
+NOTE 2:  If you're planning to set up Zones on this system, please make
+         sure to install the following patch which fixes bugid 6216195
+         (zone installation confused by UPDATE=yes in pkginfo(4) file):
+ 
+         119016-01 (or greater)  Install and Patch Utilities Patch
+ 
+         (Note that 119255 has superseded 119016; installation of the
+          current version is recommended to be preferred, due to its
+          central role in the installation and removal of patches.)
+ 
+NOTE 3:  If you have the SUNWcry package installed, you MUST also install the
+         following patch:
+ 
+         118563-02 (or greater)  Solaris Data Encryption Kit Patch
+ 
+NOTE 4:  To get the complete fix for bug 6222467 (system calls from
+         C_Initialize() get interrupted), please also install the
+         following patch:
+ 
+         118563-03 (or greater)  Solaris Data Encryption Kit Patch
+ 
+NOTE 5:  To get the complete support for algorithm optimization for crypto
+         and kernel modules for restricted and non-restricted key lengths
+         versions, please also install the following patch:
+ 
+         118563-05 (or greater) Solaris Data Encryption Kit Patch
+
+README -- Last modified date:  Monday, February 5, 2007

+ + + + + +
+ + +
+
+ + 
+ +
+ + + + + + +
+ + + + +  
+
+ + + + + 
+ + + + +
+ +
+ + +
+
+ +
Solaris 8 EOSL Phase 2
+
On April 1, 2009, Solaris 8 entered phase 2 of its end of service life. Learn what this means to you as a Solaris 8 user.
+ + +
+
+ + + +
+ + + + + + 
+ + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+ +Contact +About Sun +News & Events +Employment + +Site Map +Privacy +Terms of Use +Trademarks +Copyright Sun Microsystems, Inc. +| SunSolve Version 7.2.2 (build #1) + +
+ + + + + + + + Added: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_1-21-119725-06-1.html =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_1-21-119725-06-1.html 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_1-21-119725-06-1.html 2009-06-02 14:18:19 UTC (rev 3574) @@ -0,0 +1,572 @@ + + + + + + + #119725-06: SunOS : Sun Java(TM) System LDAP Java Development Kit patch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+Patches & Updates +
Deploy and monitor updates to all of your systems through Sun from anywhere you have an Internet connection.
Start today with Knowledge-based software update services for Solaris and Linux.
Please review changes to Patch Access + +
+
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + + + + + + +
+ [Printer-Friendly Page]
+
+ Patches: + + + + + + + + + + + + + + + + + + + + + + + + +
Download Patch (207486 bytes): + HTTP  +
Download Signed Patch (211386 bytes): + HTTP  +
+ Signed Patch Documentation  + + Patch Finder +
+ + + +
+ + + + +
+
+ +
+
+
Document Audience:PUBLIC
Document ID:119725-06
Title:SunOS : Sun Java(TM) System LDAP Java Development Kit patch
Copyright Notice:Copyright © 2008 Sun Microsystems, Inc. All Rights Reserved
Update Date:Fri Sep 19 02:38:17 MDT 2008
See Patch Revision History

Status: RELEASED
Patch Id: 119725-06
***********************************************************************
+READ THE TERMS OF THE AGREEMENT ("AGREEMENT") IN THE LEGAL_LICENSE.TXT
+FILE CAREFULLY BEFORE USING THIS SOFTWARE. BY USING THE SOFTWARE, YOU
+AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE
+TERMS, PROMPTLY DESTROY THE UNUSED SOFTWARE.
+***********************************************************************
Keywords: ldap java development kit 4.21 security
Summary: SunOS : Sun Java(TM) System LDAP Java Development Kit patch
Date:  Sep/19/2008
Installation Requirements:
NA
Solaris Release: 8 9 9_x86 10 10_x86
Sun OS Release: 5.8 5.9 5.9_x86 5.10 5.10_x86
Unbundled Product: 
Unbundled Release: 
Xref: 
Topic: 
Relevant Architecture: all
BugId's fixed with this patch:

6268213 6294799 6402167 6538128 6711620 6731145

Changes incorporated in this version:

6731145

Patches accumulated and obsoleted by this patch:

Patches which conflict with this patch: 

Required Patches:

Obsoleted by:
  + +
Files Included in this Patch: 
/usr/share/lib/ldapjdk.jar
Problem Description: 
6731145 Failures occurring with ldapjdk 4.20 & persistent searches enabled on AM 7.0 p3
+
+
+### Added FOR CVE
+6466370 security vulnerabilities in OpenSSL may lead to DoS or code execution 
+        (CVE-2006-3738,CVE-2006-4343)
+6467218 fix RSA signature forgery (CVE-2006-4339)
+6476279 multiple vulnerabilities in OpenSSL (CVE-2006-2937, CVE-2006-2940)
+6476772 update OpenSSL version string with information about security patches included
+ 
+(from 117123-07)
+ 
+6307652 libwanboot does not handle >2GB files properly
+ 
+(from 117123-06)
+ 
+6231877 WANBoot client hangs if http server is stopped
+ 
+(from 117123-05)
+ 
+6276060 "boot net" fails with "rpc cansend error" starting with nv_14
+ 
+(from 117123-04)
+ 
+6228203 unable to jumpstart client using DHCP boot
+
+#################
+
+
+
+ 
+(from 119725-05)
+ 
+6711620 LDAPJDK returns the stale data to the client, and possibly causes password mismatches in AM
+6538128 memory leak in ldapjdk
+ 
+(from 119725-04)
+ 
+6402167 LDAP JDK 4.18 cause LDAP client/DS stalling, hung, unexpected connection closes
+ 
+(from 119725-03)
+ 
+6268213 Reconnections fail with load balancers.
+A recent executive alert was raised with the University of Nijmegen concerning Communications Express. 
+In situations where the customer was expecting reconnections to occur, java exceptions were thrown instead.
+ 
+6294799 JES4_07: Java exception error happens in stop DS server from console in ja locale
+There was a problem in the ErrorCodes_ja.props file.
+One of the unicode characters was improperly formatted.
Revision History: 

119725-02 119725-04 119725-05

Patch Installation Instructions: 
--------------------------------
+ 
+For Solaris 7-9 releases, refer to the man pages for instructions
+on using 'patchadd' and 'patchrm' scripts provided with Solaris.
+Any other special or non-generic installation instructions should be
+described below as special instructions.  The following example
+installs a patch to a standalone machine:
+ 
+       example# patchadd /var/spool/patch/104945-02
+ 
+The following example removes a patch from a standalone system:
+ 
+       example# patchrm 104945-02
+ 
+For additional examples please see the appropriate man pages.
Special Install Instructions: 
-----------------------------
+ 
+ 
+ 
+README -- Last modified date:  August 07, 2008
+
+README -- Last modified date:  Friday, September 19, 2008

+ + + + + +
+ + +
+
+ + 
+ +
+ + + + + + +
+ + + + +  
+
+ + + + + 
+ + + + +
+ +
+ + +
+
+ +
Solaris 8 EOSL Phase 2
+
On April 1, 2009, Solaris 8 entered phase 2 of its end of service life. Learn what this means to you as a Solaris 8 user.
+ + +
+
+ + + +
+ + + + + + 
+ + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+ +Contact +About Sun +News & Events +Employment + +Site Map +Privacy +Terms of Use +Trademarks +Copyright Sun Microsystems, Inc. +| SunSolve Version 7.2.2 (build #1) + +
+ + + + + + + + Property changes on: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_1-21-119725-06-1.html ___________________________________________________________________ Name: svn:executable + * Added: trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_main_advisory_10_x86.html =================================================================== --- trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_main_advisory_10_x86.html 2009-06-02 13:21:46 UTC (rev 3573) +++ trunk/openvas-plugins/extra/lsc_generator/test/unit_test/work/input/solaris_main_advisory_10_x86.html 2009-06-02 14:18:19 UTC (rev 3574) @@ -0,0 +1,1495 @@ + + + + + + + + + + Title: Solaris 10_x86 Patch Report Update + as of May/16/2009 + + + + Sun Services, A Sun Microsystems, Inc. Business + + + +============================================================================ +Report Notes Section: +============================================================================ + +============================================================================ +NOTE: Security T-patches are available for downloading at + + http://sunsolve.sun.com/pub-cgi/show.pl?target=security/tpatches + + and will not be listed in the OS patch reports. +============================================================================ + +This report is generated to provide a listing of patches released and +available from Sun Microsystems for the listed product. This report +is updated twice a month and is available to customers via SunSolve. + +The 'Quick Reference Section' provides a listing of all new patches +released, existing patch revision changes, obsoleted patches, security +patches, a listing of the current recommended patches since the last report. + +Recommended patches are considered the most important patches needed to +avoid critical system, user, or security related bugs which have been +reported and fixed to date. + +Recommended patches are based on the following criteria: +- A Sun Alert patch that may resolve a Data Loss, Availability, and/or + Security issue +- A Patching Utility +- A patch that is a dependency of a Recommended patch + +A Sun Alert (SM) patch is a patch referenced in Sun Alert Notifications +to resolve hardware and software issues relating to Availability, +Data Loss, and Security. These patches are highly recommended +to minimize risk and resolve problems that could potentially affect +a customer's environment and productivity. + +For more information about Sun (SM) Alert Notifications and +Sun (SM) Alert criterias,please visit SunSolve's Feature & Article +"Announcing Sun Alert Notification" located at: +http://sunsolve.Sun.COM/pub-cgi/show.pl?target=content/content14 + +Patching utilities that have a direct impact on applying a patch, are +fundamental to the correct operation of patching, and prevents system +corruption will be included in the recommended patch list. + +These recommended patches are placed in the Solaris Recommended Patch +Cluster report to automate the install process. There is a recommended +patch cluster for each Solaris OS. + +Patches not meeting the above requirements will not be placed in the +recommended patch list. However, non recommended patches that are +applicable to your system should also be applied. + +Security patches not included in the recommended and/or Sun Alert +section are denoted in the security section with an asterisk. + +Unbundled Product Patches which contain a reference to specific Solaris +Releases are included in the Complete Listing of Released Patches +section in this report. + +All listed patches are available via patch database servers or other +patch access services unless they are superceded by a newer revision or +patch. + +It is possible that a patch listed in this report was just released +as of the report date and may not actually appear in a local patch +database for another 24-48 hours. + +Contact the Customer Care Center in the United States at +1-800-USA-4SUN, or Canada at 1-800-722-4SUN (4786), for issues +relating to these patches. + + +Note: A clean-up effort for the recommended patch list is ongoing in +order to comply with the recommended patch policy outlined +above. Patches not meeting the recommended criteria have been or +will be removed from the recommended patch list. + + + +============================================================================ +Quick Reference Section: +============================================================================ + + +New Patches Released Since Last Report: +---------------------------------------------------------------------------- + + +128226-01 Sun Studio 12_x86: Patch for localization of Sun C C++ F77 F95 +138175-01 SunOS 5.10_x86: igb driver patch +138650-01 SunOS 5.10_x86: i.renamenew r.renamenew patch +138765-01 SunOS 5.10_x86: acc driver patch +138767-01 SunOS 5.10_x86: ldap-client manifest patch +139603-01 SunOS 5.10_x86: multipathing patch +139607-01 SunOS 5.10_x86: Qlogic ISP Fibre Channel Device Driver +139894-01 Instant Messaging 8.0_x86: generic patch +139990-01 SunOS 5.10_x86: wtmpfix patch +140075-01 SunOS 5.10_x86: zoneinfo patch +140083-01 SunOS 5.10_x86: tnrhdb patch +140084-01 SunOS 5.10_x86: sh patch +140086-01 SunOS 5.10_x86: ata patch +140089-01 SunOS 5.10_x86: vold patch +140091-01 SunOS 5.10_x86: intel-ucode.txt patch +140092-01 SunOS 5.10_x86: ehci, uhci, scsa2usb and hidparser patch +140093-01 SunOS 5.10_x86: touch patch +140094-01 SunOS 5.10_x86: acctctl patch +140102-01 SunOS 5.10_x86: rpc.ypupdated patch +140104-01 SunOS 5.10_x86: usr/lib/snmp/mibiisa patch +140106-01 SunOS 5.10_x86: usr/sbin/rpc.metad patch +140107-01 SunOS 5.10_x86: sppp driver patch +140108-01 SunOS 5.10_x86: nss_nisplus.so.1 and nss_ldap.so.1 patch +140114-01 SunOS 5.10_x86: mkfs and newfs patch +140120-01 SunOS 5.10_x86: bge patch +140121-01 SunOS 5.10_x86: usr/lib/lp/bin/netpr patch +140123-01 SunOS 5.10_x86: metastat and mdmonitord patch +140124-01 SunOS 5.10_x86: kernel/drv/dnet patch +140127-01 SunOS 5.10_x86: passwdutil.so.1 patch +140131-01 SunOS 5.10_x86: rds patch +140133-01 SunOS 5.10_x86: xge patch +140141-01 SunOS 5.10_x86: libproc patch +140160-01 SunOS 5.10_x86: rsh/rlogin/rcp/rdist patch +140164-01 SunOS 5.10_x86: /kernel/sys/sparcv9/semsys patch +140166-01 SunOS 5.10_x86: ldap_cachemgr patch +140170-01 SunOS 5.10_x86: tftp patch +140172-01 SunOS 5.10_x86: ksh,sh,pfksh,rksh,xargs patch +140388-01 SunOS 5.10_x86: statd patch +140400-01 SunOS 5.10_x86: in.ftpd patch +140405-01 SunOS 5.10_x86: lockstat patch +140558-01 SunOS 5.10_x86: libldap.so.5 patch +140560-01 SunOS 5.10_x86: cron patch +140564-01 SunOS 5.10_x86: ptsl patch +140797-01 SunOS 5.10_x86: umountall patch +140801-01 SunOS 5.10_x86: dscpmk Patch +140861-01 SunOS 5.10_x86: su patch +140900-01 SunOS 5.10_x86: [ir].manifest patch +141017-01 SunOS 5.10_x86: Dummy Patch + +Updated Revs Released Since Last Report: +---------------------------------------------------------------------------- + +118246-20 comm_dssetup 6.4-4.04_x86: core patch +119202-34 SunOS 5.10_x86: OS Localization message patch +119214-19 NSS_NSPR_JSS 3.12.3_x86: NSPR 4.7.4 / NSS 3.12.3 / JSS 4.3 +119964-14 SunOS 5.10_x86: Shared library patch for C++_x86 +120501-23 Sun Cluster 3.1_x86: Core Patch for Solaris 10_x86 +120982-17 Sun Java System Web Proxy Server 4.0.10, _x86 (SVR4 patch): Maintenance Release Patch +121016-08 Sun Studio 11_x86: Patch for Sun C_x86 5.8 Compiler +121020-10 Sun Studio 11_x86: Patch for x86 Fortran 95 8.2 Compiler +121582-20 commcli 6.4-3.02_x86: core patch +121658-36 Calendar Server SunOS 5.9_x86 5.10_x86: Core patch +123591-10 SunOS 5.10_x86: PostgresSQL patch +124673-11 Application Server Enterprise Edition 8.2, _x86, Patch09: SVR4 patch +124864-12 Sun Studio 12_x86: Patch for Sun C++ Compiler +124868-10 Sun Studio 12_x86: Patch for C 5.9 compiler +125359-08 NSS_NSPR_JSS 3.12.3 Solaris_x86: NSPR 4.7.4 / NSS 3.12.3 / JSS 4.3 Maintenance Release +125438-16 Sun Java(TM) System Web Server 7.0U5 Solaris_x86: Update Release patch +125446-13 Monitoring Framework 2.1 Solaris_10_x86_amd64: Minor Release patch +125542-04 Mozilla 1.7_x86: Mozilla Thunderbird email client +125556-03 SunOS 5.10_x86: patch behavior patch +126018-05 Sun Cluster 3.2: HA-DNS Patch for Solaris 10_x86 +126332-06 Web Server 7.0 Update 5, SunOS5.9_x86 5.10_x86: Update Release localization patch +126496-03 Sun Studio 12_x86: Patch for debuginfo handling +126498-13 Sun Studio 12_x86: Sun Compiler Common patch for x86 backend +126506-08 SAM-FS 4.6 Solaris 10_x86 Patch +126510-08 QFS 4.6 Solaris 10_x86 Patch +127560-05 Sun Virtual Desktop Connector version 1.0 Patch Update SunOS 5.10_x86 +127796-03 SunOS 5.10_x86: Sun Update Connection - Enterprise (UCE) SDS Patch +128641-10 Sun GlassFish Enterprise Server v2.1 Patch02 [ 9.1_02 Patch08 ], _x86: SVR4 patch +128644-10 Sun GlassFish Enterprise Server v2.1 Patch02 [ 9.1_02 Patch08 ] with HADB, _x86: File based patch +128648-10 Sun GlassFish Enterprise Server v2.1 Patch02 [ 9.1_02 Patch08 ], _x86: File based patch +137180-12 Service Provisioning System 6.0_x86: Master Server Patch +137183-12 Service Provisioning System 6.0_x86: Command Line User Interface Patch +137186-12 Service Provisioning System 6.0_x86: Common Files For Server and Command Line Interface +137202-07 Messaging Server 7u2-7.02_x86: core patch +137205-07 Messaging Server (64bit) 7u2-7.02_x86: core patch +137632-07 Sun Convergence 1.0-7.01_x86: core patch +138176-02 SunOS 5.10_x86: mega_sas patch +138997-05 Service Provisioning System 6.0_x86: Master Server Database Encoding Patch +139100-02 SunOS 5.10_x86: gtar patch +139556-08 SunOS 5.10_x86: Kernel Patch +139605-03 SunOS 5.10_x86: Sun Fibre Channel Device Drivers +139609-02 SunOS 5.10_x86: Emulex-Sun LightPulse Fibre Channel Adapter driver +139997-02 SunOS 5.10_x86: i.rbac and patch postinstall patch +140090-02 SunOS 5.10_x86: mount, quota and libmapid.so.1 patch +140095-03 SunOS 5.10_x86: ixgbe patch +140105-02 SunOS 5.10_x86: usr/bin/printf patch +140112-02 SunOS 5.10_x86: format patch +140119-06 SunOS 5.10_x86: sshd patch +140129-05 SunOS 5.10_x86: bnx patch +140130-06 SunOS 5.10_x86: pam_krb5.so.1 patch +140392-02 SunOS 5.10_x86: nscd patch +140422-02 NHAS 3.0_x86 foundation services: PMD patch for Solaris 10 x64 +140759-03 Service Provisioning System 6.0_x86: Command Line User Interface Booster Patch +140762-03 Service Provisioning System 6.0_x86: Common Files For Server and Command Line Interface Booster Patch + + + +Solaris 10_x86 Recommended Patches: +---------------------------------------------------------------------------- + +113000-07 SunOS 5.10_x86: SUNWgrub patch +117435-02 SunOS 5.10_x86: biosdev patch +118344-14 SunOS 5.10_x86: Fault Manager Patch +118668-19 JavaSE for business 5.0_x86: update 18 patch (equivalent to JDK 5.0u18) +118669-19 JavaSE for business 5.0_x86: update 18 patch (equivalent to JDK 5.0u18), 64bit +118855-36 SunOS 5.10_x86: kernel patch +118919-21 SunOS 5.10_x86: Solaris Crypto Framework patch +118960-03 SunOS 5.10_x86: patch usr/bin/acctcom and usr/bin/lastcomm +119060-45 X11 6.6.2_x86: Xsun patch +119082-25 SunOS 5.10_x86: CD-ROM Install Boot Image Patch +119091-32 SunOS 5.10_x86: Sun iSCSI Device Driver and Utilities +119116-34 Mozilla 1.7_x86 patch +119131-33 SunOS 5.10_x86: Sun Fibre Channel Device Drivers +119214-19 NSS_NSPR_JSS 3.12.3_x86: NSPR 4.7.4 / NSS 3.12.3 / JSS 4.3 +119247-35 SunOS 5.10_x86: Manual Page updates for Solaris 10 +119253-31 SunOS 5.10_x86: System Administration Applications Patch +119255-65 SunOS 5.10_x86: Install and Patch Utilities Patch +119314-26 SunOS 5.10_x86: WBEM Patch +119318-01 SunOS 5.10_x86: SVr4 Packaging Commands (usr) Patch +119725-06 SunOS : Sun Java(TM) System LDAP Java Development Kit patch +119758-14 SunOS 5.10_x86: Samba patch +119765-06 SunOS 5.10_x86: ipmitool patch +119784-10 SunOS 5.10_x86: bind patch +119811-05 SunOS 5.10_x86: International Components for Unicode Patch +119813-08 X11 6.6.2_x86: Freetype patch +119901-06 GNOME 2.6.0_x86: Gnome libtiff - library for reading and writing TIFF Patch +119904-02 Openwindows 3.7.3_x86: Xview Patch +119987-03 SunOS 5.10_x86: clri patch +120012-14 SunOS 5.10_x86: kernel patch +120095-22 X11 6.6.2_x86: xscreensaver patch +120200-15 SunOS 5.10_x86: sysidtool Patch +120202-06 X11 6.8.0_x86: Xorg client libraries patch +120236-01 SunOS 5.10_x86: Live Upgrade Zones Support Patch +120273-25 SunOS 5.10_x86: SMA patch +120293-02 SunOS 5.10_x86 : mysql patch +120330-02 SunOS 5.10_x86: rexec patch +120411-30 SunOS 5.10_x86: Internet/Intranet Input Method Framework patch +120413-09 SunOS 5.10_x86: Simplified Chinese locale patch +120415-23 SunOS 5.10_x86: Asian CCK locales patch +120544-14 SunOS 5.10_x86: Apache 2 Patch +120720-02 SunOS 5.10_x86: SunFreeware gzip patch +120740-05 GNOME 2.6.0_x86: GNOME PDF Viewer based on Xpdf +120831-06 SunOS 5.10_x86: vi and ex patch +120901-03 SunOS 5.10_x86: libzonecfg patch +121013-02 SunOS 5.10_x86: traceroute patch +121096-02 GNOME 2.6.0_x86: GNOME EXIF tag parsing library for digital cameras +121119-15 SunOS 5.10_x86: Sun Update Connection System Client 1.0.10 +121212-02 SunOS 5.10_x86: Sun Java Web Console (Lockhart) Patch +121264-01 SunOS 5.10_x86: cadp160 driver patch +121297-01 SunOS 5.10_x86: fgrep patch +121309-16 SunOS 5.10_x86: Solaris Management Console Patch +121334-04 SunOS 5.10_x86: zoneadmd, zlogin and zoneadm patch +121395-03 SunOS 5.10_x86 kaio and aio_impl.h patch +121454-02 SunOS 5.10_x86: Sun Update Connection Client Foundation +121976-01 CDE 1.6_x86: Xsession patch +122035-05 SunOS 5.10_x86: awk nawk Patch +122213-32 GNOME 2.6.0_x86: GNOME Desktop Patch +122641-06 SunOS 5.10_x86: zfs genesis patch +122912-15 SunOS 5.10_x86: Apache 1.3 Patch +123591-10 SunOS 5.10_x86: PostgresSQL patch +123612-05 X11 6.6.2_x86: Trusted Extensions patch +123614-01 X11 6.6.2_x86: OpenGL patch +123840-04 SunOS 5.10_x86: Fault Manager Patch +123896-10 SunOS 5.9_x86 5.10_x86: Common Agent Container (cacao) runtime 2.2.2.0 upgrade patch 10 +123939-01 GNOME 2.6.0_x86: GNU Transport Layer Security Library Patch +124189-02 SunOS 5.10_x86: Trusted Solaris Attributes Patch +124394-09 CDE 1.6_x86: Dtlogin smf patch +124445-01 SunOS 5.10_x86: mountd patch +124458-01 X11 6.6.2_x86: xdm patch +124629-10 SunOS 5.10_x86: CD-ROM Install Boot Image Patch +124631-25 SunOS 5.10_x86: System Administration Applications, Network, and Core Libraries Patch +124939-03 SunOS 5.10 5.10_x86: JDMK 5.1 patch +124998-01 SunOS 5.10_x86: /usr/bin/tip patch +125280-05 CDE1.6_x86: dtsession patch +125333-05 JDS 3_x86: Macromedia Flash Player Plugin Patch +125504-02 SunOS 5.10_x86: package-move-of-IP-objects patch +125540-06 Mozilla 1.7_x86: Mozilla Firefox Web browser +125542-04 Mozilla 1.7_x86: Mozilla Thunderbird email client +125548-02 SunOS 5.10_x86: zoneadm indirect dependency patch +125556-03 SunOS 5.10_x86: patch behavior patch +125720-28 X11 6.8.0_x86: Xorg server patch +125732-04 SunOS 5.10_x86: XML and XSLT libraries patch +125953-18 Sun Java Web Console 3.1[_x86] +126207-04 SunOS 5.10_x86: zebra ripd quagga patch +126364-07 SunOS 5.10_x86: X Window System changes - Solaris Trusted Extensions +126366-14 SunOS 5.10_x86: CDE Desktop changes - Solaris Trusted Extensions +126424-03 SunOS 5.10_x86: bootadm patch +126441-01 SunOS 5.10_x86: rm patch +126541-02 SunOS 5.10_x86: libumem library patch +126869-03 SunOS 5.10_x86: SunFreeware bzip2 patch +127128-11 SunOS 5.10_x86: kernel patch +127756-01 SunOS 5.10_x86: Fault Manager patch +128329-01 SunOS 5.10_x86: usbms patch +128412-01 SunOS 5.10_x86: vuidm patch +136840-01 Service Tags SunOS 5.10_x86 +136883-02 SunOS 5.10_x86: ImageMagick patch +136999-05 SunOS 5.10_x86: PostgreSQL 8.2 core patch +137033-01 SunOS 5.10_x86: namefs patch +137081-01 SunOS 5.10_x86: libpng Patch +137094-01 SunOS 5.10_x86: logindevperm patch +137128-05 SunOS 5.10_x86: md and lib/libmeta.so.1 patch +137138-09 SunOS 5.10_x86: kernel patch +137322-01 SunOS 5.10_x86: p7zip patch +137872-02 SunOS 5.10_x86: tk patch +138105-01 SunOS 5.10_x86: snoop patch +138182-01 SunOS 5.10_x86: ike.preshared patch +138218-01 SunOS 5.10_x86: svccfg & svcprop patch +138266-01 SunOS 5.10_x86: picld patch +138270-02 SunOS 5.10_x86: devfs patch +138276-01 SunOS 5.10_x86: cpio patch +138286-02 SunOS 5.10_x86: nge driver patch +138323-02 SunOS 5.10_x86: Perl patch +138362-01 SunOS 5.10_x86: snmpXdmid patch +138374-02 SunOS 5.10_x86: fifofs patch +138624-02 SunOS 5.10_x86: usr/bin/pax patch +138867-02 SunOS 5.10_x86: sharetab patch +138877-01 SunOS 5.10_x86: usr/lib/inet/in.dhcpd patch +138884-01 SunOS 5.10_x86: GRUB patch +139100-02 SunOS 5.10_x86: gtar patch +139463-02 SunOS 5.10_x86: nfssrv patch +139556-08 SunOS 5.10_x86: Kernel Patch +139605-03 SunOS 5.10_x86: Sun Fibre Channel Device Drivers +139607-01 SunOS 5.10_x86: Qlogic ISP Fibre Channel Device Driver +139609-02 SunOS 5.10_x86: Emulex-Sun LightPulse Fibre Channel Adapter driver +140075-01 SunOS 5.10_x86: zoneinfo patch +140084-01 SunOS 5.10_x86: sh patch +140102-01 SunOS 5.10_x86: rpc.ypupdated patch +140106-01 SunOS 5.10_x86: usr/sbin/rpc.metad patch +140119-06 SunOS 5.10_x86: sshd patch +140130-06 SunOS 5.10_x86: pam_krb5.so.1 patch +140166-01 SunOS 5.10_x86: ldap_cachemgr patch +140392-02 SunOS 5.10_x86: nscd patch +140400-01 SunOS 5.10_x86: in.ftpd patch +140456-01 X11 6.6.2_x86: VNC Viewer patch +140560-01 SunOS 5.10_x86: cron patch +140564-01 SunOS 5.10_x86: ptsl patch +140797-01 SunOS 5.10_x86: umountall patch +140861-01 SunOS 5.10_x86: su patch +140900-01 SunOS 5.10_x86: [ir].manifest patch +141015-01 SunOS 5.10_x86: /usr/bin/dircmp patch +141017-01 SunOS 5.10_x86: Dummy Patch + + +Solaris 10_x86 Patches Containing Security Fixes: +---------------------------------------------------------------------------- + +118855-36 SunOS 5.10_x86: kernel patch +118919-21 SunOS 5.10_x86: Solaris Crypto Framework patch +119255-65 SunOS 5.10_x86: Install and Patch Utilities Patch +119549-13 * GNOME 2.6.0_x86: Gnome Multi-protocol instant messaging client Patch +119725-06 SunOS : Sun Java(TM) System LDAP Java Development Kit patch +119758-14 SunOS 5.10_x86: Samba patch +119784-10 SunOS 5.10_x86: bind patch +119811-05 SunOS 5.10_x86: International Components for Unicode Patch +119904-02 Openwindows 3.7.3_x86: Xview Patch +120012-14 SunOS 5.10_x86: kernel patch +120273-25 SunOS 5.10_x86: SMA patch +120293-02 SunOS 5.10_x86 : mysql patch +120330-02 SunOS 5.10_x86: rexec patch +120413-09 SunOS 5.10_x86: Simplified Chinese locale patch +120415-23 SunOS 5.10_x86: Asian CCK locales patch +120544-14 SunOS 5.10_x86: Apache 2 Patch +120720-02 SunOS 5.10_x86: SunFreeware gzip patch +120740-05 GNOME 2.6.0_x86: GNOME PDF Viewer based on Xpdf +120831-06 SunOS 5.10_x86: vi and ex patch +121013-02 SunOS 5.10_x86: traceroute patch +121096-02 GNOME 2.6.0_x86: GNOME EXIF tag parsing library for digital cameras +121212-02 SunOS 5.10_x86: Sun Java Web Console (Lockhart) Patch +121309-16 SunOS 5.10_x86: Solaris Management Console Patch +121395-03 SunOS 5.10_x86 kaio and aio_impl.h patch +121454-02 SunOS 5.10_x86: Sun Update Connection Client Foundation +122213-32 GNOME 2.6.0_x86: GNOME Desktop Patch +122676-02 * SunOS 5.10_x86: SunFreeware samba man pages patch +122912-15 SunOS 5.10_x86: Apache 1.3 Patch +123006-07 * SunOS 5.10_x86: Basic Registration Update +123591-10 SunOS 5.10_x86: PostgresSQL patch +124944-01 * SunOS 5.10_x86: SunFreeware gzip man pages patch +124998-01 SunOS 5.10_x86: /usr/bin/tip patch +125280-05 CDE1.6_x86: dtsession patch +125333-05 JDS 3_x86: Macromedia Flash Player Plugin Patch +125540-06 Mozilla 1.7_x86: Mozilla Firefox Web browser +125542-04 Mozilla 1.7_x86: Mozilla Thunderbird email client +125732-04 SunOS 5.10_x86: XML and XSLT libraries patch +126207-04 SunOS 5.10_x86: zebra ripd quagga patch +126441-01 SunOS 5.10_x86: rm patch +126869-03 SunOS 5.10_x86: SunFreeware bzip2 patch +127128-11 SunOS 5.10_x86: kernel patch +128329-01 SunOS 5.10_x86: usbms patch +128412-01 SunOS 5.10_x86: vuidm patch +136883-02 SunOS 5.10_x86: ImageMagick patch +136999-05 SunOS 5.10_x86: PostgreSQL 8.2 core patch +137001-03 * SunOS 5.10_x86: PostgreSQL 8.2 documentation patch +137005-04 * SunOS 5.10_x86: PostgreSQL 8.2 source code patch +137033-01 SunOS 5.10_x86: namefs patch +137081-01 SunOS 5.10_x86: libpng Patch +137094-01 SunOS 5.10_x86: logindevperm patch +137138-09 SunOS 5.10_x86: kernel patch +137872-02 SunOS 5.10_x86: tk patch +138105-01 SunOS 5.10_x86: snoop patch +138266-01 SunOS 5.10_x86: picld patch +138270-02 SunOS 5.10_x86: devfs patch +138323-02 SunOS 5.10_x86: Perl patch +138362-01 SunOS 5.10_x86: snmpXdmid patch +138374-02 SunOS 5.10_x86: fifofs patch +138877-01 SunOS 5.10_x86: usr/lib/inet/in.dhcpd patch +139100-02 SunOS 5.10_x86: gtar patch +139463-02 SunOS 5.10_x86: nfssrv patch +139556-08 SunOS 5.10_x86: Kernel Patch +140084-01 SunOS 5.10_x86: sh patch +140102-01 SunOS 5.10_x86: rpc.ypupdated patch +140106-01 SunOS 5.10_x86: usr/sbin/rpc.metad patch +140119-06 SunOS 5.10_x86: sshd patch +140130-06 SunOS 5.10_x86: pam_krb5.so.1 patch +140392-02 SunOS 5.10_x86: nscd patch +140400-01 SunOS 5.10_x86: in.ftpd patch +140560-01 SunOS 5.10_x86: cron patch +140564-01 SunOS 5.10_x86: ptsl patch +141015-01 SunOS 5.10_x86: /usr/bin/dircmp patch + + *=indicates if a security patch is not listed in the Recommended Patch List + because the patch is more application dependent, + or the patch has not been determined to be a Sun (SM) Alert patch. + + +Solaris 10_x86 Patches Containing Y2000 Fixes: +---------------------------------------------------------------------------- + +(No changes) + + + +Solaris 10_x86 Obsoleted Patches: +---------------------------------------------------------------------------- + +116578-43 Calendar Server SunOS 5.8_x86 5.9_x86 5.10_x86: Core patch +117011-27 Obsoleted by: 121658-28 Calendar Server SunOS 5.9_x86 5.10_x86: l10n patch +117448-01 Obsoleted by: 120012-14 SunOS 5.10_x86: patch usr/sbin/ntpdate +117462-04 SunOS 5.10_x86: patch boot/solaris/boot.bin +117464-04 Obsoleted by: 120037-15 SunOS 5.10_x86: passwdutil Patch +118084-07 Obsoleted by: 123043-01 N1 Grid Engine 6.0_x86: maintenance patch +118131-07 Obsoleted by: 123039-01 N1 Grid Engine 6.0_x86: maintenance patch +118208-63 Obsoleted by: 120229-20 Messaging Server 6.2-8.04_x86: core patch +118211-30 Obsoleted by: 119778-09 commcli 6.2-2.06_x86: core patch +118345-13 Obsoleted by: 121208-02 SunOS 5.10_x86: ld & libc.so.1 Patch +118347-05 Obsoleted by: 118855-36 SunOS 5.10_x86: libnsl Patch +118372-10 Obsoleted by: 120012-14 SunOS 5.10_x86: elfsign patch +118374-01 Obsoleted by: 120012-14 SunOS 5.10_x86: mpstat Patch +118376-09 Obsoleted by: 118855-15 SunOS 5.10_x86: nfs Patch +118541-43 Sun Java System Communications Express 6.2-5.02_x86: core patch +118549-01 Obsoleted by: 118924-02 SunOS 5.10_x86: ipf patch +118552-03 Obsoleted by: 118844-27 SunOS 5.10_x86: libmeta.so.1 patch +118554-04 Obsoleted by: 120538-04 SunOS 5.10_x86: kernel/misc/amd64/md_mirror patch +118561-02 Obsoleted by: 127128-11 SunOS 5.10_x86: usr/bin/telnet patch +118563-14 Obsoleted by: 125197-05 SunOS 5.10_x86: Solaris Data Encryption Kit Patch +118565-03 Obsoleted by: 121208-03 SunOS 5.10_x86: /usr/lib/libproc.so.1 patch +118727-04 Obsoleted by: 118855-15 SunOS 5.10_x86: ibmf Patch +118732-01 Obsoleted by: 122661-05 SunOS 5.10_x86: /usr/sbin/zonecfg patch +118734-04 Obsoleted by: 126543-01 SunOS 5.10_x86: mibiisa, snmpdx patch +118736-02 Obsoleted by: 138240-01 SunOS 5.10_x86: usr/sbin/rpc.nisd_resolv Patch +118787-28 Obsoleted by: 118787-30 Instant Messaging 7.2_x86: generic patch +118790-29 Obsoleted by: 118790-30 Instant Messaging and Presence SDK 7.2_x86: generic patch +118813-03 Obsoleted by: 118855-15 SunOS 5.10_x86: hsfs patch +118816-04 Obsoleted by: 127885-01 SunOS 5.10_x86: /usr/xpg4/bin/awk patch +118825-02 Obsoleted by: 138216-01 SunOS 5.10_x86: sort patch +118844-30 Obsoleted by: 118855-36 SunOS 5.10_x86: kernel Patch +118847-01 Obsoleted by: 118844-27 SunOS 5.10_x86: truss patch +118851-02 Obsoleted by: 118844-19 SunOS 5.10_x86: dtrace patch +118853-04 SunOS 5.10_x86: ibcm Patch +118858-01 Obsoleted by: 120468-02 SunOS 5.10_x86: usr/lib/libprint.so.2 Patch +118860-01 Obsoleted by: 119859-02 SunOS 5.10_x86: usbkbm patch +118863-01 Obsoleted by: 118844-19 SunOS 5.10_x86: fbt patch +118869-01 Obsoleted by: 122653-01 SunOS 5.10_x86: ttymon patch +118871-01 Obsoleted by: 120037-08 SunOS 5.10_x86: nss_ldap patch +118873-05 Obsoleted by: 128343-01 SunOS 5.10_x86: ksh patch +118880-02 Obsoleted by: 120033-03 SunOS 5.10_x86: dhcp daemon patch +118881-02 Obsoleted by: 118855-15 SunOS 5.10_x86: pcfs patch +118886-01 Obsoleted by: 118844-27 SunOS 5.10_x86: specfs patch +118891-03 Obsoleted by: 120037-15 SunOS 5.10_x86: llib-lc patch +118914-02 SunOS 5.10_x86: Point Patch ibmf +118917-03 SunOS 5.10_x86: Point Patch metaslot +118921-01 SunOS 5.10_x86: feature point patch - patch pmclient.jar & pmserver.jar +118922-07 SunOS 5.10_x86: ku feature point patch +118924-03 Obsoleted by: 118844-27 SunOS 5.10_x86: ipf utility patch +118926-01 Obsoleted by: 118855-15 SunOS 5.10_x86: unistd header file patch +118928-02 Obsoleted by: 118855-15 SunOS 5.10_x86: header file patch +118961-01 Obsoleted by: 119882-01 SunVTS 6.0 Patch Set 1 +118966-27 X11 6.8.0_x86: Xorg patch +118993-03 Obsoleted by: 118844-19 SunOS 5.10_x86: /kernel/misc/scsi patch +118997-10 Obsoleted by: 126422-01 SunOS 5.10_x86: format patch +119013-03 Obsoleted by: 118919-16 SunOS 5.10_x86: crypto Patch +119016-03 Obsoleted by: 119255-06 WITHDRAWN PATCH SunOS 5.10_x86: Packaging Commands Patch +119043-11 Obsoleted by: 138218-01 SunOS 5.10_x86: svccfg & svcprop patch +119062-03 Obsoleted by: 125720-03 X11 6.8.0_x86: font patch +119074-03 Obsoleted by: 120012-14 SunOS 5.10_x86: ldapclient patch +119076-12 Obsoleted by: 118844-27 SunOS 5.10_x86: ip Patch +119078-08 SunOS 5.10_x86: SPECIAL PATCH: For EDITABLE Files +119087-05 SunOS 5.10_x86: Feature Point Patch: Sun Fibre Channel Device Drivers +119108-07 SunOS 5.10_x86, Sun Update Connection Client, System Edition 1.0 +119146-07 Obsoleted by: 119082-09 SunOS 5.10_x86: usr/snadm/lib Patch +119206-01 SunOS 5.10_x86: feature point patch - Kernel Update +119208-01 SunOS 5.10_x86: feature point patch - patch liblgrp +119251-04 Obsoleted by: 119082-09 SunOS 5.10_x86: usr/sbin/install.d/pfinstall Patch +119266-02 SunOS 5.10_x86: feature point patch - Misleading comments indo_p1getdel() +119367-05 Obsoleted by: 122213-01 GNOME 2.6.0_x86: Display Manager Patch +119371-10 Obsoleted by: 122213-01 GNOME 2.6.0_x86: GNOME panel and support libraries Patch +119375-13 Obsoleted by: 118855-15 SunOS 5.10_x86: sd and ssd patch +119413-08 Obsoleted by: 122213-01 GNOME 2.6.0_x86: Nautilus libraries Patch +119445-03 SunOS 5.10_x86: KU feature point patch +119543-06 Obsoleted by: 122213-01 GNOME 2.6.0_x86: Gnome desktop preference configuration Patch +119558-04 Obsoleted by: 118855-15 SunOS 5.10_x86: tavor Patch +119563-01 Obsoleted by: 120468-02 SunOS 5.10_x86: Unable to configure printer without banner +119565-01 Obsoleted by: 118844-08 WITHDRAWN PATCH SunOS 5.10_x86: patch usr/lib/liblgrp.so.1 +119575-02 Obsoleted by: 140861-01 SunOS 5.10_x86: su patch +119585-01 Obsoleted by: 118855-15 SunOS 5.10_x86: pppd patch +119588-01 Obsoleted by: 120468-02 SunOS 5.10_x86: lp service patch +119590-03 SunOS 5.10_x86: header files patch +119592-03 SunOS 5.10_x86: md feature point patch +119594-01 Obsoleted by: 120012-14 SunOS 5.10_x86: net-svc patch +119684-02 Obsoleted by: 118844-27 SunOS 5.10_x86: lib/svc/bin/svc.configd Patch +119686-11 Obsoleted by: 120012-14 SunOS 5.10_x86: svc.startd patch +119688-02 Obsoleted by: 118855-15 SunOS 5.10_x86: in.mpathd patch +119713-04 Obsoleted by: 118855-36 SunOS 5.10_x86: usr/sbin/in.routed Patch +119716-10 Obsoleted by: 118855-01 SunOS 5.10_x86: scsi_vhci driver patch +119720-01 Obsoleted by: 118844-19 SunOS 5.10_x86: patch kernel/misc/kmdbmod +119778-19 Obsoleted by: 121582-12 commcli 6.3-2.09_x86: core patch +119825-02 Obsoleted by: 120012-14 SunOS 5.10_x86: prstat patch +119829-04 Obsoleted by: 118855-15 SunOS 5.10_x86: nfssrv Patch +119830-01 Obsoleted by: 118844-19 SunOS 5.10_x86: ufs patch +119833-02 Obsoleted by: 118844-27 SunOS 5.10_x86: gld patch +119851-16 Obsoleted by: 118855-15 SunOS 5.10_x86: mpt driver and raidctl patch +119853-03 Obsoleted by: 118855-36 SunOS 5.10_x86: unix branding patch +119857-01 Obsoleted by: 118844-27 SunOS 5.10_x86: pboot hangs on memory check +119859-02 Obsoleted by: 118844-19 SunOS 5.10_x86: vkm and usba patch +119882-01 Obsoleted by: 120640-01 SunVTS 6.0 Patch Set 2 +119893-01 Obsoleted by: 122213-08 GNOME 2.6.0_x86: gimp Patch +119909-02 Obsoleted by: 122213-01 Gnome 2.6.0_x86: session manager patch +119942-03 SunOS 5.10_x86: sd and ssd feature point patch +119944-01 SunOS 5.10_x86: socket headers feature point patch +119946-03 SunOS 5.10_x86: IP headers feature point patch +119948-02 SunOS 5.10_x86: icmp/udp feature point patch +119950-02 SunOS 5.10_x86: libsocket feature point patch +119952-01 SunOS 5.10_x86: snoop feature point patch +119991-01 Obsoleted by: 118844-27 SunOS 5.10_x86: netstat patch +119995-01 Obsoleted by: 118844-27 SunOS 5.10_x86: libdevinfo patch +119997-01 Obsoleted by: 118855-15 SunOS 5.10_x86: libsec patch +119999-03 Obsoleted by: 125101-02 SunOS 5.10_x86: arp, ip, ipsecah drivers patch +120010-01 Obsoleted by: 118855-36 SunOS 5.10_x86: rmformat patch +120014-02 Obsoleted by: 118844-27 SunOS 5.10_x86: ip header patch +120018-02 SunOS 5.10_x86: libc point patch +120024-01 SunOS 5.10_x86: sd headers feature point patch +120028-02 Obsoleted by: 118855-15 SunOS 5.10_x86: sd headers patch +120029-02 SunOS 5.10_x86: infiniband ib feature point patch +120031-03 SunOS 5.10_x86: mountd patch +120033-04 Obsoleted by: 120012-14 SunOS 5.10_x86: libresolv.so.2 patch +120035-01 Obsoleted by: 118855-15 SunOS 5.10_x86: mntfs patch +120037-22 Obsoleted by: 120012-14 SunOS 5.10_x86: libc nss ldap PAM zfs patch +120041-02 Obsoleted by: 118844-27 SunOS 5.10_x86: ata patch +120047-01 Obsoleted by: 125491-02 SunOS 5.10_x86: nfsmapid patch +120049-03 Obsoleted by: 118855-15 SunOS 5.10_x86: fss patch +120051-06 Obsoleted by: 120012-14 SunOS 5.10_x86: usermod patch +120053-05 Obsoleted by: 120037-11 SunOS 5.10_x86: pam library patch +120055-02 SunOS 5.10_x86: scsi_vhci feature point patch +120063-01 Obsoleted by: 139507-01 SunOS 5.10_x86: localedef Patch +120069-03 Obsoleted by: 125419-01 SunOS 5.10_x86: in.telnetd patch +120070-02 Obsoleted by: 122653-01 SunOS 5.10_x86: cpio Patch +120081-02 Obsoleted by: 118855-15 SunOS 5.10_x86: bmc driver patch +120082-07 Obsoleted by: 118844-27 SunOS 5.10_x86: bge patch +120084-01 Obsoleted by: 118855-15 SunOS 5.10_x86: arp patch +120086-02 Obsoleted by: 126259-02 SunOS 5.10_x86: patch usr/sbin/in.ftpd +120129-02 Obsoleted by: 127995-01 SunOS 5.10_x86: patch usr/bin/xargs +120132-01 Obsoleted by: 118844-27 SunOS 5.10_x86: patch e1000g driver +120134-04 Obsoleted by: 122213-01 GNOME 2.6.0_x86: Gnome themes Patch +120136-03 Obsoleted by: 122213-01 GNOME 2.6.0_x86: Gnome Libraries Patch +120183-06 Obsoleted by: 120347-08 SunOS 5.10_x86: Sun Fibre Channel Host Bus Adapter Library +120218-03 SunOS 5.10_x86: FEATURE POINT PATCH Sun Java Web Console Patch Lockhart +120223-31 Obsoleted by: 139609-02 SunOS 5.10_x86: Emulex-Sun LightPulse Fibre Channel Adapter driver +120252-05 Obsoleted by: 118855-15 SunOS 5.10_x86: mt patch +120255-02 Obsoleted by: 118855-15 SunOS 5.10_x86: ufs Patch +120257-01 Obsoleted by: 118855-15 SunOS 5.10_x86: hci1394 Patch +120259-02 Obsoleted by: 118855-15 SunOS 5.10_x86: ip, icmp, ipsecesp, tun, udp Patch +120295-01 Obsoleted by: 120293-02 SunOS 5.10_x86 : mysql man patch +120297-01 Obsoleted by: 120136-03 GNOME 2.6.0_x86: GNOME libraries patch +120301-01 SunOS 5.10_x86: KU feature point patch +120303-01 Obsoleted by: 118844-27 SunOS 5.10_x86: sendmail patch +120320-01 Obsoleted by: 118844-19 SunOS 5.10_x86: isa patch +120340-01 Obsoleted by: 119279-09 CDE 1.6_x86: styleModern patch +120343-04 SunOS 5.10_x86: feature point patch Sun Fibre Channel Device Drivers +120363-01 Obsoleted by: 118844-27 SunOS 5.10_x86: DDI header file patch +120409-01 Obsoleted by: 120415-09 SunOS 5.10_x86: Korean Locales Patch +120438-03 Obsoleted by: 123040-01 N1 Grid Engine 6.0_x86: maintenance patch +120439-03 Obsoleted by: 123044-01 N1 Grid Engine 6.0_x86: maintenance patch +120468-05 Obsoleted by: 118855-36 SunOS 5.10_x86: lp patch +120470-02 Obsoleted by: 118844-27 SunOS 5.10_x86: kerberos patch +120472-03 SunOS 5.10_x86: libbsm patch +120474-01 Obsoleted by: 120037-11 SunOS 5.10_x86: nss_compat patch +120475-02 Obsoleted by: 118855-15 SunOS 5.10_x86: audio810 patch +120538-05 Obsoleted by: 118844-28 SunOS 5.10_x86: md patch +120552-03 Sun Cluster 3.1_x86: Core Patch for Solaris 10_x86 - feature point patch +120557-01 Sun Cluster 3.1_x86: OPS Core Patch for Solaris 10_x86 - feature point patch +120628-01 Obsoleted by: 118855-15 SunOS 5.10_x86: nfslogd patch +120630-05 Obsoleted by: 120012-14 SunOS 5.10_x86: libpool patch +120652-01 Obsoleted by: 116833-03 Sun StorEdge EBS 7.2_x86 Product Patch SU1 +120657-01 Obsoleted by: 122457-01 Sun StorEdge EBS 7.3_x64 Product Patch SU2 5.10_x86 +120662-05 Obsoleted by: 118855-15 SunOS 5.10_x86: rpcmod patch +120665-01 Obsoleted by: 118855-15 SunOS 5.10_x86: tl driver patch +120666-01 Obsoleted by: 118844-27 SunOS 5.10_x86: busra patch +120717-01 Sun Cluster 3.1_x86: HA-NFS Patch - feature point patch +120738-01 Obsoleted by: 118855-15 SunOS 5.10_x86: FX patch +120742-01 Obsoleted by: 137138-09 SunOS 5.10_x86: seg_map header file patch +120777-03 Obsoleted by: 121454-02 SunOS 5.10_x86 Sun Update Connection registration utility, command line interface +120781-02 Obsoleted by: 118855-15 SunOS 5.10_x86: ixgb patch +120810-01 Obsoleted by: 121011-04 SunOS 5.10_x86: metaclust patch +120817-01 Obsoleted by: 137018-03 SunOS 5.10_x86: at and batch patch +120823-01 Sun Cluster 3.1_x86: Managability and Serviceability Agent - Feature Point Patch +120846-05 Obsoleted by: 120012-14 SunOS 5.10_x86: auditd patch +120888-07 Obsoleted by: 125893-01 SunOS 5.10_x86: cdrw patch +120987-12 Obsoleted by: 125417-02 SunOS 5.10_x86: mkfs, newfs, other ufs utils patch +120991-02 Obsoleted by: 120012-14 SunOS 5.10_x86: net-physical Patch +120993-02 Obsoleted by: 138391-02 SunOS 5.10_x86: nfs_clnt.h and nfs4_clnt.h Patch +120995-01 Obsoleted by: 124923-03 SunOS 5.10_x86: elf_amd64.h Patch +120999-01 Obsoleted by: 118855-15 SunOS 5.10_x86: adpu320 patch +121003-04 Obsoleted by: 128331-01 SunOS 5.10_x86: pax patch +121005-04 Obsoleted by: 138254-01 SunOS 5.10_x86: sh patch +121007-02 Obsoleted by: 120037-20 SunOS 5.10_x86: libkadm5 and kadmind patch +121009-02 Obsoleted by: 120987-07 SunOS 5.10_x86: ufsrestore patch +121011-05 Obsoleted by: 126257-01 SunOS 5.10_x86: rpc.metad patch +121044-02 Obsoleted by: 125720-03 X11 6.8.0_x86: Mesa patch +121087-02 Obsoleted by: 121454-02 SunOS 5.10_x86: Sun Update Connection patch for boottime regression +121098-01 Obsoleted by: 119901-02 GNOME 2.6.0_x86: GNOME library for reading and writing TIFF +121126-01 Obsoleted by: 118855-15 SunOS 5.10_x86: aac patch +121127-02 Obsoleted by: 126420-01 SunOS 5.10_x86: umountall.sh Patch +121208-04 SunOS 5.10_x86: ld & libc.so.1 Patch +121216-01 Obsoleted by: 120012-14 SunOS 5.10_x86: ipsecconf patch +121230-02 Obsoleted by: 126254-01 SunOS 5.10_x86: libssl patch +121234-01 Obsoleted by: 121240-02 SunOS 5.10_x86: gsscred patch +121238-02 Obsoleted by: 122665-02 SunOS 5.10_x86: zones header patch +121240-02 Obsoleted by: 124236-03 SunOS 5.10_x86: libgss patch +121267-01 Obsoleted by: 120901-03 SunOS 5.10_x86: sbin/zonename patch +121269-01 Obsoleted by: 118855-15 SunOS 5.10_x86: tmpfs patch +121275-01 SunOS 5.10_x86: ufs utilities feature point patch +121277-02 SunOS 5.10_x86: libc.so.1 feature point patch +121279-01 SunOS 5.10_x86: llib-lc feature point patch +121281-01 SunOS 5.10_x86: sd and ssd feature point patch +121283-02 SunOS 5.10_x86: crypto feature point patch +121285-02 SunOS 5.10_x86: SunOS 5.10: Solaris Crypto Framework feature point patch +121287-02 Obsoleted by: 125907-01 SunOS 5.10_x86: pcn driver patch +121289-04 Obsoleted by: 120012-14 SunOS 5.10_x86: inetd & svcs patch +121291-03 SunOS 5.10_x86: SunOS 5.10: Solaris Data Encryption Kit feature point patch +121293-01 SunOS 5.10_x86: Solaris Crypto Framework feature point patch +121295-01 SunOS 5.10_x86: llib-lcrypto feature point patch +121299-01 Obsoleted by: 122653-01 SunOS 5.10_x86: bart patch +121303-01 SunOS 5.10_x86: nge driver feature point patch +121338-01 Obsoleted by: 118855-15 SunOS 5.10_x86: tlimod patch +121407-01 Obsoleted by: 120012-14 SunOS 5.10_x86: ikeadm patch +121415-01 Obsoleted by: 120987-03 SunOS 5.10_x86: ufs utilities patch +121475-01 Obsoleted by: 120012-14 SunOS 5.10_x86: audit_event patch +121604-02 Obsoleted by: 137138-09 SunOS 5.10_x86: libcfgadm.so.1, scsi.so.1 patch +121695-01 Obsoleted by: 118855-15 SunOS 5.10_x86: elfexec patch +121696-02 Obsoleted by: 120012-14 SunOS 5.10_x86: devfsadm patch +121697-01 Obsoleted by: 118855-15 SunOS 5.10_x86: SUNW_misc_link_i386.so patch +121722-03 Obsoleted by: 127128-11 SunOS 5.10_x86: SVM header files patch +121783-01 SunOS 5.10_x86: volmgt svcs feature point patch +121785-01 SunOS 5.10_x86: ktkt_warn and ktkt_warn.xml feature point patch +121787-01 SunOS 5.10_x86: aes feature point patch +121795-02 SunOS 5.10_x86: sd feature point patch +121797-01 SunOS 5.10_x86: vold feature point patch +121799-01 SunOS 5.10_x86: format feature point patch +121803-01 Obsoleted by: 118855-15 SunOS 5.10_x86: usb mouse device consms patch +121805-03 Obsoleted by: 138884-01 SunOS 5.10_x86: GRUB patch +121809-01 SunOS 5.10_x86: ibmf feature point patch +121811-01 SunOS 5.10_x86: ib feature point patch +121813-01 SunOS 5.10_x86: ibdm feature point patch +121815-01 SunOS 5.10_x86: ibtl feature point patch +121817-01 SunOS 5.10_x86: ibcm feature point patch +121819-01 SunOS 5.10_x86: daplt feature point patch +121821-01 SunOS 5.10_x86: tavor feature point patch +121823-01 SunOS 5.10_x86: udapl_tavor.so.1 feature point patch +121825-01 SunOS 5.10_x86: rpcib feature point patch +121827-01 SunOS 5.10_x86: ibd feature point patch +121833-01 SunOS 5.10_x86: usb_ac_dacf feature point patch +121835-01 SunOS 5.10_x86: ehci feature point patch +121837-02 SunOS 5.10_x86: hid feature point patch +121839-01 SunOS 5.10_x86: ohci feature point patch +121841-01 SunOS 5.10_x86: uhci feature point patch +121843-01 SunOS 5.10_x86: usb_as feature point patch +121845-01 SunOS 5.10_x86: hidparser feature point patch +121847-01 SunOS 5.10_x86: usba feature point patch +121849-01 SunOS 5.10_x86: usbkbm feature point patch +121851-01 SunOS 5.10_x86: usbms feature point patch +121855-01 SunOS 5.10_x86: scsa2usb feature point patch +121869-04 SunOS 5.10_x86: keytable patch +121895-01 Obsoleted by: 118855-15 SunOS 5.10_x86: core networking header files patch +121902-02 Obsoleted by: 126539-01 SunOS 5.10_x86: i.manifest r.manifest class action script patch +121906-01 Obsoleted by: 120846-02 SunOS 5.10_x86: audit header files patch +121922-02 Obsoleted by: 126541-02 SunOS 5.10_x86: libumem library patch +121948-02 Obsoleted by: 120012-14 SunOS 5.10_x86: New keyboards software needed for S11 and S10 U2 +121958-01 Obsoleted by: 123039-01 N1 Grid Engine 6.0_x86: security patch +121959-01 Obsoleted by: 123040-01 N1 Grid Engine 6.0_x86: security patch +121962-01 Obsoleted by: 123043-01 N1 Grid Engine 6.0_x86: security patch +121963-01 Obsoleted by: 123044-01 N1 Grid Engine 6.0_x86: security patch +121981-03 SunOS 5.10_x86: feature point patch Sun iSCSI Device Driver and Utilities +122028-02 Obsoleted by: 118855-15 SunOS 5.10_x86: bge driver patch +122030-01 Obsoleted by: 122078-03 SunOS 5.10_x86: NIS+ nis patch +122033-05 Obsoleted by: 125379-02 SunOS 5.10_x86: Update timezones patch +122063-01 Obsoleted by: 118855-15 SunOS 5.10_x86: iprb Ethernet Driver Patch +122065-01 Obsoleted by: 119956-03 CDE 1.6_x86: Tooltalk ttession patch for Solaris 10 +122078-04 Obsoleted by: 137138-09 SunOS 5.10_x86: NIS yp utilities patch +122080-01 Obsoleted by: 118855-15 SunOS 5.10_x86: 1394/FireWire scsa1394 patch +122082-01 Obsoleted by: 120037-15 SunOS 5.10_x86: perl format string patch +122173-05 Obsoleted by: 118855-36 SunOS 5.10_x86: swap swapadd patch +122175-03 Obsoleted by: 137138-09 SunOS 5.10_x86: dumpadm patch +122177-01 Obsoleted by: 118855-15 SunOS 5.10_x86: libdskmgt ZFS patch +122184-03 Obsoleted by: 126261-01 SunOS 5.10_x86: logadm timestamp patch +122196-04 Obsoleted by: 118855-36 SunOS 5.10_x86: pkgadd assertion patch +122207-02 Gnome 2.6.0_x86: On-screen Keyboard patch +122216-01 Obsoleted by: 118855-36 SunOS 5.10_x86: syslogd patch +122232-01 Obsoleted by: 121082-06 SunOS 5.10_x86 Sun Connection agents, transport certificate update +122236-01 Obsoleted by: 118855-15 SunOS 5.10_x86: e1000g interface names parse RCM patch +122238-01 Obsoleted by: 118855-15 SunOS 5.10_x86: nfs lockd klmops patch +122240-03 Obsoleted by: 138323-02 SunOS 5.10_x86: Apache 2 mod_perl Perl cgi patch +122244-02 Obsoleted by: 118855-15 SunOS 5.10_x86: cmdk, dadk, strategy patch +122246-01 Obsoleted by: 118855-15 SunOS 5.10_x86: patch snlb +122247-01 Obsoleted by: 118855-15 SunOS 5.10_x86: patch cmlb +122252-01 Obsoleted by: 120012-14 SunOS 5.10_x86: librestart.so.1 patch +122254-01 Obsoleted by: 118855-15 SunOS 5.10_x86: scsi patch +122295-01 SunOS 5.10_x86: libdevinfo.so.1 feature point patch +122297-01 SunOS 5.10_x86: SUNW_usb_link.so feature point patch +122299-01 SunOS 5.10_x86: usb.so.1 feature point patch +122303-01 SunOS 5.10_x86: usb header feature point patch +122305-01 SunOS 5.10_x86: usb_ah feature point patch +122307-01 SunOS 5.10_x86: usbser feature point patch +122315-01 SunOS 5.10_x86: usbser_edge feature point patch +122317-01 SunOS 5.10_x86: usbprn feature point patch +122319-01 SunOS 5.10_x86: usb_mid feature point patch +122321-01 SunOS 5.10_x86: usb_ac feature point patch +122323-01 SunOS 5.10_x86: ugen feature point patch +122325-01 SunOS 5.10_x86: hubd feature point patch +122332-01 SunOS 5.10_x86: sata feature point patch +122335-01 SunOS 5.10_x86: raidctl feature point patch +122337-01 SunOS 5.10_x86: mech_krb5.so.1 feature point patch +122343-01 SunOS 5.10_x86: ipsecah feature point patch +122345-01 SunOS 5.10_x86: xge feature point patch +122347-01 SunOS 5.10_x86: gld feature point patch +122349-01 SunOS 5.10_x86: tun feature point patch +122351-01 SunOS 5.10_x86: SUNW_ip_rcm.so feature point patch +122353-01 SunOS 5.10_x86: Yosemite header feature point patch +122355-01 SunOS 5.10_x86: mpt feature point patch +122357-01 SunOS 5.10_x86: pppd feature point patch +122359-01 SunOS 5.10_x86: ifconfig feature point patch +122361-01 SunOS 5.10_x86: locator feature point patch +122393-01 SunOS 5.10_x86: nca feature point patch +122397-01 SunOS 5.10_x86: fma feature point patch +122399-01 SunOS 5.10_x86: icmp feature point patch +122405-01 Obsoleted by: 120012-14 SunOS 5.10_x86: xntpd patch +122411-01 Obsoleted by: 120037-08 SunOS 5.10_x86: ldaplist patch +122413-01 Obsoleted by: 120012-14 SunOS 5.10_x86: ipseckey patch +122421-02 SunOS 5.10_x86: Simplified Chinese locale patch +122452-01 Obsoleted by: 122459-01 Sun StorEdge EBS 7.3_x86 Product Patch SU2 5.10_x86 +122457-01 Obsoleted by: 124662-01 Sun StorEdge EBS 7.3.3_x64 Product Patch 5.10_x86 SU3 +122459-01 Obsoleted by: 124664-01 Sun StorEdge EBS 7.3.3_x86 Product Patch 5.10_x86 SU3 +122461-01 Obsoleted by: 124666-01 Sun StorEdge EBS 7.4_x86 Product Patch SP1 +122514-01 SunOS 5.10_x86: sata patch +122528-01 Obsoleted by: 118855-36 SunOS 5.10_x86: mech_krb5.so.1 patch +122530-06 Obsoleted by: 120012-14 SunOS 5.10_x86: nge patch +122532-05 SunOS 5.10_x86: volmgt and bsmconv patch +122534-02 Obsoleted by: 125170-01 SunOS 5.10_x86: ktkt_warn patch +122536-01 Obsoleted by: 120037-15 SunOS 5.10_x86: llib-lcrypto patch +122638-01 Obsoleted by: 120012-14 SunOS 5.10_x86: zonename patch +122645-01 SunOS 5.10_x86: zfs headers patch +122647-04 Obsoleted by: 120012-14 SunOS 5.10_x86: zlogin patch +122651-01 SunOS 5.10_x86: fs tools patch +122653-04 Obsoleted by: 118855-36 SunOS 5.10_x86: utilities patch +122659-06 SunOS 5.10_x86: zonecfg patch +122661-08 Obsoleted by: 120012-14 SunOS 5.10_x86: zones patch +122663-07 SunOS 5.10_x86: libzonecfg patch +122665-04 Obsoleted by: 118855-36 SunOS 5.10_x86: rnode.h/systm.h/zone.h header file patch +122746-02 SunOS 5.10_x86: bootadm patch +122749-01 SunOS 5.10_x86: mouse driver vuid3ps2 +122753-03 Obsoleted by: 120012-14 SunOS 5.10_x86: fma snmpd patch +122756-01 SunOS 5.10_x86: fma AMD CPU patch +122857-04 Obsoleted by: 118855-36 SunOS 5.10_x86: sendmail patch +123014-01 Obsoleted by: 127112-09 SunOS 5.10_x86: pcb.h patch +123018-01 Obsoleted by: 121289-03 SunOS 5.10_x86: inetd patch +123039-01 Obsoleted by: 124521-01 N1 Grid Engine 6.0_x86: maintenance patch +123040-01 Obsoleted by: 124522-01 N1 Grid Engine 6.0_x86: maintenance patch +123043-01 Obsoleted by: 124525-01 N1 Grid Engine 6.0_x86: maintenance patch +123044-01 Obsoleted by: 124526-01 N1 Grid Engine 6.0_x86: maintenance patch +123067-01 Obsoleted by: 118855-36 SunOS 5.10_x86: libmeta.so.1 patch +123195-01 Obsoleted by: 137018-03 SunOS 5.10_x86: cron patch +123303-01 Obsoleted by: 118855-36 SunOS 5.10_x86: snoop patch +123318-01 Obsoleted by: 118855-36 SunOS 5.10_x86: audit_syslog patch +123321-01 Obsoleted by: 118855-36 SunOS 5.10_x86: libbsm.so.1 patch +123325-03 Obsoleted by: 120012-14 SunOS 5.10_x86: sshd patch +123331-01 Obsoleted by: 117464-04 SunOS 5.10_x86: pam_passwd_auth.so.1 patch +123333-02 Obsoleted by: 140170-01 SunOS 5.10_x86: tftp and in.tftpd patch +123335-01 Obsoleted by: 118855-36 SunOS 5.10_x86: krb5kdc patch +123337-01 Obsoleted by: 118855-36 SunOS 5.10_x86: statd patch +123349-04 SunOS 5.10_x86: feature point patch ldap patch +123355-03 SunOS 5.10_x86: feature point patch auditd patch +123357-03 SunOS 5.10_x86: feature point patch pam login patch +123399-02 Obsoleted by: 127891-02 SunOS 5.10_x86: nge patch +123403-01 Obsoleted by: 128329-01 SunOS 5.10_x86: usbms patch +123405-01 Obsoleted by: 123407-02 SunOS 5.10_x86: svc-zones patch +123408-01 Obsoleted by: 127128-11 SunOS 5.10_x86: pci_autoconfig patch +123419-02 SunOS 5.10_x86: Feature point patch libzonecfg patch +123421-02 SunOS 5.10_x86: feature point patch zonecfg patch +123423-03 SunOS 5.10_x86: Feature point patch zoneadm patch +123425-02 SunOS 5.10_x86: Feature point patch ppriv patch +123427-04 SunOS 5.10_x86: feature point patch fma patch +123433-02 Obsoleted by: 124521-01 N1 Grid Engine 6.0_x86: maintenance patch +123434-02 Obsoleted by: 124522-01 N1 Grid Engine 6.0_x86: maintenance patch +123437-02 Obsoleted by: 124525-01 N1 Grid Engine 6.0_x86: maintenance patch +123438-02 Obsoleted by: 124526-01 N1 Grid Engine 6.0_x86: maintenance patch +123495-04 Obsoleted by: 138353-02 X11 6.6.2_x86: fontconfig patch +123497-04 SunOS 5.10_x86: feature point patch Sun Fibre Channel Device Drivers +123501-02 SunOS 5.10_x86: feature point patch Sun iSCSI Device Driver +123508-05 CDE 1.6_x86: Dtlogin feature point patch +123525-01 Obsoleted by: 118855-36 SunOS 5.10_x86: psrinfo patch +123555-02 Obsoleted by: 119815-15 SunOS 5.10_x86: Japanese input System Wnn manpages patch +123565-02 SunOS 5.10_x86: Feature point patch AGPgart driver header files patch +123776-03 Obsoleted by: 120012-14 SunOS 5.10_x86: pcplusmp driver patch +123779-02 Obsoleted by: 125423-01 SunOS 5.10_x86: ata driver patch +123855-02 REJECTED CDE 1.6_x86: CDE Trusted Extensions feature point patch +123882-01 SunOS 5.10_x86: FEATURE POINT PATCH Trusted Solaris Attributes +123884-04 SunOS 5.10_x86: FEATURE POINT PATCH WBEM +123888-02 SunOS 5.10_x86: FEATURE POINT PATCH Solaris Management Console +123909-01 Obsoleted by: 118855-36 SunOS 5.10_x86: gfx_private patch +123933-03 SunOS 5.10_x86: feature point patch ufsdump ufsrestore patch +123951-02 SunOS 5.10_x86: syslogd Feature Point Patch +124070-02 SunOS 5.10_x86: FEATURE POINT PATCH System Administration Applications +124072-03 SunOS 5.10_x86: FEATURE POINT PATCH CD-ROM Install Boot Image +124205-05 Obsoleted by: 120037-15 SunOS 5.10_x86: zfs patch +124207-02 Obsoleted by: 118855-36 SunOS 5.10_x86: libtsol patch +124209-01 Obsoleted by: 120051-06 SunOS 5.10_x86: Trusted Extensions header files patch +124236-03 Obsoleted by: 127128-11 SunOS 5.10_x86: libpam.so.1 patch +124245-02 Obsoleted by: 126441-01 SunOS 5.10_x86: /usr/bin/rm patch +124247-01 Obsoleted by: 136715-01 SunOS 5.10_x86: devfsadmd_mod.so sysevent_conf_mod.so patch +124251-03 Obsoleted by: 120012-14 SunOS 5.10_x86: rpcmod patch +124253-03 Obsoleted by: 125485-02 SunOS 5.10_x86: nfssrv patch +124255-04 Obsoleted by: 120012-14 SunOS 5.10_x86: sockfs patch +124257-01 Obsoleted by: 126257-03 SunOS 5.10_x86: md_mirror patch +124259-06 Obsoleted by: 120012-14 SunOS 5.10_x86: ufs and nfs driver patch +124281-01 Obsoleted by: 120037-20 SunOS 5.10_x86: libkdb.so.1 patch +124283-01 Obsoleted by: 118855-36 SunOS 5.10_x86: init patch +124287-01 Obsoleted by: 120012-14 SunOS 5.10_x86: chkey patch +124443-01 Obsoleted by: 123325-03 SunOS 5.10_x86: ssh patch +124466-02 Obsoleted by: 123896-03 SunOS 5.9_x86 : cacao 2.0 patch 02 +124615-01 Obsoleted by: 124187-06 SunOS 5.10_x86: sconadm proxy: UnknownHostException +124661-01 Obsoleted by: 124667-01 Sun StorEdge EBS 7.4_x64 Product Patch 5.10_x86 SP1 +124917-03 Obsoleted by: 125101-04 SunOS 5.10_x86: sd driver patch +124919-02 Obsoleted by: 120012-14 SunOS 5.10_x86: devfsadm patch support +124920-02 Obsoleted by: 126424-03 SunOS 5.10_x86: Solaris boot filelist.ramdisk patch +124923-03 Obsoleted by: 120012-14 SunOS 5.10_x86: ld.so.1 patch +124964-01 Obsoleted by: 126167-01 SunOS 5.10_x86: SunVTS 6.3 Patch Set 1 +124992-01 Obsoleted by: 125173-01 SunOS 5.10_x86: llc2 driver patch +124994-01 Obsoleted by: 120012-14 SunOS 5.10_x86: in.ndpd patch +124996-01 SunOS 5.10_x86: pci patch +125002-01 Obsoleted by: 126646-01 SunOS 5.10_x86: md driver patch +125010-01 Obsoleted by: 120012-14 SunOS 5.10_x86: rexec patch +125012-01 Obsoleted by: 120012-14 SunOS 5.10_x86: sendmail patch +125013-01 Obsoleted by: 120012-14 SunOS 5.10_x86: cpu.AuthenticAMD.15 patch +125015-03 Obsoleted by: 120012-14 SunOS 5.10_x86: IP filter patch +125017-02 Obsoleted by: 125381-01 SunOS 5.10_x86: audit and init patch +125019-02 Obsoleted by: 125101-07 SunOS 5.10_x86: scsi_vhci driver patch +125021-01 Obsoleted by: 120012-14 SunOS 5.10_x86: kernel/drv/aggr patch +125023-01 Obsoleted by: 127760-02 SunOS 5.10_x86: usr/sbin/sar patch +125025-01 Obsoleted by: 120012-14 SunOS 5.10_x86: basic audit reporting tool patch +125027-01 Obsoleted by: 120012-14 SunOS 5.10_x86: message queue patch +125034-01 Obsoleted by: 123776-03 SunOS 5.10_x86: pcicfg patch +125036-01 Obsoleted by: 120012-14 SunOS 5.10_x86: libinetsvc.so.1 patch +125038-06 Obsoleted by: 125082-08 SunOS 5.10_x86: mpt driver patch +125041-01 Obsoleted by: 120012-14 SunOS 5.10_x86: /usr/lib/inet/in.mpathd patch +125074-01 Obsoleted by: 120012-14 SunOS 5.10_x86: vold patch +125078-04 SunOS 5.10_x86: mech_krb5.so.1 +125080-01 SunOS 5.10_x86: bge and aggr driver patch +125082-16 Obsoleted by: 127128-11 SunOS 5.10_x86: mpt driver patch +125101-10 Obsoleted by: 120012-14 SunOS 5.10_x86: Kernel Update patch +125107-01 Obsoleted by: 120012-14 SunOS 5.10_x86: Thermal zone monitor patch +125109-02 Obsoleted by: 137018-01 SunOS 5.10_x86: crontab -e doesn''t invoke vi as the default editor +125111-01 Obsoleted by: 125895-01 SunOS 5.10_x86: cut patch +125113-01 Obsoleted by: 120012-14 SunOS 5.10_x86: iostat patch +125115-01 Obsoleted by: 120012-14 SunOS 5.10_x86: cpustat patch +125117-02 Obsoleted by: 120012-14 SunOS 5.10_x86: dld driver patch +125119-01 Obsoleted by: 120012-14 SunOS 5.10_x86: netstat patch +125121-03 Obsoleted by: 120012-14 SunOS 5.10_x86: e1000g driver patch +125124-01 Obsoleted by: 120012-14 SunOS 5.10_x86: hid driver patch +125128-01 Obsoleted by: 126256-02 SunOS 5.10_x86: prtpicl patch +125130-01 Obsoleted by: 120012-14 SunOS 5.10_x86: specfs patch +125132-01 Obsoleted by: 125368-03 SunOS 5.10_x86: patch passwd shadow +125165-13 Obsoleted by: 139607-01 SunOS 5.10_x86: Qlogic ISP Fibre Channel Device Driver +125168-01 Obsoleted by: 140130-06 SunOS 5.10_x86: gssd patch +125170-01 Obsoleted by: 127128-11 SunOS 5.10_x86: ktkt_warnd patch +125185-11 Obsoleted by: 139605-03 SunOS 5.10_x86: Sun Fibre Channel Device Drivers +125197-06 Obsoleted by: 127112-05 SunOS 5.10_x86: SUNWcry patch +125199-01 SunOS 5.10_x86: keyboard driver patch +125204-01 SunOS 5.10_x86: SCSI commands.h and inquiry.h feature patch +125205-07 Obsoleted by: 127128-11 SunOS 5.10_x86: sata driver patch +125250-01 Obsoleted by: 128293-01 SunOS 5.10_x86: rsm driver patch +125252-02 Obsoleted by: 127112-08 SunOS 5.10_x86: libdevinfo patch +125254-01 Obsoleted by: 127128-11 SunOS 5.10_x86: ktutil patch +125325-04 Obsoleted by: 125387-03 SunOS 5.10_x86: aac driver patch +125364-03 SunOS 5.10_x86: ehci, ohci, uhci driver feature patch +125365-03 Obsoleted by: 138111-01 SunOS 5.10_x86: adpu320 driver patch +125368-03 Obsoleted by: 127128-11 SunOS 5.10_x86: passwd/group/shadow patch +125370-06 Obsoleted by: 127756-01 SunOS 5.10_x86: Fault Manager patch +125372-01 SunOS 5.10_x86: sd driver feature patch +125379-05 Obsoleted by: 128301-03 SunOS 5.10_x86: timezones patch +125381-02 Obsoleted by: 127128-11 SunOS 5.10_x86: init and audit patch +125384-01 SunOS 5.10_x86: svc.startd feature patch +125386-02 SunOS 5.10_x86: sockfs feature patch +125387-04 Obsoleted by: 128338-01 SunOS 5.10_x86: aac driver patch +125391-02 SunOS 5.10_x86: feature point patch Sun Fibre Channel Device Drivers +125393-02 SunOS 5.10_x86: feature point patch Qlogic ISP Fibre Channel Device Driver +125395-01 SunOS 5.10_x86: feature point patch fp plug-in library of libcfgadm +125412-01 Obsoleted by: 120012-14 SunOS 5.10_x86: bge driver patch +125415-01 Obsoleted by: 128327-01 SunOS 5.10_x86: SIP patch +125417-06 Obsoleted by: 127965-04 SunOS 5.10_x86: UFS utilities patch +125419-01 Obsoleted by: 127128-11 SunOS 5.10_x86: in.telnetd patch +125421-01 SunOS 5.10_x86: scp feature patch +125423-02 Obsoleted by: 127128-11 SunOS 5.10_x86: ata patch +125428-01 Obsoleted by: 120012-14 SunOS 5.10_x86: ohci patch +125429-02 Obsoleted by: 120037-20 SunOS 5.10_x86: Kerberos patch +125431-01 Obsoleted by: 123325-03 SunOS 5.10_x86: scp patch +125433-01 Obsoleted by: 120012-14 SunOS 5.10_x86: proc.h patch +125466-02 Obsoleted by: 120012-14 SunOS 5.10_x86: PKCS provider patch +125479-01 SunOS 5.10_x86: pam_krb5 patch +125481-02 Obsoleted by: 128009-01 SunOS 5.10_x86: libaio patch +125483-03 Obsoleted by: 127128-11 SunOS 5.10_x86: cryptmod and r-commands patch +125485-04 Obsoleted by: 127128-11 SunOS 5.10_x86: nfssrv patch +125487-01 SunOS 5.10_x86: routeadm feature patch +125489-02 SunOS 5.10_x86: daplt and tavor patch +125491-02 Obsoleted by: 125554-03 SunOS 5.10_x86: nfsmapid patch +125493-01 SunOS 5.10_x86: /etc/inet/hosts feature patch +125495-02 SunOS 5.10_x86: CPU performance counter patch +125496-01 SunOS 5.10_x86: tzmon patch +125502-01 Obsoleted by: 127128-11 SunOS 5.10_x86: file command Patch +125509-10 Obsoleted by: 126107-28 Sun Cluster 3.2: Manageability and Serviceability Agent for Solaris 10_x86 +125518-05 Obsoleted by: 126107-13 Sun Cluster 3.2_x86: OPS Core Patch for Solaris 10_x86 +125544-02 Obsoleted by: 119411-06 GNOME 2.6.0_x86: GNOME panel applets +125552-02 Obsoleted by: 138242-01 SunOS 5.10_x86: svccfg & svcprop patch +125554-03 Obsoleted by: 124236-03 SunOS 5.10_x86: libnsl and nfsmapid patch +125567-02 Obsoleted by: 125365-02 SunOS 5.10_x86: adpu320 driver patch +125672-01 Obsoleted by: 122608-04 all: patch Solaris Security Toolkit 4.2 for LDOMS 1.0 +125739-01 SunOS 5.10_x86: Feature point patch Emulex-Sun LightPulse Fibre Channel Adapter driver +125793-03 Obsoleted by: 120012-14 SunOS 5.10_x86: daplt and tavor patch +125794-02 Obsoleted by: 125483-03 SunOS 5.10_x86: cryptmod patch +125796-01 Obsoleted by: 120037-20 SunOS 5.10_x86: pam_krb5.so.1 patch +125798-01 Obsoleted by: 125481-01 SunOS 5.10_x86: libaio.so.1 patch +125801-01 Obsoleted by: 125370-05 SunOS 5.10_x86: Fault Manager Patch +125805-01 Obsoleted by: 125903-01 SunOS 5.10_x86: uucp patch +125809-01 Obsoleted by: 125897-01 SunOS 5.10_x86: sendmail patch +125811-01 Obsoleted by: 126426-01 SunOS 5.10_x86: fsckall patch +125847-01 Obsoleted by: 127337-02 VRTSvxfs 5.0_x86: Rolling Patch for File System 5.0 +125852-01 Obsoleted by: 127338-02 VRTSodm 5.0RP1_x86: Rolling Patch 01 for ODM 5.0 +125893-02 Obsoleted by: 137037-01 SunOS 5.10_x86: cdrw patch +125897-03 Obsoleted by: 127883-02 SunOS 5.10_x86: sendmail and mail(1) patch +125900-01 Obsoleted by: 125082-10 SunOS 5.10_x86: xtmsboot patch +125903-02 Obsoleted by: 137277-01 SunOS 5.10_x86: uucico patch +125910-01 Obsoleted by: 126431-01 SunOS 5.10_x86: libcurses patch +125912-01 Obsoleted by: 126263-01 SunOS 5.10_x86: prctl fails to set resource controls on some processes +125913-01 Obsoleted by: 120012-14 SunOS 5.10_x86: ixgb port tx hang on Sun Fire X4x00 +125914-02 Obsoleted by: 127128-11 SunOS 5.10_x86: libzonecfg patch +125916-01 Obsoleted by: 128005-01 SunOS 5.10_x86: dlpi.h patch +125918-03 Obsoleted by: 127128-11 SunOS 5.10_x86: libproc patch +126134-04 Obsoleted by: 138061-03 SunOS 5.10_x86: sshd patch +126146-01 Obsoleted by: 127915-01 SunOS 5.10_x86: lofiadm patch +126148-02 Obsoleted by: 127977-04 SunOS 5.10_x86: in.mpathd patch +126167-01 Obsoleted by: 126921-01 SunOS 5.10_x86: SunVTS 6.3 Patch Set 2 +126254-02 Obsoleted by: 127112-08 SunOS 5.10_x86: libssl patch +126256-03 Obsoleted by: 128303-02 SunOS 5.10_x86: libpicldevtree patch +126257-07 Obsoleted by: 127719-03 SunOS 5.10_x86: rpc.metad patch +126259-03 Obsoleted by: 128001-01 SunOS 5.10_x86: in.ftpd patch +126261-02 Obsoleted by: 138262-01 SunOS 5.10_x86: logadm patch +126265-01 Obsoleted by: 128341-01 SunOS 5.10_x86: in.iked patch +126267-01 Obsoleted by: 128335-01 SunOS 5.10_x86: ibd patch +126271-01 Obsoleted by: 138246-01 SunOS 5.10_x86: lib/nss_compat.so.1 patch +126305-01 Obsoleted by: 126654-01 SunOS 5.10_x86: md patch +126307-01 Obsoleted by: 126658-01 SunOS 5.10_x86: timex patch +126309-01 Obsoleted by: 125175-02 SunOS 5.10_x86: tl driver patch +126311-01 Obsoleted by: 120012-14 SunOS 5.10_x86: nss nis patch +126313-01 Obsoleted by: 126660-01 SunOS 5.10_x86: Flow Accouting module patch +126315-01 Obsoleted by: 126650-01 SunOS 5.10_x86: sulogin patch +126317-01 Obsoleted by: 126652-01 SunOS 5.10_x86: tar patch +126318-01 Obsoleted by: 126656-01 SunOS 5.10_x86: poll driver patch +126321-01 Obsoleted by: 120012-14 SunOS 5.10_x86: /kernel/fs/fifofs patch +126420-02 Obsoleted by: 140797-01 SunOS 5.10_x86: umountall patch +126422-02 Obsoleted by: 137022-01 SunOS 5.10_x86: format patch +126435-06 SunOS 5.10_x86: raidctl patch +126449-05 Obsoleted by: 127128-11 SunOS 5.10_x86: Trusted Extensions labeld, chk_encodings, txzonemgr, zoneunshare, zoneshare patch +126451-01 Obsoleted by: 127128-11 SunOS 5.10_x86 Trusted Extensions add_allocatable patch +126537-01 SunOS 5.10_x86: Routing services patch +126539-02 Obsoleted by: 140900-01 SunOS 5.10_x86: i.manifest and r.manifest patch +126543-03 Obsoleted by: 140104-01 SunOS 5.10_x86: snmpdx and mibiisa patch +126646-01 Obsoleted by: 126257-03 SunOS 5.10_x86: md driver patch +126648-02 Obsoleted by: 127128-11 SunOS 5.10_x86: InfiniBand patch +126650-02 Obsoleted by: 138855-01 SunOS 5.10_x86: sulogin patch +126652-02 Obsoleted by: 137089-01 SunOS 5.10_x86: tar patch +126654-02 Obsoleted by: 137138-09 SunOS 5.10_x86: md patch +126660-02 Obsoleted by: 137103-01 SunOS 5.10_x86: flowacct patch +126662-02 Obsoleted by: 127960-01 SunOS 5.10_x86: rpcsec patch +126669-01 Obsoleted by: 124236-02 SunOS 5.10_x86: mech_krb5.so.1 patch +126671-01 Obsoleted by: 125082-10 SunOS 5.10_x86: scsi_vhci driver patch +126673-02 Obsoleted by: SunOS 5.10_x86: in.lpd patch +126678-02 SunOS 5.10_x86: System and Network Identification Libraries Patch +126837-01 Obsoleted by: 126662-01 SunOS 5.10_x86: rpcsec_gss patch +126839-01 Obsoleted by: 120012-14 SunOS 5.10_x86: lp patch +126917-01 Obsoleted by: 127128-11 SunOS 5.10_x86: Trusted Extensions pam.conf modified patch +127112-11 Obsoleted by: 127128-11 SunOS 5.10_x86: kernel patch +127295-01 Obsoleted by: 136678-01 SunOS 5.10_x86: SunVTS 6.4 Patch Set 1 +127345-01 Obsoleted by: 127363-01 VRTSvmpro 5.0RP1_x86: Maintenance Patch for VRTSvmpro 5.0 on 5.10_x86 +127387-05 Sun Cluster 3.2: FEATURE POINT PATCH CORE patch for Solaris 10_x86 +127592-01 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-Containers Patch for Solaris 10 +127595-01 Sun Cluster 3.2_x86: FEATURE POINT PATCH Grid Service Provisioning Patch for Solaris 10_ +127604-02 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-Sybase Patch for Solaris 10 +127607-02 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-NFS Patch for Solaris 10 +127610-05 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-Oracle Patch for Solaris 10 +127613-03 Sun Cluster 3.2_x86: FEATURE POINT PATCH CORE HA-Apache Patch for Solaris 10 +127616-01 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-Mysql Patch for Solaris 10 +127619-02 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-SAP patch for Solaris 10 +127622-02 Sun Cluster 3.2: FEATURE POINT PATCH HA SAP WEB AS Patch for Solaris 10_x86 +127625-02 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-SAPDB Patch for Solaris 10 +127631-01 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-Oracle Application Server Patch for Solaris 10 +127634-01 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-PostgreSQL Patch for Solaris 10 +127637-01 Sun Cluster 3.2_x86: FEATURE POINT PATCH HA-Websphere MQ Patch for Solaris 10 +127715-03 Obsoleted by: 126134-02 SunOS 5.10_x86: ssh patch +127717-01 Obsoleted by: 127112-02 SunOS 5.10_x86: ip Patch +127719-05 Obsoleted by: 127128-11 SunOS 5.10_x86: svc.startd and rpc.metad patch +127729-07 Obsoleted by: 127128-11 SunOS 5.10_x86: nfs zfs fs patch +127731-04 Obsoleted by: 127954-04 SunOS 5.10_x86: libsldap patch +127733-01 Obsoleted by: 125082-13 SunOS 5.10_x86: sd Patch +127736-02 Obsoleted by: 137281-01 SunOS 5.10_x86: dld patch +127738-02 Obsoleted by: 138374-02 WITHDRAWN PATCH SunOS 5.10_x86: fifofs patch +127740-03 Obsoleted by: 128295-02 SunOS 5.10_x86: rpcmod patch +127742-01 Obsoleted by: 127112-05 SunOS 5.10_x86: nxge patch +127744-02 Obsoleted by: 127854-02 SunOS 5.10_x86: sad driver patch +127746-01 SunOS 5.10_x86: kcf Patch +127748-01 Obsoleted by: 127128-11 SunOS 5.10_x86: pciehpc patch +127751-02 Obsoleted by: 128412-01 SunOS 5.10_x86: vuidmice driver patch +127754-01 Obsoleted by: 139556-08 SunOS 5.10_x86: pcicfg Patch +127758-01 Obsoleted by: 127954-04 SunOS 5.10_x86: nscd patch +127760-03 Obsoleted by: 138319-02 SunOS 5.10_x86: sar patch +127763-01 SunOS 5.10_x86: ktutil patch +127785-01 Obsoleted by: 126869-03 SunOS 5.10_x86: SunFreeware bzip2 man pages patch +127854-02 Obsoleted by: 139556-08 SunOS 5.10_x86: sad driver patch +127857-02 SunOS 5.10_x86: ata driver patch +127859-02 SunOS 5.10_x86: md_mirror Patch +127863-02 SunOS 5.10_x86: bge patch +127867-05 Obsoleted by: 137138-09 SunOS 5.10_x86: ufs patch +127869-01 Obsoleted by: 137138-09 SunOS 5.10_x86: mv patch +127871-04 SunOS 5.10_x86: marvell88sx driver patch +127875-02 SunOS 5.10_x86: raidctl patch +127877-01 Obsoleted by: 127879-01 SunOS 5.10_x86: du patch +127881-02 SunOS 5.10_x86: libsldap patch +127887-06 Obsoleted by: 127889-06 SunOS 5.10_x86: ipf patch +127889-11 Obsoleted by: 137138-09 SunOS 5.10_x86: ipf patch +127891-03 Obsoleted by: 138286-01 SunOS 5.10_x86: nge patch +127915-01 Obsoleted by: 137138-09 SunOS 5.10_x86: lofiadm patch +127919-02 SunOS 5.10_x86: mpt driver patch +127921-01 Obsoleted by: 127923-03 SunOS 5.10_x86: cpio patch +127923-04 Obsoleted by: 138276-01 SunOS 5.10_x86: cpio patch +127947-01 Sun Cluster 3.2: FEATURE POINT PATCH SunPlex patch for Solaris 10_x86 +127954-06 Obsoleted by: 127128-11 SunOS 5.10_x86: libc patch +127956-03 SunOS 5.10_x86: libc patch +127960-02 Obsoleted by: 138071-02 SunOS 5.10_x86: rpcsec patch +127965-06 Obsoleted by: 137138-09 SunOS 5.10_x86: UFS utilities patch +127967-01 SunOS 5.10_x86: svc.startd patch +127969-01 Obsoleted by: 127971-01 SunOS 5.10_x86: find patch +127971-01 Obsoleted by: 137138-09 SunOS 5.10_x86: find patch +127973-01 Obsoleted by: 127975-01 SunOS 5.10_x86: in.routed patch +127979-01 SunOS 5.10_x86: crypto patch +127983-01 SunOS 5.10_x86: passwd/group/shadow patch +127985-02 SunOS 5.10_x86: mech_krb5 Patch +127989-01 SunOS 5.10_x86: zoneadm patch +127991-02 SunOS 5.10_x86: zfs driver patch +127995-01 Obsoleted by: 140172-01 SunOS 5.10_x86: xargs patch +128001-01 Obsoleted by: 140400-01 SunOS 5.10_x86: in.ftpd patch +128003-02 SunOS 5.10_x86: libproc.so.1 and plockstat Patch +128007-04 Obsoleted by: 138368-02 SunOS 5.10_x86: usbsksp patch +128029-04 Obsoleted by: 127128-11 SunOS 5.10_x86: e1000g patch +128031-04 SunOS 5.10_x86: e1000g driver patch +128033-01 Obsoleted by: 127764-01 SunOS 5.10_x86: libtsol patch +128034-01 Obsoleted by: 127754-01 SunOS 5.10_x86: pcicfg patch +128060-02 Obsoleted by: 127336-02 VM 5.0_x64_RP1: RP1 for Volume Manager 5.0 on 5.10_x86 +128121-01 Sun Cluster 3.2: FEATURE POINT PATCH OPS patch for Solaris 10_x86 +128123-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-DNS patch for Solaris 10_x86 +128147-03 SunOS 5.10_x86: feature point patch Sun Fibre Channel Device Drivers +128149-01 SunOS 5.10_x86: feature point patch Common Fibre Channel HBA API and Host Bus Adapter Libraries +128252-01 SunOS 5.10_x86: ahci Patch +128254-01 Obsoleted by: 128319-01 SunOS 5.10_x86: ssh-keygen patch +128259-01 Obsoleted by: 128311-01 SunOS 5.10_x86: hsfs patch +128295-02 Obsoleted by: 138071-02 SunOS 5.10_x86: rpcmod patch +128297-01 Obsoleted by: 138889-02 SunOS 5.10_x86: pcfs patch +128301-04 Obsoleted by: 138857-01 SunOS 5.10_x86: zoneinfo timezones patch +128302-01 SunOS 5.10_x86: st patch +128305-04 Obsoleted by: 140092-01 SunOS 5.10_x86: ehci and scsa2usb patch +128307-05 Obsoleted by: 138270-02 SunOS 5.10_x86: devfs patch +128309-02 Obsoleted by: 140129-05 SunOS 5.10_x86: Broadcom NetXtreme II 5708S driver patch +128315-01 SunOS 5.10_x86: libnsl.so.1 patch +128319-01 Obsoleted by: 140775-02 SunOS 5.10_x86: ssh-keygen patch +128321-01 SunOS 5.10_x86: nxge patch +128323-01 Obsoleted by: 138889-02 SunOS 5.10_x86: dhcpagent patch +128327-01 Obsoleted by: 138384-01 SunOS 5.10_x86: sip patch +128331-02 Obsoleted by: 138624-02 SunOS 5.10_x86: pax patch +128338-02 Obsoleted by: 137132-03 SunOS 5.10_x86: aac driver patch +128341-01 Obsoleted by: 138107-02 SunOS 5.10_x86: in.iked patch +128343-01 Obsoleted by: 140172-01 SunOS 5.10_x86: ksh and sh patch +128345-01 Obsoleted by: 137024-01 SunOS 5.10_x86: time.h patch +128347-01 Obsoleted by: 137029-01 SunOS 5.10_x86: pcihp patch +128349-01 Obsoleted by: 137031-01 SunOS 5.10_x86: praudit patch +128397-02 Obsoleted by: 128309-02 SunOS 5.10_x86: Broadcom NetXtreme II 5708S driver patch +128398-02 SunOS 5.10_x86: libdevinfo.so.1 Patch +128401-05 Obsoleted by: 137138-09 SunOS 5.10_x86: sd driver patch +128405-01 Obsoleted by: 127128-11 SunOS 5.10_x86: USB hot plug patch +128407-01 Obsoleted by: 128297-01 SunOS 5.10_x86: pcfs patch +128409-01 SunOS 5.10_x86: ipfstat patch +128411-01 SunOS 5.10_x86: krtld patch +128414-01 Obsoleted by: 127867-02 SunOS 5.10_x86: ufs patch +128416-01 Obsoleted by: 137020-01 SunOS 5.10_x86: usr/lib/dmi/snmpXdmid patch +128453-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-DB patch for Solaris 10_x86 +128456-01 Sun Cluster 3.2: FEATURE POINT PATCH CORE patch for Solaris 10_x86 +128459-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-LiveCache Patch for Solaris 10_x86 +128462-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-Sun Java Systems App Server for Solaris 10_x86 +128465-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-SunONE Message Queue patch for Solaris 10_x86 +128468-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-BEA WebLogic patch for Solaris 10_x86 +128471-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-JavaWebServer patch for Solaris 10_x86 +128474-01 Sun Cluster 3.2: FEATURE POINT PATCH SC Checks patch for Solaris 10_x86 +128477-01 Sun Cluster 3.2: Sun Cluster 3.2_x86: FEATURE POINT PATCH Man Pages Patch +128492-01 Obsoleted by: 128307-04 SunOS 5.10_x86: devfs patch +128494-01 Obsoleted by: 127887-05 SunOS 5.10_x86: ipfstat patch +128496-01 Obsoleted by: 128333-01 SunOS 5.10_x86: conskbd patch +136678-01 Obsoleted by: 137325-01 SunOS 5.10_x86: SunVTS 6.4 Patch Set 2 +136714-01 Obsoleted by: 137112-05 SunOS 5.10_x86: cmlb patch +136717-01 Obsoleted by: 137033-01 SunOS 5.10_x86: namefs driver +136719-01 Obsoleted by: 127128-11 SunOS 5.10_x86: st driver patch +136783-01 SunOS 5.10_x86: feature point patch Sun Enterprise Network Array firmware and utilities +136785-01 SunOS 5.10_x86: feature point patch Emulex-Sun LightPulse Fibre Channel Adapter driver +136886-04 Obsoleted by: 137138-09 SunOS 5.10_x86: iscsi patch +136888-01 Obsoleted by: 137104-01 SunOS 5.10_x86: libdladm.so.1 patch +136890-01 Obsoleted by: 138321-01 SunOS 5.10_x86: pmap patch +137016-01 Obsoleted by: 137085-01 SunOS 5.10_x86: setfacl patch +137018-03 Obsoleted by: 138224-02 SunOS 5.10_x86: crontab patch +137020-02 Obsoleted by: 138362-01 SunOS 5.10_x86: snmpXdmid patch +137022-03 Obsoleted by: 137138-09 SunOS 5.10_x86: format patch +137029-01 Obsoleted by: 138382-01 SunOS 5.10_x86: pcihp patch +137037-01 Obsoleted by: 138248-01 SunOS 5.10_x86: cdrw patch +137043-01 Obsoleted by: 137087-01 SunOS 5.10_x86: zoneadmd patch +137051-01 Obsoleted by: 137092-01 SunOS 5.10_x86: arp patch +137087-01 Obsoleted by: 138073-02 SunOS 5.10_x86: zoneadmd patch +137089-01 Obsoleted by: 138622-01 SunOS 5.10_x86: tar patch +137092-01 Obsoleted by: 137112-06 SunOS 5.10_x86: arp patch +137096-01 Obsoleted by: 139556-08 SunOS 5.10_x86: libfmd_snmp.so.1 patch +137105-01 Obsoleted by: 136886-03 SunOS 5.10_x86: iscsitgtd patch +137107-01 Obsoleted by: 137279-01 SunOS 5.10_x86: usr/sbin/ipsecconf patch +137108-01 Obsoleted by: 128339-01 SunOS 5.10_x86: platform/i86pc/biosint patch +137112-08 Obsoleted by: 137138-09 SunOS 5.10_x86: kernel patch +137114-01 Obsoleted by: 127128-11 SunOS 5.10_x86: /usr/lib/krb5/libdb2.so.1 patch +137118-01 Obsoleted by: 138268-01 SunOS 5.10_x86: i.rbac & SUNWrmwbr/postinstall patch +137120-01 SunOS 5.10_x86: libldap patch +137122-06 Obsoleted by: 139556-08 SunOS 5.10_x86: e1000g driver patch +137126-02 Obsoleted by: 140107-01 SunOS 5.10_x86: sppp driver patch +137131-01 Obsoleted by: 137112-05 SunOS 5.10_x86: xpv driver patch +137132-03 Obsoleted by: 138765-01 SunOS 5.10_x86: aac driver patch +137136-01 SunOS 5.10_x86: libpam patch +137140-06 Obsoleted by: 138889-01 SunOS 5.10_x86: aggr patch +137279-01 Obsoleted by: 138107-02 SunOS 5.10_x86: ipsecconf patch +137281-02 Obsoleted by: 138862-01 SunOS 5.10_x86: dld patch +137290-01 Obsoleted by: 137138-09 SunOS 5.10_x86: st driver patch +137293-02 Obsoleted by: 137122-03 SunOS 5.10_x86: e1000g driver patch +137325-01 Obsoleted by: 138180-01 SunOS 5.10_x86: SunVTS 6.4 Patch Set 3 +137642-14 Sun Cluster 3.2: FEATURE POINT PATCH CORE patch for Solaris 10_x86 +137647-03 Sun Cluster 3.2: FEATURE POINT PATCH HA-Containers for Solaris 10_x86 +137653-05 Sun Cluster 3.2: FEATURE POINT PATCH SPM for Solaris 10_x86 +137656-02 Sun Cluster 3.2: FEATURE POINT PATCH Quorum Server Patch for Solaris 10_x86 +137671-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-Sybase Patch for Solaris 10_x86 +137674-04 Sun Cluster 3.2: FEATURE POINT PATCH HA-NFS Patch for Solaris 10_x86 +137677-03 Sun Cluster 3.2: FEATURE POINT PATCH HA-Apache Patch for Solaris 10_x86 +137680-02 Sun Cluster 3.2: FEATURE POINT PATCH Ha-MYSQL Patch for Solaris 10_x86 +137686-03 Sun Cluster 3.2: FEATURE POINT PATCH HA-SAP-WEB-AS Patch for Solaris 10_x86 +137689-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-SAPDB Patch for Solaris 10_x86 +137698-03 Sun Cluster 3.2: FEATURE POINT PATCH HA-PosgreSQL Patch for Solaris 10_x86 +137701-01 Sun Cluster 3.2: HA-Websphere MQ Patch FEATURE POINT PATCH for Solaris 10_x86 +137707-01 Sun Cluster 3.2: HA-DNS Patch FEATURE POINT PATCH for Solaris 10_x86 +137710-01 Sun Cluster 3.2: HA-DB Patch FEATURE POINT PATCH for Solaris 10_x86 +137713-02 Sun Cluster 3.2: FEATURE POINT PATCH ha-javawebserver patch for Solaris 10_x86 +137716-02 Sun Cluster 3.2: FEATURE POINT PATCH HA-Kerberos Patch for Solaris 10_x86 +137722-02 Sun Cluster 3.2: FEATURE POINT PATCH Ha-Sun Java System App Server Patch for Solaris 10_x86 +137725-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-SunONE Message Queue Patch for Solaris 10_x86 +137731-05 Sun Cluster 3.2: FEATURE POINT PATCH SC Checks Patch for Solaris 10_x86 +137733-02 Sun Cluster 3.2: FEATURE POINT PATCH Man Pages Patch for Solaris 10_x86 +137738-02 Sun Cluster 3.2: FEATURE POINT PATCH Volume Manager Patch for Solaris 10_x86 +137818-01 Obsoleted by: 138414-01 SunOS 5.10_x86: SunVTS 7.0 Patch Set 1 +138043-02 Obsoleted by: 137140-06 SunOS 5.10_x86: MAC patch +138045-02 Obsoleted by: 138256-02 SunOS 5.10_x86: bge driver patch +138047-02 Obsoleted by: 138264-02 SunOS 5.10_x86: nscd patch +138049-05 Obsoleted by: 137140-06 SunOS 5.10_x86: nxge driver patch +138053-02 Obsoleted by: 137138-09 SunOS 5.10_x86: marvell88sx driver patch +138057-02 Obsoleted by: 137128-02 SunOS 5.10_x86: lib/libmeta.so.1 patch +138059-01 Obsoleted by: 138232-01 SunOS 5.10_x86: klmops driver patch +138061-04 Obsoleted by: 137138-09 SunOS 5.10_x86: libldap patch +138065-03 Obsoleted by: 137138-09 SunOS 5.10_x86: pkcs11_softtoken patch +138067-01 Obsoleted by: 126134-04 SunOS 5.10_x86: libpam patch +138069-01 Obsoleted by: 138266-01 SunOS 5.10_x86: picld patch +138071-03 Obsoleted by: 137138-09 SunOS 5.10_x86: nfssrv and rpcsec patch +138073-02 Obsoleted by: 137138-09 SunOS 5.10_x86: zoneadm patch +138076-02 Obsoleted by: 137138-09 SunOS 5.10_x86: mpt driver patch +138078-01 Obsoleted by: 138097-01 SunOS 5.10_x86: syslogd patch +138080-01 Obsoleted by: 138090-01 SunOS 5.10_x86: useradd patch +138084-01 Obsoleted by: 138105-01 SunOS 5.10_x86: snoop patch +138086-01 Obsoleted by: 138088-01 SunOS 5.10_x86: audit_binfile.so.1 patch +138091-01 Obsoleted by: 138110-01 SunOS 5.10_x86: ata driver patch +138099-01 Obsoleted by: 138889-03 SunOS 5.10_x86: InfiniBand Support patch +138107-02 Obsoleted by: 139556-08 SunOS 5.10_x86: ipseckey and ikeadm patch +138109-01 SunOS 5.10_x86: rpcsec_gss patch +138110-01 Obsoleted by: 140086-01 SunOS 5.10_x86: ata driver patch +138113-01 Obsoleted by: 138849-01 SunOS 5.10_x86: lpstat patch +138115-01 Obsoleted by: 138851-01 SunOS 5.10_x86: libnsl.so.1 patch +138117-01 Obsoleted by: 138628-02 SunOS 5.10_x86: lp patch +138119-01 Obsoleted by: 138412-01 SunOS 5.10_x86: cancel patch +138121-01 Obsoleted by: 138859-01 SunOS 5.10_x86: Solaris Print Manager Patch +138123-01 Obsoleted by: 138863-01 SunOS 5.10_x86: libcrypto.so.0.9.7 patch +138124-01 Obsoleted by: 138853-01 SunOS 5.10_x86: postreverse patch +138126-01 Obsoleted by: 137138-09 SunOS 5.10_x86: c2audit and audit_event patch +138129-01 Obsoleted by: 138881-01 SunOS 5.10_x86: ses patch +138131-01 Obsoleted by: 140089-01 SunOS 5.10_x86: usr/sbin/vold patch +138158-01 Obsoleted by: 137134-01 SunOS 5.10_x86: iostat vmstat mpstat patch +138160-01 Obsoleted by: 138182-01 SunOS 5.10_x86: ike.preshared patch +138166-01 Obsoleted by: 137126-01 SunOS 5.10_x86: sppp driver patch +138170-01 Obsoleted by: 137124-01 SunOS 5.10_x86: libbsm patch +138180-01 Obsoleted by: 138503-01 SunOS 5.10_x86: SunVTS 6.4 Patch Set 4 +138224-03 Obsoleted by: 140560-01 SunOS 5.10_x86: cron patch +138226-02 Obsoleted by: 137138-09 SunOS 5.10_x86: devfsadm patch +138230-02 SunOS 5.10_x86: ssh patch +138232-01 Obsoleted by: 139556-08 SunOS 5.10_x86: klmops patch +138234-01 SunOS 5.10_x86: st patch +138238-01 SunOS 5.10_x86: fsck patch +138242-05 Obsoleted by: 139556-08 SunOS 5.10_x86: svccfg & svcprop patch +138244-02 SunOS 5.10_x86: pkcs11_softtoken patch +138250-01 SunOS 5.10_x86: nfssrv patch +138252-01 SunOS 5.10_x86: mpt patch +138254-02 Obsoleted by: 140084-01 SunOS 5.10_x86: /sbin/sh patch +138256-03 Obsoleted by: 140120-01 SunOS 5.10_x86: bge driver patch +138258-01 SunOS 5.10_x86: nxge patch +138260-01 SunOS 5.10_x86: md patch +138264-03 Obsoleted by: 140392-02 SunOS 5.10_x86: nscd patch +138268-03 Obsoleted by: 139997-02 SunOS 5.10_x86: i.rbac SUNWrmwbr/postinstall patch +138272-04 SunOS 5.10_x86: ipf patch +138274-01 SunOS 5.10_x86: raidctl patch +138278-01 SunOS 5.10_x86: ufs patch +138285-01 SunOS 5.10_x86: marvell88sx driver patch +138292-01 Obsoleted by: 138372-02 SunOS 5.10_x86: mech_krb5.so.1 patch +138294-01 Obsoleted by: 138378-01 SunOS 5.10_x86: ls patch +138295-01 SunOS 5.10_x86: feature point patch Fibre Channel HBA Port utility +138307-01 Obsoleted by: 137138-09 SunOS 5.10_x86: zfs patch +138309-02 Obsoleted by: 137138-09 SunOS 5.10_x86: scsi_vhci driver patch +138311-02 Obsoleted by: 137138-09 SunOS 5.10_x86: mem.so patch +138313-01 Obsoleted by: 137138-09 SunOS 5.10_x86: usba and swapgeneric patch +138317-01 Obsoleted by: 137112-03 SunOS 5.10_x86: procfs patch +138366-01 SunOS 5.10_x86: usba patch +138372-06 Obsoleted by: 140130-06 SunOS 5.10_x86: mech_krb5.so.1 patch +138380-01 SunOS 5.10_x86: devfsadm patch +138391-02 Obsoleted by: 137112-05 SunOS 5.10_x86: nfs patch +138393-01 Obsoleted by: 138630-01 SunOS 5.10_x86: hidparser patch +138395-01 Obsoleted by: 137138-09 SunOS 5.10_x86: raidcfg patch +138398-01 Obsoleted by: 138635-01 SunOS 5.10_x86: ar patch +138402-01 Obsoleted by: 137138-09 SunOS 5.10_x86: libipmi.so.1 patch +138404-01 Obsoleted by: 136894-01 SunOS 5.10_x86: usr/lib/acct/runacct patch +138406-01 Obsoleted by: 138637-01 SunOS 5.10_x86: pkgstrct.h patch +138412-01 Obsoleted by: 138628-04 SunOS 5.10_x86: /usr/bin/cancel patch +138414-01 Obsoleted by: 138505-02 SunOS 5.10_x86: SunVTS 7.0 Patch Set 2 +138505-03 Obsoleted by: 139172-01 SunOS 5.10_x86: SunVTS 7.0 Patch Set 3 +138549-01 Obsoleted by: 139603-01 SunOS 5.10_x86: multipathing patch +138563-01 Sun Cluster 3.2: FEATURE POINT PATCH JFreeChart Patch for Solaris 10_x86 +138626-02 Obsoleted by: 138175-01 SunOS 5.10_x86: igb FMA support patch +138628-07 Obsoleted by: 139556-08 SunOS 5.10_x86: printing patch +138630-01 Obsoleted by: 140092-01 SunOS 5.10_x86: hidparser patch +138849-02 Obsoleted by: 138628-04 SunOS 5.10_x86: lpstat patch +138851-02 Obsoleted by: 139556-08 SunOS 5.10_x86: libnsl.so.1 patch +138857-02 Obsoleted by: 140075-01 SunOS 5.10_x86: Timezone commands and zoneinfo database update Patch +138859-01 Obsoleted by: 138628-04 SunOS 5.10_x86: Solaris print manager patch +138862-01 Obsoleted by: 138889-01 SunOS 5.10_x86: dld patch +138863-02 Obsoleted by: 139501-02 SunOS 5.10_x86: libcrypto.so.0.9.7 patch +138865-01 Obsoleted by: 138879-01 SunOS 5.10_x86: Project.so and Project.pm patch +138871-01 Obsoleted by: 138628-04 SunOS 5.10_x86: libpapi.so.0 patch +138873-02 Obsoleted by: 140133-01 SunOS 5.10_x86: xge driver patch +138882-02 Obsoleted by: 140106-01 SunOS 5.10_x86: SUNW_md_link.so patch +138889-08 Obsoleted by: 139556-08 SunOS 5.10_x86: Kernel Patch +139172-01 Obsoleted by: 139657-02 SunOS 5.10_x86: SunVTS 7.0 Patch Set 4 +139387-02 Obsoleted by: 140090-02 SunOS 5.10_x86: mount, quota and libmapid.so.1 patch +139389-02 Obsoleted by: 139556-08 SunOS 5.10_x86: root_archive Patch +139391-01 Obsoleted by: 138628-04 SunOS 5.10_x86: lpadmin and ppdmgr patch +139424-01 Sun Cluster 3.2: FEATURE POINT PATCH HA-Samba patch for Solaris 10_x86 +139457-01 Obsoleted by: 140094-01 SunOS 5.10_x86: acctctl patch +139465-01 Obsoleted by: 140114-01 SunOS 5.10_x86: mkfs and newfs patch +139467-04 Obsoleted by: 139561-02 SunOS 5.10_x86: nfs patch +139469-01 Obsoleted by: 140123-01 SunOS 5.10_x86: metastat and mdmonitord patch +139475-01 Obsoleted by: 139990-01 SunOS 5.10_x86: wtmpfix patch +139479-01 Obsoleted by: 138372-03 SunOS 5.10_x86: pam_krb5.so.1 patch +139482-01 Obsoleted by: 140102-01 SunOS 5.10_x86: rpc.ypupdated patch +139484-05 Obsoleted by: 139556-08 SunOS 5.10_x86: ufs patch +139488-01 Obsoleted by: 138628-04 SunOS 5.10_x86: lpr patch +139491-01 Obsoleted by: 140141-01 SunOS 5.10_x86: libproc patch +139493-01 Obsoleted by: 139556-08 SunOS 5.10_x86: cpumem-retire.so patch +139495-01 Obsoleted by: 139556-08 SunOS 5.10_x86: syslog-msgs.so patch +139499-04 Obsoleted by: 139556-08 SunOS 5.10_x86: libpkcs11.so patch +139501-02 Obsoleted by: 140119-06 SunOS 5.10_x86: openssl patch +139505-01 Obsoleted by: 140127-01 SunOS 5.10_x86: passwdutil.so patch +139507-02 Obsoleted by: 139556-08 SunOS 5.10_x86: libc.so.1 patch +139512-01 Obsoleted by: 140112-02 SunOS 5.10_x86: usr/sbin/format patch +139513-01 Obsoleted by: 139556-08 SunOS 5.10_x86: dimm.so patch +139552-01 Obsoleted by: 138889-02 SunOS 5.10_x86: ipf patch +139554-01 Obsoleted by: 140093-01 SunOS 5.10_x86: touch patch +139559-01 Obsoleted by: 140131-01 SunOS 5.10_x86: rds patch +139561-02 Obsoleted by: 139556-08 SunOS 5.10_x86: autofs patch +139567-01 Obsoleted by: 138889-02 SunOS 5.10_x86: sd driver patch +139569-01 Obsoleted by: 140108-01 SunOS 5.10_x86: nss_nisplus Shared Object Patch +139573-01 Obsoleted by: 138889-02 SunOS 5.10_x86: mpt and raidctl patch +139575-03 Obsoleted by: 139556-08 SunOS 5.10_x86: file crle ldd stings elfdump patch +139577-01 Obsoleted by: 140121-01 SunOS 5.10_x86: netpr patch +139580-03 Obsoleted by: 139556-08 SunOS 5.10_x86: zfs Patch +139882-01 Obsoleted by: 140092-01 SunOS 5.10_x86: uhci patch +139927-01 Obsoleted by: 138767-01 SunOS 5.10_x86: ldap-client manifest patch +139937-01 SunOS 5.10_x86: libpkcs11.so patch +139984-02 SunOS 5.10_x86: localedef and libc.so.1 patch +139992-02 SunOS 5.10_x86: ufs patch +139999-01 SunOS 5.10_x86: openssl patch +140002-04 SunOS 5.10_x86: GRUB patch +140005-01 SunOS 5.10_x86: sd patch +140073-01 SunOS 5.10_x86: lpr patch +140085-01 SunOS 5.10_x86: lpstat patch +140087-01 SunOS 5.10_x86: lp, libpapi-common.so.0 and lpd patch +140088-01 SunOS 5.10_x86: ipf patch +140098-01 SunOS 5.10_x86: e1000g patch +140100-01 SunOS 5.10_x86: autofs patch +140113-01 SunOS 5.10_x86: nfs patch +140118-01 SunOS 5.10_x86: file,crle,ldd,stings patch +140122-02 SunOS 5.10_x86: zfs patch +140125-01 SunOS 5.10_x86: mpt and raidctl patch +140132-01 SunOS 5.10_x86: usr/sbin/zoneadm patch +140143-01 Obsoleted by: 139556-08 SunOS 5.10_x86: mdb patch +140145-01 Obsoleted by: 140166-01 SunOS 5.10_x86: ldap_cachemgr patch +140149-01 Obsoleted by: 140160-01 SunOS 5.10_x86: rsh/rlogin/rcp/rdist patch +140174-01 SunOS 5.10_x86: iSCSI Patch +140191-01 Obsoleted by: 140388-01 SunOS 5.10_x86: statd patch +140193-01 Obsoleted by: 138628-04 SunOS 5.10_x86: lpd-port patch +140195-01 Obsoleted by: 139556-08 SunOS 5.10_x86: isa and pci_autoconfig patch +140198-01 Obsoleted by: 139556-08 SunOS 5.10_x86: bad_patches patch +140199-01 Obsoleted by: 140558-01 SunOS 5.10_x86: libldap.so.5 patch +140335-01 Obsoleted by: 138889-03 SunOS 5.10_x86: stmsboot and mpxio-upgrade patch +140337-01 Obsoleted by: 140405-01 SunOS 5.10_x86: lockstat patch +140384-01 Obsoleted by: 140564-01 SunOS 5.10_x86: ptsl patch +140390-01 SunOS 5.10_x86: bad_patches patch +140396-01 SunOS 5.10_x86: lpadmin and ppdmgr patch +140398-01 SunOS 5.10_x86: lpd-port patch +140403-01 SunOS 5.10_x86: stmsboot patch +140407-01 SunOS 5.10_x86: pcie patch +140410-01 Obsoleted by: 139556-08 SunOS 5.10_x86: fmd patch +140412-01 Obsoleted by: 140119-06 SunOS 5.10_x86: sftp patch +140414-01 Obsoleted by: 139556-08 SunOS 5.10_x86: libike.so.1 patch +140678-01 Obsoleted by: 139556-08 SunOS 5.10_x86: usr/platform/i86pc/lib/fm/eft/intel.eft +140680-01 Obsoleted by: 139556-08 SunOS 5.10_x86: dtrace specfs ksyms mm patch +140684-01 Obsoleted by: 140164-01 SunOS 5.10_x86: kernel/sys/semsys patch +140775-03 Obsoleted by: 140119-06 SunOS 5.10_x86: sshd patch +140777-01 Obsoleted by: 139556-08 SunOS 5.10_x86: zlogin patch +140779-01 Obsoleted by: 140105-02 SunOS 5.10_x86: printf Patch +140795-01 SunOS 5.10_x86: usr/sbin/zlogin patch +140856-01 Obsoleted by: 139556-08 SunOS 5.10_x86: zoneadm migration patch +141007-01 Obsoleted by: 139556-08 SunOS 5.10_x86: sbin/ifconfig patch +141009-01 Obsoleted by: 139556-08 SunOS 5.10_x86: kernel/drv/keysock patch + + +============================================================================ +Solaris 10_x86 Complete Listing of Released Patches: +============================================================================ + +SunOS Released Patch List: +---------------------------------------------------------------------------- + +Total Patches: 425 +Total Bugfixes: 13164 + +Patch-ID# 113000-07 +Synopsis: SunOS 5.10_x86: SUNWgrub patch +BugId's fixed with this patch: 6238277 6332309 6346889 6353778 6355498 +Changes incorporated in this version: 6355498 +Date: Jan/06/06 + +Patch-ID# 139839-04 +Synopsis: Sun Grid Engine 6.2_x86: maintenance patch +BugId's fixed with this patch: 5082660 6285117 6288944 6288945 6317028 6319223 +6320659 6326191 6558329 6579326 6622128 6675023 +6682558 6695481 6702908 6709535 6709552 6724000 +6726233 6727295 6728379 6730437 6730487 6732134 +6734764 6738091 6738586 6744738 6748854 6749902 +6750325 6750834 6752921 6753642 6754094 6754568 +6755684 6762505 6767234 6776011 6776137 6786152 +6786247 6786343 6786406 6786957 6787485 6788512 +6788514 6788539 6788570 6788644 6788646 6788647 +6788649 6788651 6788652 6788665 6791556 6791931 +6792604 6792704 6793076 6793547 6793687 6794303 +6795248 6796068 6796175 6797579 6799028 6799032 +6799088 6801151 6802883 6804626 6805914 6814823 +Changes incorporated in this version: 6814823 +Date: Mar/18/09 + +Patch-ID# 139894-01 +Synopsis: Instant Messaging 8.0_x86: generic patch +BugId's fixed with this patch: 6807465 6807482 6807494 6808075 6808094 6808103 +6809830 6812306 6815809 6816580 6818164 6818707 +6818819 6818830 6821743 6423351 6628502 6689323 +6701028 6724472 6726237 6728796 6739701 6749724 +6749726 6762310 6770917 6777467 6781961 6782713 +6792217 6795228 6795305 6802803 6805125 6805235 +6807445 6807458 +Changes incorporated in this version: 6423351 6628502 6689323 6701028 6724472 6726237 +6728796 6739701 6749724 6749726 6762310 6770917 +6777467 6781961 6782713 6792217 6795228 6795305 +6802803 6805125 6805235 6807445 6807458 6807465 +6807482 6807494 6808075 6808094 6808103 6809830 +6812306 6815809 6816580 6818164 6818707 6818819 +6818830 6821743 +Date: May/08/09 + +Patch-ID# 139909-01 +Synopsis: Sun Cluster 3.2: HA-Samba patch for Solaris 10_x86 +BugId's fixed with this patch: 6659883 +Changes incorporated in this version: +Date: Jan/15/09 + +Patch-ID# 139922-02 +Synopsis: Sun Cluster 3.2: JFreeChart patch for Solaris 10_x86 +BugId's fixed with this patch: 6701888 6774628 +Changes incorporated in this version: 6774628 +Date: Jan/26/09 + +Patch-ID# 140018-03 +Synopsis: Sun Cluster 3.2: CORE preUpgrade Patch for Solaris 10_x86 +BugId's fixed with this patch: 6800577 6747530 6798588 +Changes incorporated in this version: 6800577 +Date: Feb/13/09 + +Patch-ID# 140422-02 +Synopsis: NHAS 3.0_x86 foundation services: PMD patch for Solaris 10 x64 +BugId's fixed with this patch: 6776872 6811254 +Changes incorporated in this version: 6811254 +Date: Apr/22/09 + +Patch-ID# 140456-01 +Synopsis: X11 6.6.2_x86: VNC Viewer patch +BugId's fixed with this patch: 6661682 6777095 +Changes incorporated in this version: +Date: Jan/05/09 + +Patch-ID# 140759-03 +Synopsis: Service Provisioning System 6.0_x86: Command Line User Interface Booster Patch +BugId's fixed with this patch: 6683768 6691866 6743009 6743018 6768010 6771046 +6771076 6771100 6777417 6780808 6792012 6792320 +6805159 6805984 6826370 +Changes incorporated in this version: 6826370 +Date: Apr/24/09 + +Patch-ID# 140762-03 +Synopsis: Service Provisioning System 6.0_x86: Common Files For Server and Command Line Interface Booster Patch +BugId's fixed with this patch: 6683768 6691866 6743009 6743018 6768010 6771046 +6771076 6771100 6777417 6780808 6792012 6792320 +6805159 6805984 6826370 +Changes incorporated in this version: 6826370 +Date: Apr/24/09 + +Patch-ID# 140938-01 +Synopsis: Hardware/PROM Netra CT900 Firmware Update for R3HW1 +BugId's fixed with this patch: 6803227 +Changes incorporated in this version: 6803227 +Date: Mar/12/09 + + + From scm-commit at wald.intevation.org Tue Jun 2 17:47:36 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 17:47:36 +0200 (CEST) Subject: [Openvas-commits] r3577 - trunk/tools Message-ID: <20090602154736.6DB1913478@pyrosoma.intevation.org> Author: mime Date: 2009-06-02 17:47:36 +0200 (Tue, 02 Jun 2009) New Revision: 3577 Modified: trunk/tools/build-openvas.sh Log: Download openvas-plugins-1.0.7 Modified: trunk/tools/build-openvas.sh =================================================================== --- trunk/tools/build-openvas.sh 2009-06-02 15:07:09 UTC (rev 3576) +++ trunk/tools/build-openvas.sh 2009-06-02 15:47:36 UTC (rev 3577) @@ -94,7 +94,7 @@ DOWNLOADS[0]="http://wald.intevation.org/frs/download.php/572/openvas-libraries-2.0.2.tar.gz"; # nice to have on Webserver: openvas-*-current.tar.gz DOWNLOADS[1]="http://wald.intevation.org/frs/download.php/561/openvas-libnasl-2.0.1.tar.gz"; DOWNLOADS[2]="http://wald.intevation.org/frs/download.php/562/openvas-server-2.0.1.tar.gz"; -DOWNLOADS[3]="http://wald.intevation.org/frs/download.php/576/openvas-plugins-1.0.6.tar.gz"; +DOWNLOADS[3]="http://wald.intevation.org/frs/download.php/588/openvas-plugins-1.0.7.tar.gz"; # need dirnames TARS[0]="openvas-libraries"; From scm-commit at wald.intevation.org Tue Jun 2 19:11:39 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 19:11:39 +0200 (CEST) Subject: [Openvas-commits] r3578 - in trunk/openvas-manager: . src/tests Message-ID: <20090602171139.21EBB1120BC@pyrosoma.intevation.org> Author: mattm Date: 2009-06-02 19:11:37 +0200 (Tue, 02 Jun 2009) New Revision: 3578 Modified: trunk/openvas-manager/ChangeLog trunk/openvas-manager/src/tests/common.c trunk/openvas-manager/src/tests/common.h trunk/openvas-manager/src/tests/omp_abort_task_0.c trunk/openvas-manager/src/tests/omp_create_task_0.c trunk/openvas-manager/src/tests/omp_delete_report_0.c trunk/openvas-manager/src/tests/omp_delete_report_1.c trunk/openvas-manager/src/tests/omp_delete_task_0.c trunk/openvas-manager/src/tests/omp_delete_task_1.c trunk/openvas-manager/src/tests/omp_get_certificates_0.c trunk/openvas-manager/src/tests/omp_get_dependencies_0.c trunk/openvas-manager/src/tests/omp_get_nvt_all_0.c trunk/openvas-manager/src/tests/omp_get_nvt_details_0.c trunk/openvas-manager/src/tests/omp_get_nvt_details_2.c trunk/openvas-manager/src/tests/omp_get_nvt_details_3.c trunk/openvas-manager/src/tests/omp_get_nvt_feed_checksum_0.c trunk/openvas-manager/src/tests/omp_get_preferences_0.c trunk/openvas-manager/src/tests/omp_get_preferences_1.c trunk/openvas-manager/src/tests/omp_get_report_0.c trunk/openvas-manager/src/tests/omp_get_rules_0.c trunk/openvas-manager/src/tests/omp_get_rules_1.c trunk/openvas-manager/src/tests/omp_get_status_0.c trunk/openvas-manager/src/tests/omp_get_status_1.c trunk/openvas-manager/src/tests/omp_get_status_2.c trunk/openvas-manager/src/tests/omp_get_status_3.c trunk/openvas-manager/src/tests/omp_get_status_4.c trunk/openvas-manager/src/tests/omp_get_version_0.c trunk/openvas-manager/src/tests/omp_help_0.c trunk/openvas-manager/src/tests/omp_modify_report_0.c trunk/openvas-manager/src/tests/omp_modify_task_0.c trunk/openvas-manager/src/tests/omp_modify_task_1.c trunk/openvas-manager/src/tests/omp_start_task_0.c Log: Move response statuses into attributes, in tests. * src/tests/omp_abort_task_0.c, src/tests/omp_create_task_0.c, src/tests/omp_delete_report_0.c, src/tests/omp_delete_report_1.c, src/tests/omp_delete_task_0.c, src/tests/omp_delete_task_1.c, src/tests/omp_get_certificates_0.c, src/tests/omp_get_dependencies_0.c, src/tests/omp_get_nvt_all_0.c, src/tests/omp_get_nvt_details_0.c, src/tests/omp_get_nvt_details_2.c, src/tests/omp_get_nvt_details_3.c, src/tests/omp_get_nvt_feed_checksum_0.c, src/tests/omp_get_preferences_0.c, src/tests/omp_get_preferences_1.c, src/tests/omp_get_report_0.c, src/tests/omp_get_rules_0.c, src/tests/omp_get_rules_1.c, src/tests/omp_get_status_0.c, src/tests/omp_get_status_1.c, src/tests/omp_get_status_2.c, src/tests/omp_get_status_3.c, src/tests/omp_get_status_4.c, src/tests/omp_get_version_0.c, src/tests/omp_help_0.c, src/tests/omp_modify_report_0.c, src/tests/omp_modify_task_0.c, src/tests/omp_modify_task_1.c, src/tests/omp_start_task_0.c: Adjust for attribute statuses. * src/tests/common.h (entity_t): Add attributes. (add_attribute, entity_child, entity_attribute): New headers. * src/tests/common.c (make_entity): Init attributes. (add_attribute, entity_attribute, add_attributes) (compare_find_attribute): New functions. (free_entity): Free attributes. (entity_child): Make name param const. (handle_start_element): Add attributes. (compare_entities): Compare attributes. Correct NULL check. (task_status, authenticate, start_task, wait_for_task_start) (wait_for_task_end, delete_task): Adjust for attribute statuses. Modified: trunk/openvas-manager/ChangeLog =================================================================== --- trunk/openvas-manager/ChangeLog 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/ChangeLog 2009-06-02 17:11:37 UTC (rev 3578) @@ -1,5 +1,38 @@ 2009-06-02 Matthew Mundell + Move response statuses into attributes, in tests. + + * src/tests/omp_abort_task_0.c, src/tests/omp_create_task_0.c, + src/tests/omp_delete_report_0.c, src/tests/omp_delete_report_1.c, + src/tests/omp_delete_task_0.c, src/tests/omp_delete_task_1.c, + src/tests/omp_get_certificates_0.c, src/tests/omp_get_dependencies_0.c, + src/tests/omp_get_nvt_all_0.c, src/tests/omp_get_nvt_details_0.c, + src/tests/omp_get_nvt_details_2.c, src/tests/omp_get_nvt_details_3.c, + src/tests/omp_get_nvt_feed_checksum_0.c, src/tests/omp_get_preferences_0.c, + src/tests/omp_get_preferences_1.c, src/tests/omp_get_report_0.c, + src/tests/omp_get_rules_0.c, src/tests/omp_get_rules_1.c, + src/tests/omp_get_status_0.c, src/tests/omp_get_status_1.c, + src/tests/omp_get_status_2.c, src/tests/omp_get_status_3.c, + src/tests/omp_get_status_4.c, src/tests/omp_get_version_0.c, + src/tests/omp_help_0.c, src/tests/omp_modify_report_0.c, + src/tests/omp_modify_task_0.c, src/tests/omp_modify_task_1.c, + src/tests/omp_start_task_0.c: Adjust for attribute statuses. + + * src/tests/common.h (entity_t): Add attributes. + (add_attribute, entity_child, entity_attribute): New headers. + + * src/tests/common.c (make_entity): Init attributes. + (add_attribute, entity_attribute, add_attributes) + (compare_find_attribute): New functions. + (free_entity): Free attributes. + (entity_child): Make name param const. + (handle_start_element): Add attributes. + (compare_entities): Compare attributes. Correct NULL check. + (task_status, authenticate, start_task, wait_for_task_start) + (wait_for_task_end, delete_task): Adjust for attribute statuses. + +2009-06-02 Matthew Mundell + Move response statuses into attributes. * src/ompd.c (serve_omp): On process_omp_client_input error, write out Modified: trunk/openvas-manager/src/tests/common.c =================================================================== --- trunk/openvas-manager/src/tests/common.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/common.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -377,6 +377,7 @@ entity->name = g_strdup (name ?: ""); entity->text = g_strdup (text ?: ""); entity->entities = NULL; + entity->attributes = NULL; return entity; } @@ -413,6 +414,26 @@ } /** + * @brief Add an attribute to an XML entity. + * + * @param[in] entity The entity. + * @param[in] name Name of the attribute. Copied, copy is freed by + * free_entity. + * @param[in] text Text of the attribute. Copied, copy is freed by + * free_entity. + * + * @return The new entity. + */ +void +add_attribute (entity_t entity, const char* name, const char* value) +{ + if (entity->attributes == NULL) + entity->attributes = g_hash_table_new_full (g_str_hash, g_str_equal, + g_free, g_free); + g_hash_table_insert (entity->attributes, g_strdup (name), g_strdup (value)); +} + +/** * @brief Free an entity, recursively. * * @param[in] entity The entity. @@ -424,7 +445,7 @@ { free (entity->name); free (entity->text); - // FIX props + if (entity->attributes) g_hash_table_destroy (entity->attributes); if (entity->entities) { GSList* list = entity->entities; @@ -488,7 +509,7 @@ * @return Entity if found, else NULL. */ entity_t -entity_child (entity_t entity, char* name) +entity_child (entity_t entity, const char* name) { if (entity->entities) { @@ -501,6 +522,22 @@ } /** + * @brief Get an attribute of an entity. + * + * @param entity Entity. + * @param name Name of the attribute. + * + * @return Attribute if found, else NULL. + */ +const char* +entity_attribute (entity_t entity, const char* name) +{ + if (entity->attributes) + return (const char*) g_hash_table_lookup (entity->attributes, name); + return NULL; +} + +/** * @brief Buffer for reading from the manager. */ char buffer_start[BUFFER_SIZE]; @@ -515,6 +552,26 @@ */ char* buffer_end = buffer_start + BUFFER_SIZE; +void +add_attributes (entity_t entity, const gchar **names, const gchar **values) +{ + if (*names && *values) + { + if (entity->attributes == NULL) + entity->attributes = g_hash_table_new_full (g_str_hash, g_str_equal, + g_free, g_free); + while (*names && *values) + { + if (*values) + g_hash_table_insert (entity->attributes, + g_strdup (*names), + g_strdup (*values)); + names++; + values++; + } + } +} + /** * @brief Handle the start of an OMP XML element. * @@ -544,6 +601,8 @@ else entity = add_entity (NULL, element_name, NULL); + add_attributes (entity, attribute_names, attribute_values); + /* "Push" the element. */ if (data->first == NULL) data->current = data->first = g_slist_prepend (NULL, entity); @@ -764,6 +823,23 @@ } /** + * @brief Look for a key-value pair in a hashtable. + * + * @param[in] key Key. + * @param[in] value Value. + * + * @return FALSE if found, TRUE otherwise. + */ +gboolean +compare_find_attribute (gpointer key, gpointer value, gpointer attributes2) +{ + gchar* value2 = g_hash_table_lookup (attributes2, key); + if (value2 && strcmp (value, value2) == 0) return FALSE; + tracef (" compare failed attribute: %s\n", (char*) value); + return TRUE; +} + +/** * @brief Compare two XML entity. * * @param[in] entity1 First entity. @@ -774,8 +850,12 @@ int compare_entities (entity_t entity1, entity_t entity2) { - if (entity1 == NULL) return entity2 == NULL; + //tracef (" compare %p vs %p\n", entity1, entity2); + if (entity1 == NULL) return entity2 == NULL ? 0 : 1; if (entity2 == NULL) return 1; + //tracef (" attribs %p vs %p\n", entity1->attributes, entity2->attributes); + if (entity1->attributes == NULL) return entity2->attributes == NULL ? 0 : 1; + if (entity2->attributes == NULL) return 1; if (strcmp (entity1->name, entity2->name)) { @@ -788,13 +868,25 @@ entity1->text, entity2->text, entity1->name); return 1; } - // FIX props + + if (g_hash_table_find (entity1->attributes, + compare_find_attribute, + (gpointer) entity2->attributes)) + { + tracef (" compare failed attributes\n"); + return 1; + } + // FIX entities can be in any order GSList* list1 = entity1->entities; GSList* list2 = entity2->entities; while (list1 && list2) { - if (compare_entities (list1->data, list2->data)) return 1; + if (compare_entities (list1->data, list2->data)) + { + tracef (" compare failed subentity\n"); + return 1; + } list1 = g_slist_next (list1); list2 = g_slist_next (list2); } @@ -853,9 +945,7 @@ const char* task_status (entity_t response) { - entity_t status = entity_child (response, "status"); - if (status) return entity_text (status); - return NULL; + return entity_attribute (response, "status"); } /** @@ -885,13 +975,13 @@ #if 1 return 0; #else - /* What to do if OMP authenticate is changed to always respond. */ + /* What to do if OMP authenticate is changed to respond always. */ entity_t entity = NULL; if (read_entity (session, &entity)) return -1; entity_t expected = add_entity (NULL, "authenticate_response", NULL); - add_entity (&expected->entities, "status", "201"); + add_attribute (expected, "status", "201"); ret = compare_entities (entity, expected); @@ -1059,19 +1149,18 @@ /* Check the response. */ - entity_t status = entity_child (entity, "status"); + const char* status = entity_attribute (entity, "status"); if (status == NULL) { free_entity (entity); return -1; } - const char* status_text = entity_text (status); - if (strlen (status_text) == 0) + if (strlen (status) == 0) { free_entity (entity); return -1; } - char first = status_text[0]; + char first = status[0]; free_entity (entity); if (first == '2') return 0; return -1; @@ -1101,19 +1190,18 @@ /* Check the response. */ - entity_t status = entity_child (entity, "status"); + const char* status = entity_attribute (entity, "status"); if (status == NULL) { free_entity (entity); return -1; } - const char* status_text = entity_text (status); - if (strlen (status_text) == 0) + if (strlen (status) == 0) { free_entity (entity); return -1; } - if (status_text[0] == '2') + if (status[0] == '2') { /* Check the running status of the given task. */ @@ -1203,19 +1291,18 @@ /* Check the response. */ - entity_t status = entity_child (entity, "status"); + const char* status = entity_attribute (entity, "status"); if (status == NULL) { free_entity (entity); return -1; } - const char* status_text = entity_text (status); - if (strlen (status_text) == 0) + if (strlen (status) == 0) { free_entity (entity); return -1; } - if (status_text[0] == '2') + if (status[0] == '2') { /* Check the running status of the given task. */ @@ -1303,19 +1390,18 @@ /* Check the response. */ - entity_t status = entity_child (entity, "status"); + const char* status = entity_attribute (entity, "status"); if (status == NULL) { free_entity (entity); return -1; } - const char* status_text = entity_text (status); - if (strlen (status_text) == 0) + if (strlen (status) == 0) { free_entity (entity); return -1; } - char first = status_text[0]; + char first = status[0]; free_entity (entity); if (first == '2') return 0; return -1; Modified: trunk/openvas-manager/src/tests/common.h =================================================================== --- trunk/openvas-manager/src/tests/common.h 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/common.h 2009-06-02 17:11:37 UTC (rev 3578) @@ -52,7 +52,7 @@ { char* name; char* text; - //void* attributes; + GHashTable* attributes; entities_t entities; } * entity_t; @@ -65,12 +65,18 @@ entity_t add_entity (entities_t*, const char*, const char*); +void +add_attribute (entity_t, const char*, const char*); + int compare_entities (entity_t, entity_t); entity_t -entity_child (entity_t, char*); +entity_child (entity_t, const char*); +const char* +entity_attribute (entity_t, const char*); + char* entity_name (entity_t entity); Modified: trunk/openvas-manager/src/tests/omp_abort_task_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_abort_task_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_abort_task_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -114,7 +114,7 @@ /* Compare. */ entity_t expected = add_entity (NULL, "abort_task_response", NULL); - add_entity (&expected->entities, "status", "202"); + add_attribute (expected, "status", "202"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_create_task_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_create_task_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_create_task_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -83,7 +83,7 @@ /* Compare. */ entity_t expected = add_entity (NULL, "create_task_response", NULL); - add_entity (&expected->entities, "status", "201"); + add_attribute (expected, "status", "201"); add_entity (&expected->entities, "task_id", entity_text (id_entity)); if (compare_entities (entity, expected)) Modified: trunk/openvas-manager/src/tests/omp_delete_report_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_delete_report_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_delete_report_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -108,10 +108,10 @@ fprintf (stderr, "Failed to read response.\n"); goto delete_fail; } - entity_t status = entity_child (entity, "status"); + const char* status = entity_attribute (entity, "status"); if (status) { - if (strcmp (entity_text (status), "200")) goto free_fail; + if (strcmp (status, "200")) goto free_fail; } else goto free_fail; @@ -133,7 +133,7 @@ goto delete_fail; } entity_t expected = add_entity (NULL, "delete_report_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); if (compare_entities (entity, expected)) goto compare_fail; free_entity (expected); free_entity (entity); @@ -155,7 +155,7 @@ /* Compare to expected response. */ expected = add_entity (NULL, "get_report_response", NULL); - add_entity (&expected->entities, "status", "404"); + add_attribute (expected, "status", "404"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_delete_report_1.c =================================================================== --- trunk/openvas-manager/src/tests/omp_delete_report_1.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_delete_report_1.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -72,7 +72,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "delete_report_response", NULL); - add_entity (&expected->entities, "status", "400"); + add_attribute (expected, "status", "400"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_delete_task_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_delete_task_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_delete_task_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -86,7 +86,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "delete_task_response", NULL); - add_entity (&expected->entities, "status", "202"); + add_attribute (expected, "status", "202"); if (compare_entities (entity, expected)) { @@ -123,7 +123,7 @@ } expected = add_entity (NULL, "status_response", NULL); - add_entity (&expected->entities, "status", "404"); + add_attribute (expected, "status", "404"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_delete_task_1.c =================================================================== --- trunk/openvas-manager/src/tests/omp_delete_task_1.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_delete_task_1.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -134,7 +134,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_report_response", NULL); - add_entity (&expected->entities, "status", "404"); + add_attribute (expected, "status", "404"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_certificates_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_certificates_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_certificates_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -67,7 +67,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_certificates_response", NULL); - add_entity (&expected->entities, "status", "503"); + add_attribute (expected, "status", "503"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_dependencies_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_dependencies_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_dependencies_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -67,7 +67,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_dependencies_response", NULL); - add_entity (&expected->entities, "status", "500"); + add_attribute (expected, "status", "500"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_nvt_all_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_nvt_all_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_nvt_all_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -67,7 +67,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_nvt_all_response", NULL); - add_entity (&expected->entities, "status", "503"); + add_attribute (expected, "status", "503"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_nvt_details_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_nvt_details_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_nvt_details_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -67,7 +67,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_nvt_details_response", NULL); - add_entity (&expected->entities, "status", "503"); + add_attribute (expected, "status", "503"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_nvt_details_2.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_nvt_details_2.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_nvt_details_2.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -71,7 +71,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_nvt_details_response", NULL); - add_entity (&expected->entities, "status", "404"); + add_attribute (expected, "status", "404"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_nvt_details_3.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_nvt_details_3.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_nvt_details_3.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -71,7 +71,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_nvt_details_response", NULL); - add_entity (&expected->entities, "status", "404"); + add_attribute (expected, "status", "404"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_nvt_feed_checksum_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_nvt_feed_checksum_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_nvt_feed_checksum_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -67,7 +67,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_nvt_feed_checksum_response", NULL); - add_entity (&expected->entities, "status", "503"); + add_attribute (expected, "status", "503"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_preferences_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_preferences_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_preferences_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -67,7 +67,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_preferences_response", NULL); - add_entity (&expected->entities, "status", "500"); + add_attribute (expected, "status", "500"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_preferences_1.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_preferences_1.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_preferences_1.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -127,7 +127,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_preferences_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_report_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_report_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_report_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -118,7 +118,7 @@ entity_t expected = add_entity (NULL, "get_report_response", "FIX report text in base64"); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_rules_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_rules_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_rules_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -67,7 +67,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_rules_response", NULL); - add_entity (&expected->entities, "status", "500"); + add_attribute (expected, "status", "500"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_rules_1.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_rules_1.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_rules_1.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -146,7 +146,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_rules_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_get_status_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_status_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_status_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -77,7 +77,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_status_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); add_entity (&expected->entities, "task_count", "1"); entity_t task = add_entity (&expected->entities, "task", NULL); add_entity (&task->entities, "task_id", "0"); Modified: trunk/openvas-manager/src/tests/omp_get_status_1.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_status_1.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_status_1.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -115,7 +115,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_status_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); add_entity (&expected->entities, "report_count", "0"); if (compare_entities (entity, expected)) Modified: trunk/openvas-manager/src/tests/omp_get_status_2.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_status_2.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_status_2.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -116,7 +116,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_status_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); add_entity (&expected->entities, "report_count", "0"); if (compare_entities (entity, expected)) Modified: trunk/openvas-manager/src/tests/omp_get_status_3.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_status_3.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_status_3.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -84,7 +84,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_status_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); add_entity (&expected->entities, "task_count", "1"); entity_t task = add_entity (&expected->entities, "task", NULL); add_entity (&task->entities, "task_id", "0"); Modified: trunk/openvas-manager/src/tests/omp_get_status_4.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_status_4.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_status_4.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -90,7 +90,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "get_status_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); add_entity (&expected->entities, "report_count", "1"); entity_t report = add_entity (&expected->entities, "report", ""); add_entity (&report->entities, "id", "0"); Modified: trunk/openvas-manager/src/tests/omp_get_version_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_get_version_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_get_version_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -71,7 +71,7 @@ /* Compare. */ entity_t expected = add_entity (NULL, "get_version_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); entity_t version = add_entity (&expected->entities, "version", "1.0"); add_entity (&version->entities, "preferred", NULL); Modified: trunk/openvas-manager/src/tests/omp_help_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_help_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_help_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -86,7 +86,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "help_response", help_text); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_modify_report_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_modify_report_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_modify_report_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -117,7 +117,7 @@ /* Compare to expected response. */ entity_t expected = add_entity (NULL, "modify_report_response", NULL); - add_entity (&expected->entities, "status", "200"); + add_attribute (expected, "status", "200"); if (compare_entities (entity, expected)) { Modified: trunk/openvas-manager/src/tests/omp_modify_task_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_modify_task_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_modify_task_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -101,7 +101,7 @@ /* Compare. */ entity_t expected = add_entity (NULL, "modify_task_response", NULL); - add_entity (&expected->entities, "status", "201"); + add_attribute (expected, "status", "201"); if (compare_entities (entity, expected)) ret = EXIT_FAILURE; Modified: trunk/openvas-manager/src/tests/omp_modify_task_1.c =================================================================== --- trunk/openvas-manager/src/tests/omp_modify_task_1.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_modify_task_1.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -108,7 +108,7 @@ read_entity (&session2, &entity); entity_t expected = add_entity (NULL, "modify_task_response", NULL); - add_entity (&expected->entities, "status", "201"); + add_attribute (expected, "status", "201"); close_manager_connection (socket2, session2); Modified: trunk/openvas-manager/src/tests/omp_start_task_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_start_task_0.c 2009-06-02 15:47:36 UTC (rev 3577) +++ trunk/openvas-manager/src/tests/omp_start_task_0.c 2009-06-02 17:11:37 UTC (rev 3578) @@ -79,7 +79,7 @@ /* Compare response to expected response. */ entity_t expected = add_entity (NULL, "start_task_response", NULL); - add_entity (&expected->entities, "status", "202"); + add_attribute (expected, "status", "202"); if (compare_entities (entity, expected)) { From scm-commit at wald.intevation.org Tue Jun 2 19:28:25 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 19:28:25 +0200 (CEST) Subject: [Openvas-commits] r3579 - in trunk/openvas-manager: . src/tests Message-ID: <20090602172825.4F5E21120C6@pyrosoma.intevation.org> Author: mattm Date: 2009-06-02 19:28:24 +0200 (Tue, 02 Jun 2009) New Revision: 3579 Added: trunk/openvas-manager/src/tests/omp_bogus_0.c trunk/openvas-manager/src/tests/omp_bogus_1.c Modified: trunk/openvas-manager/ChangeLog trunk/openvas-manager/src/tests/CMakeLists.txt Log: * src/tests/omp_bogus_0.c, src/tests/omp_bogus_1.c: New files, which test the manager with a bogus command. * src/tests/CMakeLists.txt: Add omp_bogus_0 and omp_bogus_1. Modified: trunk/openvas-manager/ChangeLog =================================================================== --- trunk/openvas-manager/ChangeLog 2009-06-02 17:11:37 UTC (rev 3578) +++ trunk/openvas-manager/ChangeLog 2009-06-02 17:28:24 UTC (rev 3579) @@ -1,5 +1,12 @@ 2009-06-02 Matthew Mundell + * src/tests/omp_bogus_0.c, src/tests/omp_bogus_1.c: New files, which + test the manager with a bogus command. + + * src/tests/CMakeLists.txt: Add omp_bogus_0 and omp_bogus_1. + +2009-06-02 Matthew Mundell + Move response statuses into attributes, in tests. * src/tests/omp_abort_task_0.c, src/tests/omp_create_task_0.c, Modified: trunk/openvas-manager/src/tests/CMakeLists.txt =================================================================== --- trunk/openvas-manager/src/tests/CMakeLists.txt 2009-06-02 17:11:37 UTC (rev 3578) +++ trunk/openvas-manager/src/tests/CMakeLists.txt 2009-06-02 17:28:24 UTC (rev 3579) @@ -138,6 +138,20 @@ target_link_libraries (omp_abort_task_0 common) ADD_TEST (omp_abort_task_0 omp_abort_task_0) +add_executable (omp_bogus_0 omp_bogus_0.c) +target_link_libraries (omp_bogus_0 string) +set_target_properties (omp_bogus_0 PROPERTIES COMPILE_FLAGS "-I .. ${GLIB_CFLAGS}") +set_target_properties (omp_bogus_0 PROPERTIES LINK_FLAGS "${OVAS_LDFLAG} ${GLIB_LDFLAGS}") +target_link_libraries (omp_bogus_0 common) +ADD_TEST (omp_bogus_0 omp_bogus_0) + +add_executable (omp_bogus_1 omp_bogus_1.c) +target_link_libraries (omp_bogus_1 string) +set_target_properties (omp_bogus_1 PROPERTIES COMPILE_FLAGS "-I .. ${GLIB_CFLAGS}") +set_target_properties (omp_bogus_1 PROPERTIES LINK_FLAGS "${OVAS_LDFLAG} ${GLIB_LDFLAGS}") +target_link_libraries (omp_bogus_1 common) +ADD_TEST (omp_bogus_1 omp_bogus_1) + add_executable (omp_create_task_0 omp_create_task_0.c) target_link_libraries (omp_create_task_0 string) set_target_properties (omp_create_task_0 PROPERTIES COMPILE_FLAGS "-I .. ${GLIB_CFLAGS}") Added: trunk/openvas-manager/src/tests/omp_bogus_0.c =================================================================== --- trunk/openvas-manager/src/tests/omp_bogus_0.c 2009-06-02 17:11:37 UTC (rev 3578) +++ trunk/openvas-manager/src/tests/omp_bogus_0.c 2009-06-02 17:28:24 UTC (rev 3579) @@ -0,0 +1,76 @@ +/* Test 0 of a bogus OMP command. + * $Id$ + * Description: Test the manager with a bogus command before authenticating. + * + * Authors: + * Matthew Mundell + * + * Copyright: + * Copyright (C) 2009 Greenbone Networks GmbH + * + * 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, at your option, 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. + */ + +#define TRACE 1 + +#include +#include +#include +#include + +#include "common.h" +#include "../tracef.h" + +int +main () +{ + int socket; + gnutls_session_t session; + entity_t entity, expected; + + setup_test (); + + socket = connect_to_manager (&session); + if (socket == -1) return EXIT_FAILURE; + + /* Send the XML. */ + + if (send_to_manager (&session, "") == -1) + goto fail; + + /* Read the response. */ + + entity = NULL; + read_entity (&session, &entity); + + /* Compare to expected response. */ + + expected = add_entity (NULL, "omp_response", NULL); + add_attribute (expected, "status", "400"); + + if (compare_entities (entity, expected)) + { + free_entity (entity); + free_entity (expected); + fail: + close_manager_connection (socket, session); + return EXIT_FAILURE; + } + + free_entity (entity); + free_entity (expected); + close_manager_connection (socket, session); + return EXIT_SUCCESS; +} Added: trunk/openvas-manager/src/tests/omp_bogus_1.c =================================================================== --- trunk/openvas-manager/src/tests/omp_bogus_1.c 2009-06-02 17:11:37 UTC (rev 3578) +++ trunk/openvas-manager/src/tests/omp_bogus_1.c 2009-06-02 17:28:24 UTC (rev 3579) @@ -0,0 +1,80 @@ +/* Test 0 of a bogus OMP command. + * $Id$ + * Description: Test the manager with a bogus command after authenticating. + * + * Authors: + * Matthew Mundell + * + * Copyright: + * Copyright (C) 2009 Greenbone Networks GmbH + * + * 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, at your option, 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. + */ + +#define TRACE 1 + +#include +#include +#include +#include + +#include "common.h" +#include "../tracef.h" + +int +main () +{ + int socket; + gnutls_session_t session; + entity_t entity, expected; + + setup_test (); + + socket = connect_to_manager (&session); + if (socket == -1) return EXIT_FAILURE; + + /* Authenticate. */ + + if (env_authenticate (&session)) goto fail; + + /* Send the XML. */ + + if (send_to_manager (&session, "") == -1) + goto fail; + + /* Read the response. */ + + entity = NULL; + read_entity (&session, &entity); + + /* Compare to expected response. */ + + expected = add_entity (NULL, "omp_response", NULL); + add_attribute (expected, "status", "400"); + + if (compare_entities (entity, expected)) + { + free_entity (entity); + free_entity (expected); + fail: + close_manager_connection (socket, session); + return EXIT_FAILURE; + } + + free_entity (entity); + free_entity (expected); + close_manager_connection (socket, session); + return EXIT_SUCCESS; +} From scm-commit at wald.intevation.org Tue Jun 2 19:35:52 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Tue, 2 Jun 2009 19:35:52 +0200 (CEST) Subject: [Openvas-commits] r3580 - in trunk/openvas-manager: . src Message-ID: <20090602173552.1A1FA1120C6@pyrosoma.intevation.org> Author: mattm Date: 2009-06-02 19:35:51 +0200 (Tue, 02 Jun 2009) New Revision: 3580 Modified: trunk/openvas-manager/ChangeLog trunk/openvas-manager/src/omp.c Log: * src/omp.c (omp_xml_handle_end_element): In CLIENT_GET_STATUS correct opening tag and add closing tag. Modified: trunk/openvas-manager/ChangeLog =================================================================== --- trunk/openvas-manager/ChangeLog 2009-06-02 17:28:24 UTC (rev 3579) +++ trunk/openvas-manager/ChangeLog 2009-06-02 17:35:51 UTC (rev 3580) @@ -1,5 +1,10 @@ 2009-06-02 Matthew Mundell + * src/omp.c (omp_xml_handle_end_element): In CLIENT_GET_STATUS correct + opening tag and add closing tag. + +2009-06-02 Matthew Mundell + * src/tests/omp_bogus_0.c, src/tests/omp_bogus_1.c: New files, which test the manager with a bogus command. Modified: trunk/openvas-manager/src/omp.c =================================================================== --- trunk/openvas-manager/src/omp.c 2009-06-02 17:28:24 UTC (rev 3579) +++ trunk/openvas-manager/src/omp.c 2009-06-02 17:35:51 UTC (rev 3580) @@ -1851,7 +1851,7 @@ char* name; name = task_name (task); - response = g_strdup_printf ("" + response = g_strdup_printf ("" "%s" "%s" @@ -1884,6 +1884,7 @@ } // FIX need to handle err cases before send status (void) send_reports (task); + SEND_TO_CLIENT_OR_FAIL (""); } } free_string_var (¤t_uuid); From scm-commit at wald.intevation.org Wed Jun 3 12:30:02 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Wed, 3 Jun 2009 12:30:02 +0200 (CEST) Subject: [Openvas-commits] r3584 - trunk/openvas-plugins Message-ID: <20090603103002.3A0B513AEE@pyrosoma.intevation.org> Author: chandra Date: 2009-06-03 12:30:01 +0200 (Wed, 03 Jun 2009) New Revision: 3584 Modified: trunk/openvas-plugins/ChangeLog Log: Added Solaris local security checks Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-03 10:28:12 UTC (rev 3583) +++ trunk/openvas-plugins/ChangeLog 2009-06-03 10:30:01 UTC (rev 3584) @@ -1,4 +1,109 @@ 2009-06-03 Chandrashekhar B + * scripts/gb_solaris_120293_02.nasl + scripts/gb_solaris_122676_02.nasl + scripts/gb_solaris_123005_07.nasl + scripts/gb_solaris_123591_10.nasl + scripts/gb_solaris_121453_02.nasl + scripts/gb_solaris_120739_05.nasl + scripts/gb_solaris_127034_01.nasl + scripts/gb_solaris_122091_01.nasl + scripts/gb_solaris_124997_01.nasl + scripts/gb_solaris_121096_02.nasl + scripts/gb_solaris_123377_01.nasl + scripts/gb_solaris_120544_14.nasl + scripts/gb_solaris_126440_01.nasl + scripts/gb_solaris_126131_01.nasl + scripts/gb_solaris_126869_03.nasl + scripts/gb_solaris_121995_01.nasl + scripts/gb_solaris_125541_04.nasl + scripts/gb_solaris_124970_01.nasl + scripts/gb_solaris_121308_16.nasl + scripts/gb_solaris_120412_09.nasl + scripts/gb_solaris_120272_23.nasl + scripts/gb_solaris_120292_02.nasl + scripts/gb_solaris_122675_02.nasl + scripts/gb_solaris_123590_10.nasl + scripts/gb_solaris_125279_05.nasl + scripts/gb_solaris_120273_25.nasl + scripts/gb_solaris_121322_03.nasl + scripts/gb_solaris_126929_02.nasl + scripts/gb_solaris_127033_01.nasl + scripts/gb_solaris_121136_02.nasl + scripts/gb_solaris_125539_06.nasl + scripts/gb_solaris_121095_02.nasl + scripts/gb_solaris_127549_01.nasl + scripts/gb_solaris_123376_01.nasl + scripts/gb_solaris_122301_40.nasl + scripts/gb_solaris_121997_02.nasl + scripts/gb_solaris_120239_01.nasl + scripts/gb_solaris_125732_04.nasl + scripts/gb_solaris_122371_10.nasl + scripts/gb_solaris_123369_01.nasl + scripts/gb_solaris_120543_14.nasl + scripts/gb_solaris_120831_06.nasl + scripts/gb_solaris_125333_05.nasl + scripts/gb_solaris_120740_05.nasl + scripts/gb_solaris_124944_01.nasl + scripts/gb_solaris_121395_03.nasl + scripts/gb_solaris_122715_02.nasl + scripts/gb_solaris_121321_03.nasl + scripts/gb_solaris_121104_06.nasl + scripts/gb_solaris_126928_02.nasl + scripts/gb_solaris_121212_02.nasl + scripts/gb_solaris_120329_02.nasl + scripts/gb_solaris_127548_01.nasl + scripts/gb_solaris_122300_40.nasl + scripts/gb_solaris_120415_23.nasl + scripts/gb_solaris_125731_04.nasl + scripts/gb_solaris_128329_01.nasl + scripts/gb_solaris_123368_01.nasl + scripts/gb_solaris_120719_02.nasl + scripts/gb_solaris_122213_32.nasl + scripts/gb_solaris_120830_06.nasl + scripts/gb_solaris_125280_05.nasl + scripts/gb_solaris_123397_01.nasl + scripts/gb_solaris_120012_14.nasl + scripts/gb_solaris_127128_11.nasl + scripts/gb_solaris_121013_02.nasl + scripts/gb_solaris_125332_05.nasl + scripts/gb_solaris_123373_02.nasl + scripts/gb_solaris_126207_04.nasl + scripts/gb_solaris_124943_01.nasl + scripts/gb_solaris_122912_15.nasl + scripts/gb_solaris_121394_03.nasl + scripts/gb_solaris_125540_06.nasl + scripts/gb_solaris_126126_01.nasl + scripts/gb_solaris_120240_01.nasl + scripts/gb_solaris_126868_02.nasl + scripts/gb_solaris_123006_07.nasl + scripts/gb_solaris_121211_02.nasl + scripts/gb_solaris_128412_01.nasl + scripts/gb_solaris_124969_01.nasl + scripts/gb_solaris_121454_02.nasl + scripts/gb_solaris_120414_23.nasl + scripts/gb_solaris_128328_01.nasl + scripts/gb_solaris_122092_01.nasl + scripts/gb_solaris_124998_01.nasl + scripts/gb_solaris_122212_32.nasl + scripts/gb_solaris_123396_01.nasl + scripts/gb_solaris_120011_14.nasl + scripts/gb_solaris_127127_11.nasl + scripts/gb_solaris_121012_02.nasl + scripts/gb_solaris_123372_02.nasl + scripts/gb_solaris_126206_04.nasl + scripts/gb_solaris_126441_01.nasl + scripts/gb_solaris_126132_01.nasl + scripts/gb_solaris_122911_15.nasl + scripts/gb_solaris_120330_02.nasl + scripts/gb_solaris_126125_01.nasl + scripts/gb_solaris_121996_01.nasl + scripts/gb_solaris_125542_04.nasl + scripts/gb_solaris_121309_16.nasl + scripts/gb_solaris_120413_09.nasl + scripts/gb_solaris_120720_02.nasl: + Added Solaris local security checks + +2009-06-03 Chandrashekhar B * scripts/gb_solaris_115754_02.nasl scripts/gb_solaris_115677_02.nasl scripts/gb_solaris_116808_02.nasl From scm-commit at wald.intevation.org Wed Jun 3 13:46:45 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Wed, 3 Jun 2009 13:46:45 +0200 (CEST) Subject: [Openvas-commits] r3588 - trunk/doc/website Message-ID: <20090603114645.A8B1D1120CB@pyrosoma.intevation.org> Author: chandra Date: 2009-06-03 13:46:45 +0200 (Wed, 03 Jun 2009) New Revision: 3588 Modified: trunk/doc/website/openvas-cr-23.htm4 trunk/doc/website/openvas-cr-27.htm4 Log: Updated CR #23 to include HP-UX family and CR #27 with the latest vote counts Modified: trunk/doc/website/openvas-cr-23.htm4 =================================================================== --- trunk/doc/website/openvas-cr-23.htm4 2009-06-03 10:37:58 UTC (rev 3587) +++ trunk/doc/website/openvas-cr-23.htm4 2009-06-03 11:46:45 UTC (rev 3588) @@ -327,6 +327,10 @@ Local Security checks developed for Mandrake Linux based on the security advisories released for a package update. +- 'HP-UX Local Security Checks' + Local Security checks developed for HP-UX based on the security + advisories released for a package update. + - 'SLAD' All plugins related to SLAD Modified: trunk/doc/website/openvas-cr-27.htm4 =================================================================== --- trunk/doc/website/openvas-cr-27.htm4 2009-06-03 10:37:58 UTC (rev 3587) +++ trunk/doc/website/openvas-cr-27.htm4 2009-06-03 11:46:45 UTC (rev 3588) @@ -27,7 +27,7 @@

Status: Implementation. -Votes: +7, in progress +Votes: +10, in progress

Purpose

From scm-commit at wald.intevation.org Wed Jun 3 12:19:21 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Wed, 3 Jun 2009 12:19:21 +0200 (CEST) Subject: [Openvas-commits] r3581 - in trunk/openvas-plugins: . scripts Message-ID: <20090603101921.1187B13ABB@pyrosoma.intevation.org> Author: chandra Date: 2009-06-03 12:19:17 +0200 (Wed, 03 Jun 2009) New Revision: 3581 Added: trunk/openvas-plugins/scripts/gb_solaris_110068_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110069_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110075_02.nasl trunk/openvas-plugins/scripts/gb_solaris_110076_02.nasl trunk/openvas-plugins/scripts/gb_solaris_110286_16.nasl trunk/openvas-plugins/scripts/gb_solaris_110287_16.nasl trunk/openvas-plugins/scripts/gb_solaris_110322_02.nasl trunk/openvas-plugins/scripts/gb_solaris_110323_02.nasl trunk/openvas-plugins/scripts/gb_solaris_110325_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110335_03.nasl trunk/openvas-plugins/scripts/gb_solaris_110336_03.nasl trunk/openvas-plugins/scripts/gb_solaris_110386_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110389_05.nasl trunk/openvas-plugins/scripts/gb_solaris_110400_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110416_07.nasl trunk/openvas-plugins/scripts/gb_solaris_110417_07.nasl trunk/openvas-plugins/scripts/gb_solaris_110453_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110454_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110458_02.nasl trunk/openvas-plugins/scripts/gb_solaris_110459_02.nasl trunk/openvas-plugins/scripts/gb_solaris_110461_03.nasl trunk/openvas-plugins/scripts/gb_solaris_110462_03.nasl trunk/openvas-plugins/scripts/gb_solaris_110615_18.nasl trunk/openvas-plugins/scripts/gb_solaris_110616_18.nasl trunk/openvas-plugins/scripts/gb_solaris_110668_05.nasl trunk/openvas-plugins/scripts/gb_solaris_110669_05.nasl trunk/openvas-plugins/scripts/gb_solaris_110670_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110671_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110672_05.nasl trunk/openvas-plugins/scripts/gb_solaris_110820_12.nasl trunk/openvas-plugins/scripts/gb_solaris_110896_03.nasl trunk/openvas-plugins/scripts/gb_solaris_110897_03.nasl trunk/openvas-plugins/scripts/gb_solaris_110898_15.nasl trunk/openvas-plugins/scripts/gb_solaris_110899_15.nasl trunk/openvas-plugins/scripts/gb_solaris_110903_08.nasl trunk/openvas-plugins/scripts/gb_solaris_110904_08.nasl trunk/openvas-plugins/scripts/gb_solaris_110916_07.nasl trunk/openvas-plugins/scripts/gb_solaris_110917_07.nasl trunk/openvas-plugins/scripts/gb_solaris_110934_28.nasl trunk/openvas-plugins/scripts/gb_solaris_110935_28.nasl trunk/openvas-plugins/scripts/gb_solaris_110943_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110944_04.nasl trunk/openvas-plugins/scripts/gb_solaris_110945_10.nasl trunk/openvas-plugins/scripts/gb_solaris_110946_10.nasl trunk/openvas-plugins/scripts/gb_solaris_110953_08.nasl trunk/openvas-plugins/scripts/gb_solaris_110954_08.nasl trunk/openvas-plugins/scripts/gb_solaris_110955_06.nasl trunk/openvas-plugins/scripts/gb_solaris_110956_06.nasl trunk/openvas-plugins/scripts/gb_solaris_110957_02.nasl trunk/openvas-plugins/scripts/gb_solaris_110958_02.nasl trunk/openvas-plugins/scripts/gb_solaris_111069_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111070_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111071_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111072_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111232_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111233_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111234_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111235_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111313_06.nasl trunk/openvas-plugins/scripts/gb_solaris_111314_06.nasl trunk/openvas-plugins/scripts/gb_solaris_111321_05.nasl trunk/openvas-plugins/scripts/gb_solaris_111322_05.nasl trunk/openvas-plugins/scripts/gb_solaris_111325_02.nasl trunk/openvas-plugins/scripts/gb_solaris_111326_02.nasl trunk/openvas-plugins/scripts/gb_solaris_111327_06.nasl trunk/openvas-plugins/scripts/gb_solaris_111328_05.nasl trunk/openvas-plugins/scripts/gb_solaris_111332_08.nasl trunk/openvas-plugins/scripts/gb_solaris_111400_04.nasl trunk/openvas-plugins/scripts/gb_solaris_111401_04.nasl trunk/openvas-plugins/scripts/gb_solaris_111504_02.nasl trunk/openvas-plugins/scripts/gb_solaris_111505_02.nasl trunk/openvas-plugins/scripts/gb_solaris_111570_04.nasl trunk/openvas-plugins/scripts/gb_solaris_111571_04.nasl trunk/openvas-plugins/scripts/gb_solaris_111606_07.nasl trunk/openvas-plugins/scripts/gb_solaris_111607_07.nasl trunk/openvas-plugins/scripts/gb_solaris_111626_04.nasl trunk/openvas-plugins/scripts/gb_solaris_111627_03.nasl trunk/openvas-plugins/scripts/gb_solaris_111647_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111826_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111827_01.nasl trunk/openvas-plugins/scripts/gb_solaris_111874_09.nasl trunk/openvas-plugins/scripts/gb_solaris_111875_09.nasl trunk/openvas-plugins/scripts/gb_solaris_111881_03.nasl trunk/openvas-plugins/scripts/gb_solaris_111882_03.nasl trunk/openvas-plugins/scripts/gb_solaris_111883_36.nasl trunk/openvas-plugins/scripts/gb_solaris_112039_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112040_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112169_07.nasl trunk/openvas-plugins/scripts/gb_solaris_112233_12.nasl trunk/openvas-plugins/scripts/gb_solaris_112237_16.nasl trunk/openvas-plugins/scripts/gb_solaris_112238_15.nasl trunk/openvas-plugins/scripts/gb_solaris_112240_13.nasl trunk/openvas-plugins/scripts/gb_solaris_112352_02.nasl trunk/openvas-plugins/scripts/gb_solaris_112390_14.nasl trunk/openvas-plugins/scripts/gb_solaris_112459_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112460_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112601_10.nasl trunk/openvas-plugins/scripts/gb_solaris_112609_02.nasl trunk/openvas-plugins/scripts/gb_solaris_112611_02.nasl trunk/openvas-plugins/scripts/gb_solaris_112612_02.nasl trunk/openvas-plugins/scripts/gb_solaris_112617_02.nasl trunk/openvas-plugins/scripts/gb_solaris_112661_13.nasl trunk/openvas-plugins/scripts/gb_solaris_112662_09.nasl trunk/openvas-plugins/scripts/gb_solaris_112668_04.nasl trunk/openvas-plugins/scripts/gb_solaris_112669_04.nasl trunk/openvas-plugins/scripts/gb_solaris_112792_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112793_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112796_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112797_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112807_22.nasl trunk/openvas-plugins/scripts/gb_solaris_112808_10.nasl trunk/openvas-plugins/scripts/gb_solaris_112810_06.nasl trunk/openvas-plugins/scripts/gb_solaris_112811_02.nasl trunk/openvas-plugins/scripts/gb_solaris_112817_32.nasl trunk/openvas-plugins/scripts/gb_solaris_112837_18.nasl trunk/openvas-plugins/scripts/gb_solaris_112846_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112847_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112874_45.nasl trunk/openvas-plugins/scripts/gb_solaris_112875_01.nasl trunk/openvas-plugins/scripts/gb_solaris_112908_35.nasl trunk/openvas-plugins/scripts/gb_solaris_112915_06.nasl trunk/openvas-plugins/scripts/gb_solaris_112921_09.nasl trunk/openvas-plugins/scripts/gb_solaris_112922_02.nasl trunk/openvas-plugins/scripts/gb_solaris_112923_04.nasl trunk/openvas-plugins/scripts/gb_solaris_112925_08.nasl trunk/openvas-plugins/scripts/gb_solaris_112926_06.nasl trunk/openvas-plugins/scripts/gb_solaris_112945_46.nasl trunk/openvas-plugins/scripts/gb_solaris_112951_14.nasl trunk/openvas-plugins/scripts/gb_solaris_112960_65.nasl trunk/openvas-plugins/scripts/gb_solaris_112963_32.nasl trunk/openvas-plugins/scripts/gb_solaris_112998_05.nasl Modified: trunk/openvas-plugins/ChangeLog Log: Added Solaris local security checks Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/ChangeLog 2009-06-03 10:19:17 UTC (rev 3581) @@ -1,3 +1,137 @@ +2009-06-03 Chandrashekhar B + * scripts/gb_solaris_111328_05.nasl + scripts/gb_solaris_110916_07.nasl + scripts/gb_solaris_110336_03.nasl + scripts/gb_solaris_111571_04.nasl + scripts/gb_solaris_112617_02.nasl + scripts/gb_solaris_110459_02.nasl + scripts/gb_solaris_110322_02.nasl + scripts/gb_solaris_112925_08.nasl + scripts/gb_solaris_111233_01.nasl + scripts/gb_solaris_110903_08.nasl + scripts/gb_solaris_110400_04.nasl + scripts/gb_solaris_112846_01.nasl + scripts/gb_solaris_112811_02.nasl + scripts/gb_solaris_111826_01.nasl + scripts/gb_solaris_110616_18.nasl + scripts/gb_solaris_112960_65.nasl + scripts/gb_solaris_110668_05.nasl + scripts/gb_solaris_112233_12.nasl + scripts/gb_solaris_112875_01.nasl + scripts/gb_solaris_112945_46.nasl + scripts/gb_solaris_110287_16.nasl + scripts/gb_solaris_111881_03.nasl + scripts/gb_solaris_112669_04.nasl + scripts/gb_solaris_111504_02.nasl + scripts/gb_solaris_111070_01.nasl + scripts/gb_solaris_110954_08.nasl + scripts/gb_solaris_110075_02.nasl + scripts/gb_solaris_112612_02.nasl + scripts/gb_solaris_112951_14.nasl + scripts/gb_solaris_110335_03.nasl + scripts/gb_solaris_111570_04.nasl + scripts/gb_solaris_110069_04.nasl + scripts/gb_solaris_110458_02.nasl + scripts/gb_solaris_112609_02.nasl + scripts/gb_solaris_110899_15.nasl + scripts/gb_solaris_112793_01.nasl + scripts/gb_solaris_111232_01.nasl + scripts/gb_solaris_111401_04.nasl + scripts/gb_solaris_111314_06.nasl + scripts/gb_solaris_110935_28.nasl + scripts/gb_solaris_110946_10.nasl + scripts/gb_solaris_112807_22.nasl + scripts/gb_solaris_112459_01.nasl + scripts/gb_solaris_112998_05.nasl + scripts/gb_solaris_110615_18.nasl + scripts/gb_solaris_111626_04.nasl + scripts/gb_solaris_112661_13.nasl + scripts/gb_solaris_112797_01.nasl + scripts/gb_solaris_110286_16.nasl + scripts/gb_solaris_110944_04.nasl + scripts/gb_solaris_110671_04.nasl + scripts/gb_solaris_112668_04.nasl + scripts/gb_solaris_111322_05.nasl + scripts/gb_solaris_110953_08.nasl + scripts/gb_solaris_111883_36.nasl + scripts/gb_solaris_112611_02.nasl + scripts/gb_solaris_110958_02.nasl + scripts/gb_solaris_110956_06.nasl + scripts/gb_solaris_112039_01.nasl + scripts/gb_solaris_111627_03.nasl + scripts/gb_solaris_111607_07.nasl + scripts/gb_solaris_110454_04.nasl + scripts/gb_solaris_110068_04.nasl + scripts/gb_solaris_112390_14.nasl + scripts/gb_solaris_112915_06.nasl + scripts/gb_solaris_110898_15.nasl + scripts/gb_solaris_112792_01.nasl + scripts/gb_solaris_112817_32.nasl + scripts/gb_solaris_111400_04.nasl + scripts/gb_solaris_111313_06.nasl + scripts/gb_solaris_110897_03.nasl + scripts/gb_solaris_110934_28.nasl + scripts/gb_solaris_110945_10.nasl + scripts/gb_solaris_112926_06.nasl + scripts/gb_solaris_111326_02.nasl + scripts/gb_solaris_111332_08.nasl + scripts/gb_solaris_110462_03.nasl + scripts/gb_solaris_112796_01.nasl + scripts/gb_solaris_111235_01.nasl + scripts/gb_solaris_110943_04.nasl + scripts/gb_solaris_110325_04.nasl + scripts/gb_solaris_110417_07.nasl + scripts/gb_solaris_110670_04.nasl + scripts/gb_solaris_110820_12.nasl + scripts/gb_solaris_112921_09.nasl + scripts/gb_solaris_112963_32.nasl + scripts/gb_solaris_111321_05.nasl + scripts/gb_solaris_110957_02.nasl + scripts/gb_solaris_110955_06.nasl + scripts/gb_solaris_112874_45.nasl + scripts/gb_solaris_112460_01.nasl + scripts/gb_solaris_111606_07.nasl + scripts/gb_solaris_111072_01.nasl + scripts/gb_solaris_110453_04.nasl + scripts/gb_solaris_112237_16.nasl + scripts/gb_solaris_112240_13.nasl + scripts/gb_solaris_111647_01.nasl + scripts/gb_solaris_111875_09.nasl + scripts/gb_solaris_112352_02.nasl + scripts/gb_solaris_112908_35.nasl + scripts/gb_solaris_110917_07.nasl + scripts/gb_solaris_110896_03.nasl + scripts/gb_solaris_110672_05.nasl + scripts/gb_solaris_111325_02.nasl + scripts/gb_solaris_111069_01.nasl + scripts/gb_solaris_110323_02.nasl + scripts/gb_solaris_110461_03.nasl + scripts/gb_solaris_112040_01.nasl + scripts/gb_solaris_111234_01.nasl + scripts/gb_solaris_112601_10.nasl + scripts/gb_solaris_110904_08.nasl + scripts/gb_solaris_110416_07.nasl + scripts/gb_solaris_112238_15.nasl + scripts/gb_solaris_112847_01.nasl + scripts/gb_solaris_111827_01.nasl + scripts/gb_solaris_112808_10.nasl + scripts/gb_solaris_112810_06.nasl + scripts/gb_solaris_111327_06.nasl + scripts/gb_solaris_110669_05.nasl + scripts/gb_solaris_112169_07.nasl + scripts/gb_solaris_111882_03.nasl + scripts/gb_solaris_110389_05.nasl + scripts/gb_solaris_111505_02.nasl + scripts/gb_solaris_111071_01.nasl + scripts/gb_solaris_110076_02.nasl + scripts/gb_solaris_112922_02.nasl + scripts/gb_solaris_112662_09.nasl + scripts/gb_solaris_111874_09.nasl + scripts/gb_solaris_112837_18.nasl + scripts/gb_solaris_110386_04.nasl + scripts/gb_solaris_112923_04.nasl: + Added Solaris Local Security Checks + 2009-06-02 Chandrashekhar B * scripts/solaris.inc: KB item names changed as in gather-package-list.nasl and bug fixes Added: trunk/openvas-plugins/scripts/gb_solaris_110068_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110068_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110068_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for CDE 1.4 110068-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855204); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110068-04"); + script_name(english: "Solaris Update for CDE 1.4 110068-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + CDE 1.4 + For more information please visit the below reference link. + + Affected Software/OS: + CDE 1.4 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110068-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of CDE 1.4"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110068-04", package:"SUNWpdas") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110069_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110069_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110069_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for PDASync 110069-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855391); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110069-04"); + script_name(english: "Solaris Update for PDASync 110069-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + PDASync + For more information please visit the below reference link. + + Affected Software/OS: + PDASync on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110069-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of PDASync"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110069-04", package:"SUNWpdas") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110075_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110075_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110075_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/drv/devinfo and /kernel/drv/sparcv9/devinfo 110075-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855225); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110075-02"); + script_name(english: "Solaris Update for /kernel/drv/devinfo and /kernel/drv/sparcv9/devinfo 110075-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/drv/devinfo and /kernel/drv/sparcv9/devinfo + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/drv/devinfo and /kernel/drv/sparcv9/devinfo on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110075-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/drv/devinfo and /kernel/drv/sparcv9/devinfo"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110075-02", package:"SUNWcarx.us SUNWcsr SUNWcarx.u") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110076_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110076_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110076_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/drv/devinfo 110076-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855019); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110076-02"); + script_name(english: "Solaris Update for /kernel/drv/devinfo 110076-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/drv/devinfo + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/drv/devinfo on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110076-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/drv/devinfo"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110076-02", package:"SUNWcsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110286_16.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110286_16.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110286_16.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for OpenWindows 3.6.2 110286-16 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855057); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110286-16"); + script_name(english: "Solaris Update for OpenWindows 3.6.2 110286-16"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + OpenWindows 3.6.2 + For more information please visit the below reference link. + + Affected Software/OS: + OpenWindows 3.6.2 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110286-16-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of OpenWindows 3.6.2"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110286-16", package:"SUNWtltkx SUNWtltk") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110287_16.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110287_16.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110287_16.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Tooltalk 110287-16 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855130); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110287-16"); + script_name(english: "Solaris Update for Tooltalk 110287-16"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Tooltalk + For more information please visit the below reference link. + + Affected Software/OS: + Tooltalk on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110287-16-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Tooltalk"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110287-16", package:"SUNWtltk") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110322_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110322_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110322_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/netsvc/yp/ypbind 110322-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855263); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110322-02"); + script_name(english: "Solaris Update for /usr/lib/netsvc/yp/ypbind 110322-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/netsvc/yp/ypbind + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/netsvc/yp/ypbind on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110322-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/netsvc/yp/ypbind"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110322-02", package:"SUNWnisu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110323_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110323_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110323_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/netsvc/yp/ypbind 110323-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855021); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110323-02"); + script_name(english: "Solaris Update for /usr/lib/netsvc/yp/ypbind 110323-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/netsvc/yp/ypbind + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/netsvc/yp/ypbind on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110323-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/netsvc/yp/ypbind"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110323-02", package:"SUNWnisu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110325_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110325_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110325_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/drv/asy and /usr/include/sys/asy.h 110325-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855336); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110325-04"); + script_name(english: "Solaris Update for /kernel/drv/asy and /usr/include/sys/asy.h 110325-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/drv/asy and /usr/include/sys/asy.h + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/drv/asy and /usr/include/sys/asy.h on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110325-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/drv/asy and /usr/include/sys/asy.h"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110325-04", package:"SUNWpsdcr SUNWpsh") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110335_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110335_03.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110335_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for CDE 1.4 110335-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855029); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110335-03"); + script_name(english: "Solaris Update for CDE 1.4 110335-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + CDE 1.4 + For more information please visit the below reference link. + + Affected Software/OS: + CDE 1.4 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110335-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of CDE 1.4"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110335-03", package:"SUNWdtdst SUNWdtma") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110336_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110336_03.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110336_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for dtprintinfo 110336-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855542); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110336-03"); + script_name(english: "Solaris Update for dtprintinfo 110336-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + dtprintinfo + For more information please visit the below reference link. + + Affected Software/OS: + dtprintinfo on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110336-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of dtprintinfo"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110336-03", package:"SUNWdtdst SUNWdtma") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110386_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110386_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110386_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for RBAC Feature 110386-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855578); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110386-04"); + script_name(english: "Solaris Update for RBAC Feature 110386-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + RBAC Feature + For more information please visit the below reference link. + + Affected Software/OS: + RBAC Feature on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110386-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of RBAC Feature"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110386-04", package:"SUNWcsl SUNWcsr SUNWhea SUNWcslx SUNWcstlx SUNWcsu SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110389_05.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110389_05.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110389_05.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for cvc CPU signature 110389-05 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855593); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110389-05"); + script_name(english: "Solaris Update for cvc CPU signature 110389-05"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + cvc CPU signature + For more information please visit the below reference link. + + Affected Software/OS: + cvc CPU signature on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110389-05-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of cvc CPU signature"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110389-05", package:"SUNWcvc.u SUNWcvcx.u SUNWhea") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110400_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110400_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110400_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for RBAC Feature 110400-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855455); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110400-04"); + script_name(english: "Solaris Update for RBAC Feature 110400-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + RBAC Feature + For more information please visit the below reference link. + + Affected Software/OS: + RBAC Feature on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110400-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of RBAC Feature"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110400-04", package:"SUNWcsl SUNWcsr SUNWhea SUNWcsu SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110416_07.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110416_07.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110416_07.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for ATOK12 110416-07 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855387); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110416-07"); + script_name(english: "Solaris Update for ATOK12 110416-07"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + ATOK12 + For more information please visit the below reference link. + + Affected Software/OS: + ATOK12 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110416-07-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of ATOK12"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110416-07", package:"JSatsvr JSatsvu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110417_07.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110417_07.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110417_07.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for ATOK12 110417-07 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855079); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110417-07"); + script_name(english: "Solaris Update for ATOK12 110417-07"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + ATOK12 + For more information please visit the below reference link. + + Affected Software/OS: + ATOK12 on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110417-07-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of ATOK12"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110417-07", package:"JSatsvr JSatsvu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110453_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110453_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110453_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for admintool 110453-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855109); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110453-04"); + script_name(english: "Solaris Update for admintool 110453-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + admintool + For more information please visit the below reference link. + + Affected Software/OS: + admintool on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110453-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of admintool"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110453-04", package:"SUNWadmap") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110454_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110454_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110454_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for admintool 110454-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855044); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110454-04"); + script_name(english: "Solaris Update for admintool 110454-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + admintool + For more information please visit the below reference link. + + Affected Software/OS: + admintool on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110454-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of admintool"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110454-04", package:"SUNWadmap") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110458_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110458_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110458_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for libcurses 110458-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855080); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110458-02"); + script_name(english: "Solaris Update for libcurses 110458-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + libcurses + For more information please visit the below reference link. + + Affected Software/OS: + libcurses on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110458-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of libcurses"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110458-02", package:"SUNWarc SUNWsra SUNWcsl SUNWcslx SUNWcstlx SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110459_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110459_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110459_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for libcurses 110459-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855427); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110459-02"); + script_name(english: "Solaris Update for libcurses 110459-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + libcurses + For more information please visit the below reference link. + + Affected Software/OS: + libcurses on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110459-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of libcurses"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110459-02", package:"SUNWarc SUNWcsl SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110461_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110461_03.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110461_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for ttcompat 110461-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855580); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110461-03"); + script_name(english: "Solaris Update for ttcompat 110461-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + ttcompat + For more information please visit the below reference link. + + Affected Software/OS: + ttcompat on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110461-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of ttcompat"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110461-03", package:"SUNWcarx.us SUNWcsr SUNWcarx.u") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110462_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110462_03.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110462_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for ttcompat 110462-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855075); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110462-03"); + script_name(english: "Solaris Update for ttcompat 110462-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + ttcompat + For more information please visit the below reference link. + + Affected Software/OS: + ttcompat on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110462-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of ttcompat"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110462-03", package:"SUNWcsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110615_18.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110615_18.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110615_18.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for sendmail 110615-18 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855152); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110615-18"); + script_name(english: "Solaris Update for sendmail 110615-18"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + sendmail + For more information please visit the below reference link. + + Affected Software/OS: + sendmail on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110615-18-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of sendmail"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110615-18", package:"SUNWsndmr SUNWsndmu SUNWnisu SUNWcsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110616_18.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110616_18.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110616_18.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for sendmail 110616-18 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855191); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110616-18"); + script_name(english: "Solaris Update for sendmail 110616-18"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + sendmail + For more information please visit the below reference link. + + Affected Software/OS: + sendmail on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110616-18-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of sendmail"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110616-18", package:"SUNWsndmr SUNWsndmu SUNWnisu SUNWcsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110668_05.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110668_05.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110668_05.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for telnet 110668-05 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855537); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110668-05"); + script_name(english: "Solaris Update for telnet 110668-05"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + telnet + For more information please visit the below reference link. + + Affected Software/OS: + telnet on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110668-05-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of telnet"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110668-05", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110669_05.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110669_05.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110669_05.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for telnet 110669-05 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855072); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110669-05"); + script_name(english: "Solaris Update for telnet 110669-05"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + telnet + For more information please visit the below reference link. + + Affected Software/OS: + telnet on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110669-05-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of telnet"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110669-05", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110670_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110670_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110670_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/static/rcp 110670-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855483); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110670-04"); + script_name(english: "Solaris Update for /usr/sbin/static/rcp 110670-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/static/rcp + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/static/rcp on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110670-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/static/rcp"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110670-04", package:"SUNWsutl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110671_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110671_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110671_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/static/rcp 110671-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855549); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110671-04"); + script_name(english: "Solaris Update for /usr/sbin/static/rcp 110671-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/static/rcp + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/static/rcp on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110671-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/static/rcp"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110671-04", package:"SUNWsutl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110672_05.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110672_05.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110672_05.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/misc/gld 110672-05 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855082); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110672-05"); + script_name(english: "Solaris Update for /kernel/misc/gld 110672-05"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/misc/gld + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/misc/gld on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110672-05-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/misc/gld"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110672-05", package:"SUNWcsr SUNWhea") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110820_12.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110820_12.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110820_12.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/dman 110820-12 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855045); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110820-12"); + script_name(english: "Solaris Update for /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/dman 110820-12"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/dman + For more information please visit the below reference link. + + Affected Software/OS: + /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/dman on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110820-12-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/dman"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110820-12", package:"SUNWcsr SUNWcarx.u") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110896_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110896_03.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110896_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for cachefs/mount 110896-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855358); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110896-03"); + script_name(english: "Solaris Update for cachefs/mount 110896-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + cachefs/mount + For more information please visit the below reference link. + + Affected Software/OS: + cachefs/mount on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110896-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of cachefs/mount"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110896-03", package:"SUNWcsr SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110897_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110897_03.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110897_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for cachefs/mount 110897-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855405); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110897-03"); + script_name(english: "Solaris Update for cachefs/mount 110897-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + cachefs/mount + For more information please visit the below reference link. + + Affected Software/OS: + cachefs/mount on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110897-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of cachefs/mount"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110897-03", package:"SUNWcsr SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110898_15.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110898_15.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110898_15.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for csh/pfcsh 110898-15 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855093); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110898-15"); + script_name(english: "Solaris Update for csh/pfcsh 110898-15"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + csh/pfcsh + For more information please visit the below reference link. + + Affected Software/OS: + csh/pfcsh on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110898-15-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of csh/pfcsh"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110898-15", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110899_15.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110899_15.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110899_15.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for csh/pfcsh 110899-15 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855412); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110899-15"); + script_name(english: "Solaris Update for csh/pfcsh 110899-15"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + csh/pfcsh + For more information please visit the below reference link. + + Affected Software/OS: + csh/pfcsh on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110899-15-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of csh/pfcsh"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110899-15", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110903_08.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110903_08.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110903_08.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for edit, ex, vedit, vi and view 110903-08 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855248); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110903-08"); + script_name(english: "Solaris Update for edit, ex, vedit, vi and view 110903-08"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + edit, ex, vedit, vi and view + For more information please visit the below reference link. + + Affected Software/OS: + edit, ex, vedit, vi and view on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110903-08-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of edit, ex, vedit, vi and view"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110903-08", package:"SUNWxcu4 SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110904_08.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110904_08.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110904_08.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for edit, ex, vedit, vi and view 110904-08 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855352); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110904-08"); + script_name(english: "Solaris Update for edit, ex, vedit, vi and view 110904-08"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + edit, ex, vedit, vi and view + For more information please visit the below reference link. + + Affected Software/OS: + edit, ex, vedit, vi and view on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110904-08-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of edit, ex, vedit, vi and view"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110904-08", package:"SUNWxcu4 SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110916_07.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110916_07.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110916_07.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for sort 110916-07 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855569); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110916-07"); + script_name(english: "Solaris Update for sort 110916-07"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + sort + For more information please visit the below reference link. + + Affected Software/OS: + sort on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110916-07-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of sort"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110916-07", package:"SUNWxcu4 SUNWesxu SUNWesu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110917_07.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110917_07.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110917_07.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for sort 110917-07 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855181); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110917-07"); + script_name(english: "Solaris Update for sort 110917-07"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + sort + For more information please visit the below reference link. + + Affected Software/OS: + sort on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110917-07-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of sort"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110917-07", package:"SUNWxcu4 SUNWesu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110934_28.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110934_28.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110934_28.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for package utilities 110934-28 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855103); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110934-28"); + script_name(english: "Solaris Update for package utilities 110934-28"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + package utilities + For more information please visit the below reference link. + + Affected Software/OS: + package utilities on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110934-28-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of package utilities"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110934-28", package:"SUNWarc SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110935_28.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110935_28.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110935_28.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for package utilites 110935-28 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855054); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110935-28"); + script_name(english: "Solaris Update for package utilites 110935-28"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + package utilites + For more information please visit the below reference link. + + Affected Software/OS: + package utilites on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110935-28-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of package utilites"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110935-28", package:"SUNWarc SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110943_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110943_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110943_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/bin/tcsh 110943-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855257); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110943-04"); + script_name(english: "Solaris Update for /usr/bin/tcsh 110943-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/bin/tcsh + For more information please visit the below reference link. + + Affected Software/OS: + /usr/bin/tcsh on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110943-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/bin/tcsh"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110943-04", package:"SUNWtcsh SUNWtcshS") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110944_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110944_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110944_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/bin/tcsh 110944-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855085); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110944-04"); + script_name(english: "Solaris Update for /usr/bin/tcsh 110944-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/bin/tcsh + For more information please visit the below reference link. + + Affected Software/OS: + /usr/bin/tcsh on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110944-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/bin/tcsh"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110944-04", package:"SUNWtcsh SUNWtcshS") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110945_10.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110945_10.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110945_10.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/syslogd 110945-10 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855547); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110945-10"); + script_name(english: "Solaris Update for /usr/sbin/syslogd 110945-10"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/syslogd + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/syslogd on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110945-10-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/syslogd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110945-10", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110946_10.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110946_10.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110946_10.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/syslogd 110946-10 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855184); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110946-10"); + script_name(english: "Solaris Update for /usr/sbin/syslogd 110946-10"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/syslogd + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/syslogd on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110946-10-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/syslogd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110946-10", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110953_08.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110953_08.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110953_08.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/kernel/drv/llc2 110953-08 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855382); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110953-08"); + script_name(english: "Solaris Update for /usr/kernel/drv/llc2 110953-08"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/kernel/drv/llc2 + For more information please visit the below reference link. + + Affected Software/OS: + /usr/kernel/drv/llc2 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110953-08-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/kernel/drv/llc2"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110953-08", package:"SUNWllcx SUNWllc") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110954_08.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110954_08.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110954_08.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/kernel/drv/llc2 110954-08 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855230); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110954-08"); + script_name(english: "Solaris Update for /usr/kernel/drv/llc2 110954-08"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/kernel/drv/llc2 + For more information please visit the below reference link. + + Affected Software/OS: + /usr/kernel/drv/llc2 on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110954-08-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/kernel/drv/llc2"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110954-08", package:"SUNWllc") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110955_06.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110955_06.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110955_06.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/strmod/timod 110955-06 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855571); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110955-06"); + script_name(english: "Solaris Update for /kernel/strmod/timod 110955-06"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/strmod/timod + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/strmod/timod on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110955-06-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/strmod/timod"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110955-06", package:"SUNWcarx.us SUNWcsr SUNWcarx.u") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110956_06.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110956_06.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110956_06.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/strmod/timod 110956-06 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855242); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110956-06"); + script_name(english: "Solaris Update for /kernel/strmod/timod 110956-06"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/strmod/timod + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/strmod/timod on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110956-06-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/strmod/timod"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110956-06", package:"SUNWcsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110957_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110957_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110957_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/bin/mailx 110957-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855325); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110957-02"); + script_name(english: "Solaris Update for /usr/bin/mailx 110957-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/bin/mailx + For more information please visit the below reference link. + + Affected Software/OS: + /usr/bin/mailx on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110957-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/bin/mailx"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"110957-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_110958_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_110958_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_110958_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/bin/mailx 110958-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855071); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "110958-02"); + script_name(english: "Solaris Update for /usr/bin/mailx 110958-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/bin/mailx + For more information please visit the below reference link. + + Affected Software/OS: + /usr/bin/mailx on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-110958-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/bin/mailx"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"110958-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111069_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111069_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111069_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for bsmunconv overwrites root cron tab if cu created /tmp/root 111069-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855166); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111069-01"); + script_name(english: "Solaris Update for bsmunconv overwrites root cron tab if cu created /tmp/root 111069-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + bsmunconv overwrites root cron tab if cu created /tmp/root + For more information please visit the below reference link. + + Affected Software/OS: + bsmunconv overwrites root cron tab if cu created /tmp/root on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111069-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of bsmunconv overwrites root cron tab if cu created /tmp/root"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111069-01", package:"SUNWcsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111070_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111070_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111070_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /etc/security/bsmunconv 111070-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855194); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111070-01"); + script_name(english: "Solaris Update for /etc/security/bsmunconv 111070-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /etc/security/bsmunconv + For more information please visit the below reference link. + + Affected Software/OS: + /etc/security/bsmunconv on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111070-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /etc/security/bsmunconv"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111070-01", package:"SUNWcsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111071_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111071_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111071_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for cu 111071-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855312); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111071-01"); + script_name(english: "Solaris Update for cu 111071-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + cu + For more information please visit the below reference link. + + Affected Software/OS: + cu on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111071-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of cu"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111071-01", package:"SUNWbnuu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111072_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111072_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111072_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for cu 111072-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855618); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111072-01"); + script_name(english: "Solaris Update for cu 111072-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + cu + For more information please visit the below reference link. + + Affected Software/OS: + cu on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111072-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of cu"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111072-01", package:"SUNWbnuu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111232_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111232_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111232_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for in.fingerd 111232-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855154); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111232-01"); + script_name(english: "Solaris Update for in.fingerd 111232-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + in.fingerd + For more information please visit the below reference link. + + Affected Software/OS: + in.fingerd on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111232-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of in.fingerd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111232-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111233_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111233_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111233_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for in.fingerd 111233-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855402); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111233-01"); + script_name(english: "Solaris Update for in.fingerd 111233-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + in.fingerd + For more information please visit the below reference link. + + Affected Software/OS: + in.fingerd on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111233-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of in.fingerd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111233-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111234_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111234_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111234_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for finger 111234-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855243); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111234-01"); + script_name(english: "Solaris Update for finger 111234-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + finger + For more information please visit the below reference link. + + Affected Software/OS: + finger on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111234-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of finger"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111234-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111235_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111235_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111235_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for finger 111235-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855617); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111235-01"); + script_name(english: "Solaris Update for finger 111235-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + finger + For more information please visit the below reference link. + + Affected Software/OS: + finger on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111235-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of finger"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111235-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111313_06.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111313_06.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111313_06.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Viper Library 111313-06 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855134); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111313-06"); + script_name(english: "Solaris Update for Viper Library 111313-06"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Viper Library + For more information please visit the below reference link. + + Affected Software/OS: + Viper Library on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111313-06-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Viper Library"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111313-06", package:"SUNWmc") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111314_06.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111314_06.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111314_06.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Viper Library 111314-06 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855293); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111314-06"); + script_name(english: "Solaris Update for Viper Library 111314-06"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Viper Library + For more information please visit the below reference link. + + Affected Software/OS: + Viper Library on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111314-06-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Viper Library"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111314-06", package:"SUNWmc") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111321_05.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111321_05.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111321_05.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for klmmod and klmops 111321-05 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855036); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111321-05"); + script_name(english: "Solaris Update for klmmod and klmops 111321-05"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + klmmod and klmops + For more information please visit the below reference link. + + Affected Software/OS: + klmmod and klmops on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111321-05-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of klmmod and klmops"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111321-05", package:"SUNWcarx.us SUNWcsr SUNWhea SUNWcarx.u") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111322_05.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111322_05.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111322_05.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for klmmod and klmops 111322-05 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855037); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111322-05"); + script_name(english: "Solaris Update for klmmod and klmops 111322-05"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + klmmod and klmops + For more information please visit the below reference link. + + Affected Software/OS: + klmmod and klmops on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111322-05-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of klmmod and klmops"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111322-05", package:"SUNWcsr SUNWhea") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111325_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111325_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111325_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/saf/ttymon 111325-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855060); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111325-02"); + script_name(english: "Solaris Update for /usr/lib/saf/ttymon 111325-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/saf/ttymon + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/saf/ttymon on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111325-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/saf/ttymon"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111325-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111326_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111326_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111326_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/saf/ttymon 111326-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855434); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111326-02"); + script_name(english: "Solaris Update for /usr/lib/saf/ttymon 111326-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/saf/ttymon + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/saf/ttymon on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111326-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/saf/ttymon"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111326-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111327_06.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111327_06.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111327_06.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for libsocket 111327-06 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855101); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111327-06"); + script_cve_id("CVE-2008-0122"); + script_name(english: "Solaris Update for libsocket 111327-06"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + libsocket + For more information please visit the below reference link. + + Affected Software/OS: + libsocket on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111327-06-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of libsocket"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111327-06", package:"SUNWarc SUNWarcx SUNWcsl SUNWcsr SUNWcslx SUNWcstlx SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111328_05.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111328_05.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111328_05.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for libsocket 111328-05 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855557); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111328-05"); + script_name(english: "Solaris Update for libsocket 111328-05"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + libsocket + For more information please visit the below reference link. + + Affected Software/OS: + libsocket on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111328-05-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of libsocket"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111328-05", package:"SUNWarc SUNWcsl SUNWcsr SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111332_08.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111332_08.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111332_08.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/dcs 111332-08 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855592); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111332-08"); + script_name(english: "Solaris Update for /usr/lib/dcs 111332-08"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/dcs + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/dcs on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111332-08-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/dcs"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111332-08", package:"SUNWdcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111400_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111400_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111400_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for kcms_server and kcms_configure 111400-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855335); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111400-04"); + script_name(english: "Solaris Update for kcms_server and kcms_configure 111400-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + kcms_server and kcms_configure + For more information please visit the below reference link. + + Affected Software/OS: + kcms_server and kcms_configure on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111400-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of kcms_server and kcms_configure"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111400-04", package:"SUNWkcspx SUNWkcsrt SUNWkcspg SUNWkcsrx") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111401_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111401_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111401_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for kcms_server and kcms_configure 111401-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855372); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111401-04"); + script_name(english: "Solaris Update for kcms_server and kcms_configure 111401-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + kcms_server and kcms_configure + For more information please visit the below reference link. + + Affected Software/OS: + kcms_server and kcms_configure on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111401-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of kcms_server and kcms_configure"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111401-04", package:"SUNWkcsrt SUNWkcspg") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111504_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111504_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111504_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for tip 111504-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855509); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111504-02"); + script_name(english: "Solaris Update for tip 111504-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + tip + For more information please visit the below reference link. + + Affected Software/OS: + tip on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111504-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of tip"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111504-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111505_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111505_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111505_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for tip 111505-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855597); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111505-02"); + script_name(english: "Solaris Update for tip 111505-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + tip + For more information please visit the below reference link. + + Affected Software/OS: + tip on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111505-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of tip"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111505-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111570_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111570_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111570_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for uucp 111570-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855097); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111570-04"); + script_name(english: "Solaris Update for uucp 111570-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + uucp + For more information please visit the below reference link. + + Affected Software/OS: + uucp on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111570-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of uucp"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111570-04", package:"SUNWbnuu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111571_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111571_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111571_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for uucp 111571-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855527); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111571-04"); + script_name(english: "Solaris Update for uucp 111571-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + uucp + For more information please visit the below reference link. + + Affected Software/OS: + uucp on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111571-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of uucp"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111571-04", package:"SUNWbnuu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111606_07.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111606_07.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111606_07.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/in.ftpd 111606-07 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855092); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111606-07"); + script_cve_id("CVE-1999-0079"); + script_name(english: "Solaris Update for /usr/sbin/in.ftpd 111606-07"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/in.ftpd + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/in.ftpd on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111606-07-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/in.ftpd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111606-07", package:"SUNWftpu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111607_07.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111607_07.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111607_07.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/in.ftpd 111607-07 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855213); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111607-07"); + script_cve_id("CVE-1999-0079"); + script_name(english: "Solaris Update for /usr/sbin/in.ftpd 111607-07"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/in.ftpd + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/in.ftpd on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111607-07-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/in.ftpd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111607-07", package:"SUNWftpu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111626_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111626_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111626_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for OpenWindows 3.6.2 111626-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855393); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111626-04"); + script_name(english: "Solaris Update for OpenWindows 3.6.2 111626-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + OpenWindows 3.6.2 + For more information please visit the below reference link. + + Affected Software/OS: + OpenWindows 3.6.2 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111626-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of OpenWindows 3.6.2"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111626-04", package:"SUNWolslb SUNWolrte") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111627_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111627_03.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111627_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Xview 111627-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855048); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111627-03"); + script_name(english: "Solaris Update for Xview 111627-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Xview + For more information please visit the below reference link. + + Affected Software/OS: + Xview on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111627-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Xview"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111627-03", package:"SUNWolslb SUNWolrte") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111647_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111647_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111647_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for BCP libmle buffer overflow 111647-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855172); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111647-01"); + script_name(english: "Solaris Update for BCP libmle buffer overflow 111647-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + BCP libmle buffer overflow + For more information please visit the below reference link. + + Affected Software/OS: + BCP libmle buffer overflow on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111647-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of BCP libmle buffer overflow"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111647-01", package:"SUNWjbcp") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111826_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111826_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111826_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/sparcv7/whodo & /usr/sbin/sparcv9/whodo 111826-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855523); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111826-01"); + script_name(english: "Solaris Update for /usr/sbin/sparcv7/whodo & /usr/sbin/sparcv9/whodo 111826-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/sparcv7/whodo & /usr/sbin/sparcv9/whodo + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/sparcv7/whodo & /usr/sbin/sparcv9/whodo on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111826-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/sparcv7/whodo & /usr/sbin/sparcv9/whodo"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111826-01", package:"SUNWcsxu SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111827_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111827_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111827_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/i86/whodo 111827-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855239); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111827-01"); + script_name(english: "Solaris Update for /usr/sbin/i86/whodo 111827-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/i86/whodo + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/i86/whodo on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111827-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/i86/whodo"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111827-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111874_09.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111874_09.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111874_09.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for usr/bin/mail 111874-09 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855224); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111874-09"); + script_name(english: "Solaris Update for usr/bin/mail 111874-09"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + usr/bin/mail + For more information please visit the below reference link. + + Affected Software/OS: + usr/bin/mail on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111874-09-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of usr/bin/mail"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111874-09", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111875_09.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111875_09.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111875_09.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for usr/bin/mail 111875-09 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855498); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111875-09"); + script_name(english: "Solaris Update for usr/bin/mail 111875-09"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + usr/bin/mail + For more information please visit the below reference link. + + Affected Software/OS: + usr/bin/mail on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111875-09-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of usr/bin/mail"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111875-09", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111881_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111881_03.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111881_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/kernel/strmod/telmod 111881-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855175); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111881-03"); + script_name(english: "Solaris Update for /usr/kernel/strmod/telmod 111881-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/kernel/strmod/telmod + For more information please visit the below reference link. + + Affected Software/OS: + /usr/kernel/strmod/telmod on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111881-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/kernel/strmod/telmod"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111881-03", package:"SUNWcsxu SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111882_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111882_03.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111882_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/kernel/strmod/telmod 111882-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855577); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111882-03"); + script_name(english: "Solaris Update for /usr/kernel/strmod/telmod 111882-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/kernel/strmod/telmod + For more information please visit the below reference link. + + Affected Software/OS: + /usr/kernel/strmod/telmod on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111882-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/kernel/strmod/telmod"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"111882-03", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_111883_36.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_111883_36.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_111883_36.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Sun GigaSwift Ethernet 1.0 driver 111883-36 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855492); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "111883-36"); + script_name(english: "Solaris Update for Sun GigaSwift Ethernet 1.0 driver 111883-36"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Sun GigaSwift Ethernet 1.0 driver + For more information please visit the below reference link. + + Affected Software/OS: + Sun GigaSwift Ethernet 1.0 driver on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-111883-36-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Sun GigaSwift Ethernet 1.0 driver"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"111883-36", package:"SUNWced.u SUNWcea SUNWcedu SUNWced.us SUNWcedx.u SUNWceax SUNWcedx.us") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112039_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112039_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112039_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for usr/bin/ckitem 112039-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855595); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112039-01"); + script_name(english: "Solaris Update for usr/bin/ckitem 112039-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + usr/bin/ckitem + For more information please visit the below reference link. + + Affected Software/OS: + usr/bin/ckitem on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112039-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of usr/bin/ckitem"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112039-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112040_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112040_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112040_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for usr/bin/ckitem 112040-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855110); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112040-01"); + script_name(english: "Solaris Update for usr/bin/ckitem 112040-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + usr/bin/ckitem + For more information please visit the below reference link. + + Affected Software/OS: + usr/bin/ckitem on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112040-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of usr/bin/ckitem"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112040-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112169_07.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112169_07.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112169_07.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for platmod for Volume System H/W Series Products 112169-07 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855611); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112169-07"); + script_name(english: "Solaris Update for platmod for Volume System H/W Series Products 112169-07"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + platmod for Volume System H/W Series Products + For more information please visit the below reference link. + + Affected Software/OS: + platmod for Volume System H/W Series Products on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112169-07-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of platmod for Volume System H/W Series Products"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112169-07", package:"SUNWcarx.us SUNWpiclu SUNWcsr SUNWcarx.u") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112233_12.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112233_12.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112233_12.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Kernel 112233-12 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855169); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112233-12"); + script_name(english: "Solaris Update for Kernel 112233-12"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Kernel + For more information please visit the below reference link. + + Affected Software/OS: + Kernel on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112233-12-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Kernel"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112233-12", package:"SUNWwrsax.u SUNWcar.us SUNWfss SUNWncaux SUNWpmux SUNWpmu SUNWarc SUNWcar.m SUNWidn.u SUNWsxr.m SUNWpdx SUNWmdb SUNWkvm.m SUNWwrsmx.u SUNWncar SUNWcpr.u SUNWkvm.u SUNWcpcx.us SUNWncarx SUNWnfscx SUNWkvm.us FJSVhea SUNWgedu SUNWarcx SUNWcsl SUNWusx.u SUNWefcx.u SUNWcprx.us SUNWefcux SUNWnisu SUNWdrr.u SUNWdrrx.us SUNWwrsdx.u SUNWcprx.u SUNWcsxu SUNWcarx.us SUNWpiclu SUNWmdbx SUNWcpr.us SUNWgedx SUNWdrr.us SUNWcsr SUNWwrsux.u SUNWefcx.us SUNWfssx SUNWpd SUNWncau SUNWcpcx.u SUNWcpr.m SUNWhea SUNWcslx SUNWcpc.us SUNWcstlx SUNWcarx.u SUNWged SUNWcsu SUNWcar.u SUNWdrcrx.u SUNWdrrx.u SUNWidnx.u SUNWcpc.u SUNWkvm.c SUNWnfscr SUNWefclx SUNWcstl SUNWkvm.d") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112237_16.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112237_16.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112237_16.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for mech_krb5.so.1 and pam_krb5.so.1 112237-16 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855411); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112237-16"); + script_name(english: "Solaris Update for mech_krb5.so.1 and pam_krb5.so.1 112237-16"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + mech_krb5.so.1 and pam_krb5.so.1 + For more information please visit the below reference link. + + Affected Software/OS: + mech_krb5.so.1 and pam_krb5.so.1 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112237-16-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of mech_krb5.so.1 and pam_krb5.so.1"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112237-16", package:"SUNWgssdh SUNWgsdhx SUNWgssk SUNWgsskx SUNWcsl SUNWcslx SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112238_15.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112238_15.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112238_15.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for mech_krb5.so.1 and pam_krb5.so.1 112238-15 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855584); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112238-15"); + script_name(english: "Solaris Update for mech_krb5.so.1 and pam_krb5.so.1 112238-15"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + mech_krb5.so.1 and pam_krb5.so.1 + For more information please visit the below reference link. + + Affected Software/OS: + mech_krb5.so.1 and pam_krb5.so.1 on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112238-15-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of mech_krb5.so.1 and pam_krb5.so.1"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112238-15", package:"SUNWgssdh SUNWgssk SUNWcsl SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112240_13.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112240_13.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112240_13.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Supplemental Encryption Kerberos V5 112240-13 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855203); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112240-13"); + script_name(english: "Solaris Update for Supplemental Encryption Kerberos V5 112240-13"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Supplemental Encryption Kerberos V5 + For more information please visit the below reference link. + + Affected Software/OS: + Supplemental Encryption Kerberos V5 on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112240-13-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Supplemental Encryption Kerberos V5"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112240-13", package:"SUNWk5pu SUNWk5pk") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112352_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112352_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112352_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/drv/i8042 and /kernel/drv/kb8042 112352-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855528); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112352-02"); + script_name(english: "Solaris Update for /kernel/drv/i8042 and /kernel/drv/kb8042 112352-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/drv/i8042 and /kernel/drv/kb8042 + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/drv/i8042 and /kernel/drv/kb8042 on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112352-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/drv/i8042 and /kernel/drv/kb8042"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112352-02", package:"SUNWcar.i") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112390_14.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112390_14.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112390_14.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Supplemental Encryption Kerberos V5 112390-14 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855314); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112390-14"); + script_name(english: "Solaris Update for Supplemental Encryption Kerberos V5 112390-14"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Supplemental Encryption Kerberos V5 + For more information please visit the below reference link. + + Affected Software/OS: + Supplemental Encryption Kerberos V5 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112390-14-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Supplemental Encryption Kerberos V5"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112390-14", package:"SUNWk5pu SUNWk5pk SUNWk5pkx SUNWk5pux") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112459_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112459_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112459_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/pt_chmod 112459-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855292); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112459-01"); + script_name(english: "Solaris Update for /usr/lib/pt_chmod 112459-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/pt_chmod + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/pt_chmod on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112459-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/pt_chmod"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112459-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112460_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112460_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112460_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/pt_chmod 112460-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855491); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112460-01"); + script_name(english: "Solaris Update for /usr/lib/pt_chmod 112460-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/pt_chmod + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/pt_chmod on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112460-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/pt_chmod"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112460-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112601_10.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112601_10.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112601_10.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for PGX32 Graphics 112601-10 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855069); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112601-10"); + script_name(english: "Solaris Update for PGX32 Graphics 112601-10"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + PGX32 Graphics + For more information please visit the below reference link. + + Affected Software/OS: + PGX32 Graphics on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112601-10-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of PGX32 Graphics"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112601-10", package:"TSIpgxx.us TSIpgxx.u TSIpgxw TSIpgx.u TSIpgx.us") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112609_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112609_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112609_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/drv/le and /kernel/drv/sparcv9/le 112609-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855513); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112609-02"); + script_name(english: "Solaris Update for /kernel/drv/le and /kernel/drv/sparcv9/le 112609-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/drv/le and /kernel/drv/sparcv9/le + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/drv/le and /kernel/drv/sparcv9/le on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112609-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/drv/le and /kernel/drv/sparcv9/le"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112609-02", package:"SUNWcarx.us SUNWcsr SUNWcarx.u") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112611_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112611_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112611_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/libz.so.1 112611-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855511); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112611-02"); + script_name(english: "Solaris Update for /usr/lib/libz.so.1 112611-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/libz.so.1 + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/libz.so.1 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112611-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/libz.so.1"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112611-02", package:"SUNWzlibx SUNWzlib") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112612_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112612_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112612_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/libz.so.1 112612-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855162); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112612-02"); + script_name(english: "Solaris Update for /usr/lib/libz.so.1 112612-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/libz.so.1 + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/libz.so.1 on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112612-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/libz.so.1"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112612-02", package:"SUNWzlib") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112617_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112617_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112617_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for CDE 1.5 112617-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855309); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112617-02"); + script_name(english: "Solaris Update for CDE 1.5 112617-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + CDE 1.5 + For more information please visit the below reference link. + + Affected Software/OS: + CDE 1.5 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112617-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of CDE 1.5"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112617-02", package:"SUNWdtdmn") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112661_13.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112661_13.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112661_13.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for IIIM and X Input & Output Method 112661-13 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855443); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112661-13"); + script_name(english: "Solaris Update for IIIM and X Input & Output Method 112661-13"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + IIIM and X Input & Output Method + For more information please visit the below reference link. + + Affected Software/OS: + IIIM and X Input & Output Method on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112661-13-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of IIIM and X Input & Output Method"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112661-13", package:"SUNWxi18x SUNWjwncx JSatsvw SUNWhkleu SUNWcleu SUNWj3irt SUNWlccom SUNWiiimu SUNWjxplt SUNWxi18n SUNWiiimr SUNWhleu SUNWximx SUNWxim") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112662_09.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112662_09.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112662_09.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for IIIM and X Input & Output Method 112662-09 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855594); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112662-09"); + script_name(english: "Solaris Update for IIIM and X Input & Output Method 112662-09"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + IIIM and X Input & Output Method + For more information please visit the below reference link. + + Affected Software/OS: + IIIM and X Input & Output Method on solaris_5.9_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112662-09-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of IIIM and X Input & Output Method"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"i386", patch:"112662-09", package:"SUNWjwncx JSatsvw SUNWhkleu SUNWcleu SUNWj3irt SUNWlccom SUNWiiimu SUNWjxplt SUNWxi18n SUNWiiimr SUNWhleu SUNWxim") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112668_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112668_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112668_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for gzip 112668-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855009); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112668-04"); + script_name(english: "Solaris Update for gzip 112668-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + gzip + For more information please visit the below reference link. + + Affected Software/OS: + gzip on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112668-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of gzip"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112668-04", package:"SUNWgzip SUNWgzipS") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112669_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112669_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112669_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for gzip 112669-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855262); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112669-04"); + script_name(english: "Solaris Update for gzip 112669-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + gzip + For more information please visit the below reference link. + + Affected Software/OS: + gzip on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112669-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of gzip"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112669-04", package:"SUNWgzip SUNWgzipS") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112792_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112792_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112792_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/pcmciad 112792-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855615); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112792-01"); + script_name(english: "Solaris Update for /usr/lib/pcmciad 112792-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/pcmciad + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/pcmciad on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112792-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/pcmciad"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112792-01", package:"SUNWpcmcu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112793_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112793_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112793_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/pcmciad 112793-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855609); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112793-01"); + script_name(english: "Solaris Update for /usr/lib/pcmciad 112793-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/pcmciad + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/pcmciad on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112793-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/pcmciad"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112793-01", package:"SUNWpcmcu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112796_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112796_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112796_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/in.talkd 112796-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855047); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112796-01"); + script_name(english: "Solaris Update for /usr/sbin/in.talkd 112796-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/in.talkd + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/in.talkd on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112796-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/in.talkd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112796-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112797_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112797_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112797_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/in.talkd 112797-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855284); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112797-01"); + script_name(english: "Solaris Update for /usr/sbin/in.talkd 112797-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/in.talkd + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/in.talkd on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112797-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/in.talkd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112797-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112807_22.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112807_22.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112807_22.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for CDE 1.5 112807-22 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855026); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112807-22"); + script_name(english: "Solaris Update for CDE 1.5 112807-22"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + CDE 1.5 + For more information please visit the below reference link. + + Affected Software/OS: + CDE 1.5 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112807-22-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of CDE 1.5"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112807-22", package:"SUNWdtdte") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112808_10.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112808_10.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112808_10.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for CDE1.5 112808-10 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855245); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112808-10"); + script_name(english: "Solaris Update for CDE1.5 112808-10"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + CDE1.5 + For more information please visit the below reference link. + + Affected Software/OS: + CDE1.5 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112808-10-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of CDE1.5"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112808-10", package:"SUNWtltkx SUNWtltk") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112810_06.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112810_06.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112810_06.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for CDE 1.5 112810-06 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855068); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112810-06"); + script_name(english: "Solaris Update for CDE 1.5 112810-06"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + CDE 1.5 + For more information please visit the below reference link. + + Affected Software/OS: + CDE 1.5 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112810-06-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of CDE 1.5"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112810-06", package:"SUNWdtdst") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112811_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112811_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112811_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for OpenWindows 3.7.0 112811-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855173); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112811-02"); + script_name(english: "Solaris Update for OpenWindows 3.7.0 112811-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + OpenWindows 3.7.0 + For more information please visit the below reference link. + + Affected Software/OS: + OpenWindows 3.7.0 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112811-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of OpenWindows 3.7.0"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112811-02", package:"SUNWolrte") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112817_32.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112817_32.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112817_32.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Sun GigaSwift Ethernet 1.0 driver 112817-32 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855485); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112817-32"); + script_name(english: "Solaris Update for Sun GigaSwift Ethernet 1.0 driver 112817-32"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Sun GigaSwift Ethernet 1.0 driver + For more information please visit the below reference link. + + Affected Software/OS: + Sun GigaSwift Ethernet 1.0 driver on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112817-32-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Sun GigaSwift Ethernet 1.0 driver"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112817-32", package:"SUNWced.u SUNWcea SUNWcedu SUNWced.us SUNWcedx.u SUNWceax SUNWcedx.us") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112837_18.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112837_18.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112837_18.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for in.dhcpd libresolv and BIND9 112837-18 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855308); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112837-18"); + script_cve_id("CVE-2007-5365"); + script_name(english: "Solaris Update for in.dhcpd libresolv and BIND9 112837-18"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + in.dhcpd libresolv and BIND9 + For more information please visit the below reference link. + + Affected Software/OS: + in.dhcpd libresolv and BIND9 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112837-18-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of in.dhcpd libresolv and BIND9"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112837-18", package:"SUNWdhcsu SUNWarc SUNWarcx SUNWcsl SUNWhea SUNWcslx SUNWcstlx SUNWcsu SUNWinamd SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112846_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112846_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112846_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/netsvc/rwall/rpc.rwalld 112846-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855227); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112846-01"); + script_name(english: "Solaris Update for /usr/lib/netsvc/rwall/rpc.rwalld 112846-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/netsvc/rwall/rpc.rwalld + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/netsvc/rwall/rpc.rwalld on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112846-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/netsvc/rwall/rpc.rwalld"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"112846-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112847_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112847_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112847_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/netsvc/rwall/rpc.rwalld 112847-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855563); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112847-01"); + script_name(english: "Solaris Update for /usr/lib/netsvc/rwall/rpc.rwalld 112847-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/netsvc/rwall/rpc.rwalld + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/netsvc/rwall/rpc.rwalld on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112847-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/netsvc/rwall/rpc.rwalld"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"112847-01", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112874_45.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112874_45.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112874_45.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for libc 112874-45 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855451); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112874-45"); + script_cve_id("CVE-2008-0122"); + script_name(english: "Solaris Update for libc 112874-45"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + libc + For more information please visit the below reference link. + + Affected Software/OS: + libc on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112874-45-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of libc"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112874-45", package:"SUNWarc SUNWbcp SUNWmdb SUNWdpl SUNWarcx SUNWcsl SUNWmdbx SUNWcsr SUNWdplx SUNWhea SUNWcslx SUNWcstlx SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112875_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112875_01.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112875_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/netsvc/rwall/rpc.rwalld 112875-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855317); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112875-01"); + script_name(english: "Solaris Update for /usr/lib/netsvc/rwall/rpc.rwalld 112875-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/netsvc/rwall/rpc.rwalld + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/netsvc/rwall/rpc.rwalld on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112875-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/netsvc/rwall/rpc.rwalld"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112875-01", package:"SUNWrcmds") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112908_35.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112908_35.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112908_35.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for krb5, gss 112908-35 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855476); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112908-35"); + script_name(english: "Solaris Update for krb5, gss 112908-35"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + krb5, gss + For more information please visit the below reference link. + + Affected Software/OS: + krb5, gss on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112908-35-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of krb5, gss"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112908-35", package:"SUNWcar.us SUNWkrbu SUNWgssk SUNWgsskx SUNWgssx SUNWcarx.us SUNWcsr SUNWgss SUNWkrbr SUNWhea SUNWcstlx SUNWcarx.u SUNWcar.u SUNWkrbux SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112915_06.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112915_06.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112915_06.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for snoop 112915-06 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855106); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112915-06"); + script_name(english: "Solaris Update for snoop 112915-06"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + snoop + For more information please visit the below reference link. + + Affected Software/OS: + snoop on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112915-06-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of snoop"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112915-06", package:"SUNWrcmdc") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112921_09.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112921_09.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112921_09.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for libkadm5 112921-09 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855493); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112921-09"); + script_cve_id("CVE-2007-0957"); + script_name(english: "Solaris Update for libkadm5 112921-09"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + libkadm5 + For more information please visit the below reference link. + + Affected Software/OS: + libkadm5 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112921-09-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of libkadm5"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112921-09", package:"SUNWkrbu SUNWkdcu SUNWcstlx SUNWkrbux SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112922_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112922_02.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112922_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for krb5 lib 112922-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855217); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112922-02"); + script_name(english: "Solaris Update for krb5 lib 112922-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + krb5 lib + For more information please visit the below reference link. + + Affected Software/OS: + krb5 lib on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112922-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of krb5 lib"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112922-02", package:"SUNWkrbu SUNWkdcu SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112923_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112923_04.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112923_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for krb5 usr/lib 112923-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855610); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112923-04"); + script_cve_id("CVE-2007-0957"); + script_name(english: "Solaris Update for krb5 usr/lib 112923-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + krb5 usr/lib + For more information please visit the below reference link. + + Affected Software/OS: + krb5 usr/lib on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112923-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of krb5 usr/lib"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112923-04", package:"SUNWkrbu SUNWkdcu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112925_08.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112925_08.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112925_08.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for ktutil kdb5_util kadmin kadmin.local kadmind 112925-08 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855025); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112925-08"); + script_cve_id("CVE-2007-0957"); + script_name(english: "Solaris Update for ktutil kdb5_util kadmin kadmin.local kadmind 112925-08"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + ktutil kdb5_util kadmin kadmin.local kadmind + For more information please visit the below reference link. + + Affected Software/OS: + ktutil kdb5_util kadmin kadmin.local kadmind on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112925-08-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of ktutil kdb5_util kadmin kadmin.local kadmind"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112925-08", package:"SUNWkrbu SUNWkdcu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112926_06.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112926_06.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112926_06.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for smartcard 112926-06 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855294); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112926-06"); + script_name(english: "Solaris Update for smartcard 112926-06"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + smartcard + For more information please visit the below reference link. + + Affected Software/OS: + smartcard on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112926-06-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of smartcard"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112926-06", package:"SUNWocf SUNWocfx SUNWocfh SUNWcstlx SUNWocfr SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112945_46.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112945_46.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112945_46.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for wbem 112945-46 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855090); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112945-46"); + script_name(english: "Solaris Update for wbem 112945-46"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + wbem + For more information please visit the below reference link. + + Affected Software/OS: + wbem on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112945-46-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of wbem"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112945-46", package:"SUNWwbdev SUNWmga SUNWmcc SUNWwbapi SUNWmccom SUNWpmgr SUNWlvma SUNWwbcou SUNWwbmc SUNWmc SUNWdclnt SUNWwbcor SUNWwbpro") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112951_14.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112951_14.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112951_14.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for add and rm 112951-14 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855351); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112951-14"); + script_name(english: "Solaris Update for add and rm 112951-14"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + add and rm + For more information please visit the below reference link. + + Affected Software/OS: + add and rm on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112951-14-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of add and rm"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112951-14", package:"SUNWswmt") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112960_65.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112960_65.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112960_65.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Obsoleted by 112960-65 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855551); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112960-65"); + script_name(english: "Solaris Update for Obsoleted by 112960-65"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Obsoleted by + For more information please visit the below reference link. + + Affected Software/OS: + Obsoleted by on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112960-65-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Obsoleted by"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112960-65", package:"SUNWarc SUNWarcx SUNWcsl SUNWnisu SUNWhea SUNWcslx SUNWcstlx SUNWcsu SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112963_32.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112963_32.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112963_32.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for linker 112963-32 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855108); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112963-32"); + script_name(english: "Solaris Update for linker 112963-32"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + linker + For more information please visit the below reference link. + + Affected Software/OS: + linker on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112963-32-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of linker"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112963-32", package:"SUNWarc SUNWbtool SUNWmdb SUNWtoox SUNWxcu4 SUNWbtoox SUNWcsl SUNWtoo SUNWcsxu SUNWmdbx SUNWcsr SUNWhea SUNWcslx SUNWosdem SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_112998_05.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_112998_05.nasl 2009-06-02 17:35:51 UTC (rev 3580) +++ trunk/openvas-plugins/scripts/gb_solaris_112998_05.nasl 2009-06-03 10:19:17 UTC (rev 3581) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/syslogd 112998-05 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855112); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "112998-05"); + script_name(english: "Solaris Update for /usr/sbin/syslogd 112998-05"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/syslogd + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/syslogd on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-112998-05-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/syslogd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"112998-05", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file From scm-commit at wald.intevation.org Wed Jun 3 12:24:12 2009 From: scm-commit at wald.intevation.org (scm-commit@wald.intevation.org) Date: Wed, 3 Jun 2009 12:24:12 +0200 (CEST) Subject: [Openvas-commits] r3582 - in trunk/openvas-plugins: . scripts Message-ID: <20090603102412.BC3B6139ED@pyrosoma.intevation.org> Author: chandra Date: 2009-06-03 12:24:08 +0200 (Wed, 03 Jun 2009) New Revision: 3582 Added: trunk/openvas-plugins/scripts/gb_solaris_113031_04.nasl trunk/openvas-plugins/scripts/gb_solaris_113072_08.nasl trunk/openvas-plugins/scripts/gb_solaris_113073_14.nasl trunk/openvas-plugins/scripts/gb_solaris_113146_12.nasl trunk/openvas-plugins/scripts/gb_solaris_113240_13.nasl trunk/openvas-plugins/scripts/gb_solaris_113241_13.nasl trunk/openvas-plugins/scripts/gb_solaris_113278_22.nasl trunk/openvas-plugins/scripts/gb_solaris_113279_01.nasl trunk/openvas-plugins/scripts/gb_solaris_113318_35.nasl trunk/openvas-plugins/scripts/gb_solaris_113322_03.nasl trunk/openvas-plugins/scripts/gb_solaris_113329_24.nasl trunk/openvas-plugins/scripts/gb_solaris_113451_15.nasl trunk/openvas-plugins/scripts/gb_solaris_113575_11.nasl trunk/openvas-plugins/scripts/gb_solaris_113579_12.nasl trunk/openvas-plugins/scripts/gb_solaris_113650_02.nasl trunk/openvas-plugins/scripts/gb_solaris_113651_02.nasl trunk/openvas-plugins/scripts/gb_solaris_113685_07.nasl trunk/openvas-plugins/scripts/gb_solaris_113686_06.nasl trunk/openvas-plugins/scripts/gb_solaris_113687_02.nasl trunk/openvas-plugins/scripts/gb_solaris_113688_02.nasl trunk/openvas-plugins/scripts/gb_solaris_113713_27.nasl trunk/openvas-plugins/scripts/gb_solaris_113718_02.nasl trunk/openvas-plugins/scripts/gb_solaris_113749_02.nasl trunk/openvas-plugins/scripts/gb_solaris_113750_02.nasl trunk/openvas-plugins/scripts/gb_solaris_113792_01.nasl trunk/openvas-plugins/scripts/gb_solaris_113793_01.nasl trunk/openvas-plugins/scripts/gb_solaris_113798_02.nasl trunk/openvas-plugins/scripts/gb_solaris_113838_02.nasl trunk/openvas-plugins/scripts/gb_solaris_113870_05.nasl trunk/openvas-plugins/scripts/gb_solaris_113986_26.nasl trunk/openvas-plugins/scripts/gb_solaris_113996_02.nasl trunk/openvas-plugins/scripts/gb_solaris_114008_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114009_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114014_22.nasl trunk/openvas-plugins/scripts/gb_solaris_114015_22.nasl trunk/openvas-plugins/scripts/gb_solaris_114016_03.nasl trunk/openvas-plugins/scripts/gb_solaris_114017_03.nasl trunk/openvas-plugins/scripts/gb_solaris_114046_03.nasl trunk/openvas-plugins/scripts/gb_solaris_114049_14.nasl trunk/openvas-plugins/scripts/gb_solaris_114125_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114133_04.nasl trunk/openvas-plugins/scripts/gb_solaris_114134_04.nasl trunk/openvas-plugins/scripts/gb_solaris_114135_03.nasl trunk/openvas-plugins/scripts/gb_solaris_114136_02.nasl trunk/openvas-plugins/scripts/gb_solaris_114137_10.nasl trunk/openvas-plugins/scripts/gb_solaris_114145_11.nasl trunk/openvas-plugins/scripts/gb_solaris_114154_02.nasl trunk/openvas-plugins/scripts/gb_solaris_114162_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114163_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114193_36.nasl trunk/openvas-plugins/scripts/gb_solaris_114194_11.nasl trunk/openvas-plugins/scripts/gb_solaris_114210_21.nasl trunk/openvas-plugins/scripts/gb_solaris_114219_11.nasl trunk/openvas-plugins/scripts/gb_solaris_114220_11.nasl trunk/openvas-plugins/scripts/gb_solaris_114242_50.nasl trunk/openvas-plugins/scripts/gb_solaris_114262_05.nasl trunk/openvas-plugins/scripts/gb_solaris_114265_17.nasl trunk/openvas-plugins/scripts/gb_solaris_114342_12.nasl trunk/openvas-plugins/scripts/gb_solaris_114344_40.nasl trunk/openvas-plugins/scripts/gb_solaris_114348_16.nasl trunk/openvas-plugins/scripts/gb_solaris_114356_18.nasl trunk/openvas-plugins/scripts/gb_solaris_114357_17.nasl trunk/openvas-plugins/scripts/gb_solaris_114361_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114362_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114423_07.nasl trunk/openvas-plugins/scripts/gb_solaris_114432_34.nasl trunk/openvas-plugins/scripts/gb_solaris_114435_14.nasl trunk/openvas-plugins/scripts/gb_solaris_114436_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114495_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114496_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114503_14.nasl trunk/openvas-plugins/scripts/gb_solaris_114504_14.nasl trunk/openvas-plugins/scripts/gb_solaris_114564_14.nasl trunk/openvas-plugins/scripts/gb_solaris_114565_14.nasl trunk/openvas-plugins/scripts/gb_solaris_114568_26.nasl trunk/openvas-plugins/scripts/gb_solaris_114569_02.nasl trunk/openvas-plugins/scripts/gb_solaris_114570_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114586_03.nasl trunk/openvas-plugins/scripts/gb_solaris_114587_03.nasl trunk/openvas-plugins/scripts/gb_solaris_114617_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114636_04.nasl trunk/openvas-plugins/scripts/gb_solaris_114637_04.nasl trunk/openvas-plugins/scripts/gb_solaris_114669_04.nasl trunk/openvas-plugins/scripts/gb_solaris_114670_04.nasl trunk/openvas-plugins/scripts/gb_solaris_114673_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114674_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114677_15.nasl trunk/openvas-plugins/scripts/gb_solaris_114678_15.nasl trunk/openvas-plugins/scripts/gb_solaris_114684_13.nasl trunk/openvas-plugins/scripts/gb_solaris_114685_13.nasl trunk/openvas-plugins/scripts/gb_solaris_114713_03.nasl trunk/openvas-plugins/scripts/gb_solaris_114714_02.nasl trunk/openvas-plugins/scripts/gb_solaris_114715_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114716_05.nasl trunk/openvas-plugins/scripts/gb_solaris_114717_05.nasl trunk/openvas-plugins/scripts/gb_solaris_114729_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114730_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114802_02.nasl trunk/openvas-plugins/scripts/gb_solaris_114861_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114862_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114875_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114876_01.nasl trunk/openvas-plugins/scripts/gb_solaris_114932_03.nasl trunk/openvas-plugins/scripts/gb_solaris_114971_03.nasl trunk/openvas-plugins/scripts/gb_solaris_114980_25.nasl trunk/openvas-plugins/scripts/gb_solaris_114984_02.nasl trunk/openvas-plugins/scripts/gb_solaris_114985_02.nasl Modified: trunk/openvas-plugins/ChangeLog Log: Added Solaris local security checks Modified: trunk/openvas-plugins/ChangeLog =================================================================== --- trunk/openvas-plugins/ChangeLog 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/ChangeLog 2009-06-03 10:24:08 UTC (rev 3582) @@ -1,4 +1,114 @@ 2009-06-03 Chandrashekhar B + * scripts/gb_solaris_114984_02.nasl + scripts/gb_solaris_114496_01.nasl + scripts/gb_solaris_113750_02.nasl + scripts/gb_solaris_114262_05.nasl + scripts/gb_solaris_113575_11.nasl + scripts/gb_solaris_114875_01.nasl + scripts/gb_solaris_113322_03.nasl + scripts/gb_solaris_114242_50.nasl + scripts/gb_solaris_113072_08.nasl + scripts/gb_solaris_113718_02.nasl + scripts/gb_solaris_114669_04.nasl + scripts/gb_solaris_114971_03.nasl + scripts/gb_solaris_114432_34.nasl + scripts/gb_solaris_114684_13.nasl + scripts/gb_solaris_113688_02.nasl + scripts/gb_solaris_113686_06.nasl + scripts/gb_solaris_114565_14.nasl + scripts/gb_solaris_113451_15.nasl + scripts/gb_solaris_114678_15.nasl + scripts/gb_solaris_113240_13.nasl + scripts/gb_solaris_113650_02.nasl + scripts/gb_solaris_113798_02.nasl + scripts/gb_solaris_114193_36.nasl + scripts/gb_solaris_113073_14.nasl + scripts/gb_solaris_114495_01.nasl + scripts/gb_solaris_114134_04.nasl + scripts/gb_solaris_113870_05.nasl + scripts/gb_solaris_114617_01.nasl + scripts/gb_solaris_113146_12.nasl + scripts/gb_solaris_114730_01.nasl + scripts/gb_solaris_114015_22.nasl + scripts/gb_solaris_114362_01.nasl + scripts/gb_solaris_113713_27.nasl + scripts/gb_solaris_114713_03.nasl + scripts/gb_solaris_113996_02.nasl + scripts/gb_solaris_113687_02.nasl + scripts/gb_solaris_114145_11.nasl + scripts/gb_solaris_114342_12.nasl + scripts/gb_solaris_114564_14.nasl + scripts/gb_solaris_114677_15.nasl + scripts/gb_solaris_114436_01.nasl + scripts/gb_solaris_114135_03.nasl + scripts/gb_solaris_114163_01.nasl + scripts/gb_solaris_113278_22.nasl + scripts/gb_solaris_113838_02.nasl + scripts/gb_solaris_114670_04.nasl + scripts/gb_solaris_114219_11.nasl + scripts/gb_solaris_114714_02.nasl + scripts/gb_solaris_114344_40.nasl + scripts/gb_solaris_114862_01.nasl + scripts/gb_solaris_114435_14.nasl + scripts/gb_solaris_114049_14.nasl + scripts/gb_solaris_114348_16.nasl + scripts/gb_solaris_113318_35.nasl + scripts/gb_solaris_114356_18.nasl + scripts/gb_solaris_114802_02.nasl + scripts/gb_solaris_114210_21.nasl + scripts/gb_solaris_114133_04.nasl + scripts/gb_solaris_113986_26.nasl + scripts/gb_solaris_114265_17.nasl + scripts/gb_solaris_114014_22.nasl + scripts/gb_solaris_114136_02.nasl + scripts/gb_solaris_114361_01.nasl + scripts/gb_solaris_114154_02.nasl + scripts/gb_solaris_114009_01.nasl + scripts/gb_solaris_114017_03.nasl + scripts/gb_solaris_114715_01.nasl + scripts/gb_solaris_114674_01.nasl + scripts/gb_solaris_114587_03.nasl + scripts/gb_solaris_114046_03.nasl + scripts/gb_solaris_114357_17.nasl + scripts/gb_solaris_113749_02.nasl + scripts/gb_solaris_114568_26.nasl + scripts/gb_solaris_114162_01.nasl + scripts/gb_solaris_114423_07.nasl + scripts/gb_solaris_113279_01.nasl + scripts/gb_solaris_114717_05.nasl + scripts/gb_solaris_113031_04.nasl + scripts/gb_solaris_114861_01.nasl + scripts/gb_solaris_114570_01.nasl + scripts/gb_solaris_113579_12.nasl + scripts/gb_solaris_114637_04.nasl + scripts/gb_solaris_114980_25.nasl + scripts/gb_solaris_113793_01.nasl + scripts/gb_solaris_114504_14.nasl + scripts/gb_solaris_114932_03.nasl + scripts/gb_solaris_114985_02.nasl + scripts/gb_solaris_114876_01.nasl + scripts/gb_solaris_114008_01.nasl + scripts/gb_solaris_114016_03.nasl + scripts/gb_solaris_114220_11.nasl + scripts/gb_solaris_114673_01.nasl + scripts/gb_solaris_114586_03.nasl + scripts/gb_solaris_114685_13.nasl + scripts/gb_solaris_114125_01.nasl + scripts/gb_solaris_114716_05.nasl + scripts/gb_solaris_114729_01.nasl + scripts/gb_solaris_114194_11.nasl + scripts/gb_solaris_113241_13.nasl + scripts/gb_solaris_113329_24.nasl + scripts/gb_solaris_113651_02.nasl + scripts/gb_solaris_114569_02.nasl + scripts/gb_solaris_114636_04.nasl + scripts/gb_solaris_113792_01.nasl + scripts/gb_solaris_114137_10.nasl + scripts/gb_solaris_114503_14.nasl + scripts/gb_solaris_113685_07.nasl: + Added Solaris local security checks + +2009-06-03 Chandrashekhar B * scripts/gb_solaris_111328_05.nasl scripts/gb_solaris_110916_07.nasl scripts/gb_solaris_110336_03.nasl Added: trunk/openvas-plugins/scripts/gb_solaris_113031_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113031_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113031_04.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for edit, ex, vedit, vi and view 113031-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855446); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113031-04"); + script_name(english: "Solaris Update for edit, ex, vedit, vi and view 113031-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + edit, ex, vedit, vi and view + For more information please visit the below reference link. + + Affected Software/OS: + edit, ex, vedit, vi and view on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113031-04-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of edit, ex, vedit, vi and view"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113031-04", package:"SUNWxcu4 SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113072_08.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113072_08.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113072_08.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/sbin/format 113072-08 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855497); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113072-08"); + script_name(english: "Solaris Update for /usr/sbin/format 113072-08"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/sbin/format + For more information please visit the below reference link. + + Affected Software/OS: + /usr/sbin/format on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113072-08-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/sbin/format"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113072-08", package:"SUNWcsr SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113073_14.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113073_14.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113073_14.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for ufs and fsck 113073-14 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855049); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113073-14"); + script_name(english: "Solaris Update for ufs and fsck 113073-14"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + ufs and fsck + For more information please visit the below reference link. + + Affected Software/OS: + ufs and fsck on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113073-14-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of ufs and fsck"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113073-14", package:"SUNWmdx SUNWmdr SUNWcsl SUNWcsxu SUNWcarx.us SUNWcsr SUNWmdu SUNWhea SUNWcslx SUNWcarx.u SUNWcsu SUNWmdau") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113146_12.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113146_12.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113146_12.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Apache Security 113146-12 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855472); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113146-12"); + script_cve_id("CVE-2007-5000", "CVE-2007-6388", "CVE-2006-5752", "CVE-2007-3304", "CVE-2005-3352", "CVE-2006-3747", "CAN-2005-2088", "CAN-2004-0492"); + script_name(english: "Solaris Update for Apache Security 113146-12"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Apache Security + For more information please visit the below reference link. + + Affected Software/OS: + Apache Security on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113146-12-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Apache Security"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113146-12", package:"SUNWapchS SUNWapchr SUNWapchd SUNWapchu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113240_13.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113240_13.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113240_13.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for CDE 1.5 113240-13 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855012); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113240-13"); + script_name(english: "Solaris Update for CDE 1.5 113240-13"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + CDE 1.5 + For more information please visit the below reference link. + + Affected Software/OS: + CDE 1.5 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113240-13-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of CDE 1.5"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113240-13", package:"SUNWdtwm") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113241_13.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113241_13.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113241_13.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for dtsession 113241-13 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855004); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113241-13"); + script_name(english: "Solaris Update for dtsession 113241-13"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + dtsession + For more information please visit the below reference link. + + Affected Software/OS: + dtsession on solaris_5.9_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113241-13-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of dtsession"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"i386", patch:"113241-13", package:"SUNWdtwm") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113278_22.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113278_22.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113278_22.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for NFS Daemon, rpcmod 113278-22 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855196); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113278-22"); + script_name(english: "Solaris Update for NFS Daemon, rpcmod 113278-22"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + NFS Daemon, rpcmod + For more information please visit the below reference link. + + Affected Software/OS: + NFS Daemon, rpcmod on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113278-22-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of NFS Daemon, rpcmod"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113278-22", package:"SUNWnfssu SUNWcarx.us SUNWcsr SUNWhea SUNWcarx.u SUNWnfscu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113279_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113279_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113279_01.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for klmmod 113279-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855579); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113279-01"); + script_name(english: "Solaris Update for klmmod 113279-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + klmmod + For more information please visit the below reference link. + + Affected Software/OS: + klmmod on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113279-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of klmmod"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113279-01", package:"SUNWnfscx SUNWhea SUNWnfscr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113318_35.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113318_35.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113318_35.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for NFS & autofs 113318-35 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855061); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113318-35"); + script_name(english: "Solaris Update for NFS & autofs 113318-35"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + NFS & autofs + For more information please visit the below reference link. + + Affected Software/OS: + NFS & autofs on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113318-35-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of NFS & autofs"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113318-35", package:"SUNWatfsu SUNWnfssx SUNWnfscx SUNWnfssu SUNWrsg SUNWrsgx SUNWrsgk SUNWcarx.us SUNWnfssr SUNWcsr SUNWhea SUNWcarx.u SUNWatfsr SUNWnfscu SUNWnfscr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113322_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113322_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113322_03.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for uucp 113322-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855285); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113322-03"); + script_name(english: "Solaris Update for uucp 113322-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + uucp + For more information please visit the below reference link. + + Affected Software/OS: + uucp on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113322-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of uucp"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113322-03", package:"SUNWbnuu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113329_24.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113329_24.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113329_24.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for lp 113329-24 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855329); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113329-24"); + script_name(english: "Solaris Update for lp 113329-24"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + lp + For more information please visit the below reference link. + + Affected Software/OS: + lp on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113329-24-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of lp"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113329-24", package:"SUNWpsu SUNWscplp SUNWpsf SUNWppm SUNWcsr SUNWpcu SUNWpsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113451_15.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113451_15.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113451_15.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for IKE 113451-15 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855342); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113451-15"); + script_name(english: "Solaris Update for IKE 113451-15"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + IKE + For more information please visit the below reference link. + + Affected Software/OS: + IKE on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113451-15-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of IKE"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113451-15", package:"SUNWcsl SUNWcsr SUNWcsu SUNWcstl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113575_11.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113575_11.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113575_11.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for sendmail 113575-11 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855253); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113575-11"); + script_name(english: "Solaris Update for sendmail 113575-11"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + sendmail + For more information please visit the below reference link. + + Affected Software/OS: + sendmail on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113575-11-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of sendmail"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113575-11", package:"SUNWsndmr SUNWsndmu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113579_12.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113579_12.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113579_12.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for ypserv/ypxfrd 113579-12 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855482); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113579-12"); + script_name(english: "Solaris Update for ypserv/ypxfrd 113579-12"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + ypserv/ypxfrd + For more information please visit the below reference link. + + Affected Software/OS: + ypserv/ypxfrd on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113579-12-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of ypserv/ypxfrd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113579-12", package:"SUNWypr SUNWnisu SUNWypu SUNWhea") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113650_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113650_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113650_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/utmp_update 113650-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855249); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113650-02"); + script_name(english: "Solaris Update for /usr/lib/utmp_update 113650-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/utmp_update + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/utmp_update on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113650-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/utmp_update"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"113650-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113651_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113651_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113651_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /usr/lib/utmp_update 113651-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855606); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113651-02"); + script_name(english: "Solaris Update for /usr/lib/utmp_update 113651-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /usr/lib/utmp_update + For more information please visit the below reference link. + + Affected Software/OS: + /usr/lib/utmp_update on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113651-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /usr/lib/utmp_update"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"113651-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113685_07.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113685_07.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113685_07.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for logindmux, ptsl, ms, bufmod, llc1, kb, zs, zsh, ptem 113685-07 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855530); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113685-07"); + script_name(english: "Solaris Update for logindmux, ptsl, ms, bufmod, llc1, kb, zs, zsh, ptem 113685-07"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + logindmux, ptsl, ms, bufmod, llc1, kb, zs, zsh, ptem + For more information please visit the below reference link. + + Affected Software/OS: + logindmux, ptsl, ms, bufmod, llc1, kb, zs, zsh, ptem on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113685-07-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of logindmux, ptsl, ms, bufmod, llc1, kb, zs, zsh, ptem"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"113685-07", package:"SUNWcar.us SUNWcsxu SUNWcarx.us SUNWcsr SUNWhea SUNWcarx.u SUNWcsu SUNWcar.u") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113686_06.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113686_06.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113686_06.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for logindmux/llc1/ptsl/bufmod/ptem 113686-06 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855056); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113686-06"); + script_name(english: "Solaris Update for logindmux/llc1/ptsl/bufmod/ptem 113686-06"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + logindmux/llc1/ptsl/bufmod/ptem + For more information please visit the below reference link. + + Affected Software/OS: + logindmux/llc1/ptsl/bufmod/ptem on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113686-06-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of logindmux/llc1/ptsl/bufmod/ptem"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"113686-06", package:"SUNWcsr SUNWhea SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113687_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113687_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113687_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/misc/kbtrans 113687-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855456); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113687-02"); + script_name(english: "Solaris Update for /kernel/misc/kbtrans 113687-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/misc/kbtrans + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/misc/kbtrans on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113687-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/misc/kbtrans"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"113687-02", package:"SUNWusbx SUNWusb") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113688_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113688_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113688_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for /kernel/misc/kbtrans 113688-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855187); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113688-02"); + script_name(english: "Solaris Update for /kernel/misc/kbtrans 113688-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + /kernel/misc/kbtrans + For more information please visit the below reference link. + + Affected Software/OS: + /kernel/misc/kbtrans on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113688-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of /kernel/misc/kbtrans"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"113688-02", package:"SUNWcsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113713_27.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113713_27.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113713_27.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for pkg utilities 113713-27 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855369); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113713-27"); + script_cve_id("CVE-2006-3738", "CVE-2006-4343", "CVE-2006-4339", "CVE-2006-2937", "CVE-2006-2940"); + script_name(english: "Solaris Update for pkg utilities 113713-27"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + pkg utilities + For more information please visit the below reference link. + + Affected Software/OS: + pkg utilities on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113713-27-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of pkg utilities"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113713-27", package:"SUNWarc SUNWcsr SUNWhea SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113718_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113718_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113718_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for usr/lib/utmp_update 113718-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855252); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113718-02"); + script_name(english: "Solaris Update for usr/lib/utmp_update 113718-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + usr/lib/utmp_update + For more information please visit the below reference link. + + Affected Software/OS: + usr/lib/utmp_update on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113718-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of usr/lib/utmp_update"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113718-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113749_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113749_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113749_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for User Manager CLI 113749-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855046); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113749-02"); + script_name(english: "Solaris Update for User Manager CLI 113749-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + User Manager CLI + For more information please visit the below reference link. + + Affected Software/OS: + User Manager CLI on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113749-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of User Manager CLI"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"113749-02", package:"SUNWmga") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113750_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113750_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113750_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for User Manager CLI 113750-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855445); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113750-02"); + script_name(english: "Solaris Update for User Manager CLI 113750-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + User Manager CLI + For more information please visit the below reference link. + + Affected Software/OS: + User Manager CLI on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113750-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of User Manager CLI"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"113750-02", package:"SUNWmga") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113792_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113792_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113792_01.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for OpenWindows 3.6.2 113792-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855334); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113792-01"); + script_name(english: "Solaris Update for OpenWindows 3.6.2 113792-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + OpenWindows 3.6.2 + For more information please visit the below reference link. + + Affected Software/OS: + OpenWindows 3.6.2 on solaris_5.8_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113792-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of OpenWindows 3.6.2"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"sparc", patch:"113792-01", package:"SUNWoldst") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113793_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113793_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113793_01.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for mailtool 113793-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855437); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113793-01"); + script_name(english: "Solaris Update for mailtool 113793-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + mailtool + For more information please visit the below reference link. + + Affected Software/OS: + mailtool on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113793-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of mailtool"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"113793-01", package:"SUNWoldst") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113798_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113798_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113798_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for CDE 1.5 113798-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855430); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113798-02"); + script_name(english: "Solaris Update for CDE 1.5 113798-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + CDE 1.5 + For more information please visit the below reference link. + + Affected Software/OS: + CDE 1.5 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113798-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of CDE 1.5"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"113798-02", package:"SUNWdtbas SUNWdtbax") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113838_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113838_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113838_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for libDtSvc 113838-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855005); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113838-02"); + script_name(english: "Solaris Update for libDtSvc 113838-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + libDtSvc + For more information please visit the below reference link. + + Affected Software/OS: + libDtSvc on solaris_5.9_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113838-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of libDtSvc"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"i386", patch:"113838-02", package:"SUNWdtbas") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113870_05.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113870_05.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113870_05.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for dtmail 113870-05 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855510); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113870-05"); + script_name(english: "Solaris Update for dtmail 113870-05"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + dtmail + For more information please visit the below reference link. + + Affected Software/OS: + dtmail on solaris_5.9_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113870-05-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of dtmail"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"i386", patch:"113870-05", package:"SUNWdtdst") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113986_26.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113986_26.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113986_26.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for linker 113986-26 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855365); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113986-26"); + script_name(english: "Solaris Update for linker 113986-26"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + linker + For more information please visit the below reference link. + + Affected Software/OS: + linker on solaris_5.9_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113986-26-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of linker"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"i386", patch:"113986-26", package:"SUNWarc SUNWbtool SUNWcsl SUNWtoo SUNWcsr SUNWhea SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_113996_02.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_113996_02.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_113996_02.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for utmp_update 113996-02 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855429); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "113996-02"); + script_name(english: "Solaris Update for utmp_update 113996-02"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + utmp_update + For more information please visit the below reference link. + + Affected Software/OS: + utmp_update on solaris_5.9_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-113996-02-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of utmp_update"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"i386", patch:"113996-02", package:"SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114008_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114008_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114008_01.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for cachefsd 114008-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855024); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114008-01"); + script_name(english: "Solaris Update for cachefsd 114008-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + cachefsd + For more information please visit the below reference link. + + Affected Software/OS: + cachefsd on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114008-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of cachefsd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"114008-01", package:"SUNWcsr SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114009_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114009_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114009_01.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for cachefsd 114009-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855504); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114009-01"); + script_name(english: "Solaris Update for cachefsd 114009-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + cachefsd + For more information please visit the below reference link. + + Affected Software/OS: + cachefsd on solaris_5.9_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114009-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of cachefsd"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"i386", patch:"114009-01", package:"SUNWcsr SUNWcsu") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114014_22.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114014_22.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114014_22.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for libxml, libxslt and Freeware man pages 114014-22 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855274); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114014-22"); + script_cve_id("CVE-2008-4225", "CVE-2008-4226", "CVE-2008-3529"); + script_name(english: "Solaris Update for libxml, libxslt and Freeware man pages 114014-22"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + libxml, libxslt and Freeware man pages + For more information please visit the below reference link. + + Affected Software/OS: + libxml, libxslt and Freeware man pages on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114014-22-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of libxml, libxslt and Freeware man pages"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"114014-22", package:"SUNWsfman SUNWlxmlx SUNWlxmlS SUNWlxml SUNWlxsl SUNWlxslx") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114015_22.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114015_22.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114015_22.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,74 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for libxml, libxslt and Freeware man pages 114015-22 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855495); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114015-22"); + script_cve_id("CVE-2008-4225", "CVE-2008-4226", "CVE-2008-3529"); + script_name(english: "Solaris Update for libxml, libxslt and Freeware man pages 114015-22"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + libxml, libxslt and Freeware man pages + For more information please visit the below reference link. + + Affected Software/OS: + libxml, libxslt and Freeware man pages on solaris_5.9_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114015-22-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of libxml, libxslt and Freeware man pages"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"i386", patch:"114015-22", package:"SUNWsfman SUNWlxmlS SUNWlxml SUNWlxsl") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114016_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114016_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114016_03.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for tomcat security 114016-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855590); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114016-03"); + script_name(english: "Solaris Update for tomcat security 114016-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + tomcat security + For more information please visit the below reference link. + + Affected Software/OS: + tomcat security on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114016-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of tomcat security"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"114016-03", package:"SUNWtcatu SUNWtcatS SUNWtcatr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114017_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114017_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114017_03.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for tomcat security 114017-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855546); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114017-03"); + script_name(english: "Solaris Update for tomcat security 114017-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + tomcat security + For more information please visit the below reference link. + + Affected Software/OS: + tomcat security on solaris_5.9_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114017-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of tomcat security"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"i386", patch:"114017-03", package:"SUNWtcatu SUNWtcatS SUNWtcatr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114046_03.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114046_03.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114046_03.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for Netscape Portable Runtime(4.1.4)/Network Security System(3.3.4) 114046-03 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855341); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114046-03"); + script_name(english: "Solaris Update for Netscape Portable Runtime(4.1.4)/Network Security System(3.3.4) 114046-03"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + Netscape Portable Runtime(4.1.4)/Network Security System(3.3.4) + For more information please visit the below reference link. + + Affected Software/OS: + Netscape Portable Runtime(4.1.4)/Network Security System(3.3.4) on solaris_5.8_x86 + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114046-03-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of Netscape Portable Runtime(4.1.4)/Network Security System(3.3.4)"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.8", arch:"i386", patch:"114046-03", package:"SUNWtls SUNWpr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114049_14.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114049_14.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114049_14.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for NSPR 4.1.6 / NSS 3.3.4.8 114049-14 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855300); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114049-14"); + script_name(english: "Solaris Update for NSPR 4.1.6 / NSS 3.3.4.8 114049-14"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + NSPR 4.1.6 / NSS 3.3.4.8 + For more information please visit the below reference link. + + Affected Software/OS: + NSPR 4.1.6 / NSS 3.3.4.8 on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114049-14-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of NSPR 4.1.6 / NSS 3.3.4.8"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"114049-14", package:"SUNWtlsx SUNWtls SUNWprx SUNWpr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114125_01.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114125_01.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114125_01.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for IKE config.sample 114125-01 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855471); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114125-01"); + script_name(english: "Solaris Update for IKE config.sample 114125-01"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + IKE config.sample + For more information please visit the below reference link. + + Affected Software/OS: + IKE config.sample on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114125-01-1 + + Risk factor: High"; + + script_description(english:desc["english"]); + script_summary(english:"Check for the Version of IKE config.sample"); + script_category(ACT_GATHER_INFO); + script_copyright(english:"Copyright (C) 2009 Intevation GmbH"); + script_family(english:"Solaris Local Security Checks"); + script_dependencies("gather-package-list.nasl"); + script_require_keys("ssh/login/solosversion"); + exit(0); +} + + +include("solaris.inc"); + +release = get_kb_item("ssh/login/solosversion"); + +if(release == NULL){ + exit(0); +} + +if(solaris_check_patch(release:"5.9", arch:"sparc", patch:"114125-01", package:"SUNWcsr") < 0) +{ + security_hole(0); + exit(0); +} \ No newline at end of file Added: trunk/openvas-plugins/scripts/gb_solaris_114133_04.nasl =================================================================== --- trunk/openvas-plugins/scripts/gb_solaris_114133_04.nasl 2009-06-03 10:19:17 UTC (rev 3581) +++ trunk/openvas-plugins/scripts/gb_solaris_114133_04.nasl 2009-06-03 10:24:08 UTC (rev 3582) @@ -0,0 +1,73 @@ +############################################################################### +# OpenVAS Vulnerability Test +# +# Solaris Update for mail 114133-04 +# +# Authors: +# System Generated Check +# +# Copyright: +# Copyright (c) 2009 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(855586); + script_version("$Revision: 1.0 $"); + script_xref(name: "SUNSolve", value: "114133-04"); + script_name(english: "Solaris Update for mail 114133-04"); + desc["english"] = " + + Vulnerability Insight: + The remote host is missing a patch containing a security fix, + which affects the following component(s): + mail + For more information please visit the below reference link. + + Affected Software/OS: + mail on solaris_5.9_sparc + + Fix: Please Install the Updated Packages. + + References: + http://sunsolve.sun.com/search/document.do?assetkey=1-21-114133-04-1 + + Risk factor: High"; +