Microsoft Windows Service Pack Missing Multiple Vulnerabilities
🗓️ 27 Mar 2012 00:00:00Reported by Copyright (C) 2012 Greenbone AGType
openvas🔗 plugins.openvas.org👁 40 Views
| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| Windows 2003 (No Service Pack) Multiple Vulnerabilities | 4 Apr 200500:00 | – | nessus | |
| Windows Service Pack Out-of-Date | 5 Oct 200700:00 | – | nessus | |
| CVE-1999-0662 | 4 Feb 200005:00 | – | cve | |
| CVE-1999-0662 | 4 Feb 200005:00 | – | cvelist | |
| EUVD-1999-0645 | 7 Oct 202500:30 | – | euvd | |
| K15641: Outdated or incorrect version vulnerability CVE-1999-0662 | 21 Feb 202319:29 | – | f5 | |
| SOL15641 - Outdated or incorrect version vulnerability CVE-1999-0662 | 2 Oct 201400:00 | – | f5 | |
| CVE-1999-0662 | 1 Jan 199905:00 | – | nvd | |
| SMB Registry : XP Service Pack version | 3 Nov 200500:00 | – | openvas | |
| SMB Registry : XP Service Pack version | 3 Nov 200500:00 | – | openvas |
10
| Source | Link |
|---|---|
| xforce | www.xforce.iss.net/xforce/xfdb/1233 |
| cvedetails | www.cvedetails.com/cve/CVE-1999-0662 |
# SPDX-FileCopyrightText: 2012 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.902909");
script_version("2026-04-28T06:28:06+0000");
script_cve_id("CVE-1999-0662");
script_tag(name:"cvss_base", value:"10.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
script_tag(name:"last_modification", value:"2026-04-28 06:28:06 +0000 (Tue, 28 Apr 2026)");
script_tag(name:"creation_date", value:"2012-03-27 12:06:13 +0530 (Tue, 27 Mar 2012)");
script_name("Microsoft Windows Service Pack Missing Multiple Vulnerabilities");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2012 Greenbone AG");
script_family("Windows");
script_dependencies("smb_reg_service_pack.nasl");
script_mandatory_keys("SMB/WindowsVersion");
script_xref(name:"URL", value:"http://xforce.iss.net/xforce/xfdb/1233");
script_xref(name:"URL", value:"http://www.cvedetails.com/cve/CVE-1999-0662");
script_tag(name:"summary", value:"Microsoft Windows is prone to multiple vulnerabilities.");
script_tag(name:"vuldetect", value:"Checks if a vulnerable version is present on the target host.");
script_tag(name:"insight", value:"The flaws are due to a system critical
service pack not installed or is outdated or obsolete.");
script_tag(name:"impact", value:"Successful exploitation will allow remote
attackers to compromise a vulnerable system.");
script_tag(name:"affected", value:"- Microsoft Windows 7 x32/x64 Editions SP0
- Microsoft Windows 2K SP3 and prior
- Microsoft Windows XP x32 Editions SP2 and prior
- Microsoft Windows XP x64 Editions SP1 and prior
- Microsoft Windows 2003 x32/x64 Editions SP1 and prior
- Microsoft Windows Vista x32/x64 Editions SP1 and prior
- Microsoft Windows Server 2008 x32/x64 Editions SP1 and prior
- Microsoft Windows Server 2008 R2 SP0");
script_tag(name:"solution", value:"Apply the latest Service Pack or Upgrade to a recent Windows version.");
script_tag(name:"solution_type", value:"VendorFix");
script_tag(name:"qod_type", value:"registry");
exit(0);
}
include("secpod_reg.inc");
if( hotfix_check_sp( win2k:4 ) > 0 ) {
SvPk = get_kb_item( "SMB/Win2K/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( xp:3 ) > 0 ) {
SvPk = get_kb_item( "SMB/WinXP/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( xpx64:2 ) > 0 ) {
SvPk = get_kb_item( "SMB/WinXPx64/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( win2003:2 ) > 0 ) {
SvPk = get_kb_item( "SMB/Win2003/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( win2003x64:2 ) > 0 ) {
SvPk = get_kb_item( "SMB/Win2003x64/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( winVista:2 ) > 0 ) {
SvPk = get_kb_item( "SMB/WinVista/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( winVistax64:2 ) > 0 ) {
SvPk = get_kb_item( "SMB/WinVistax64/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( win7:1 ) > 0 ) {
SvPk = get_kb_item( "SMB/Win7/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( win7x64:1 ) > 0 ) {
SvPk = get_kb_item( "SMB/Win7x64/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( win2008:2 ) > 0 ) {
SvPk = get_kb_item( "SMB/Win2008/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( win2008x64:2 ) > 0 ) {
SvPk = get_kb_item( "SMB/Win2008x64/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
if( hotfix_check_sp( win2008r2:1 ) > 0 ) {
SvPk = get_kb_item( "SMB/Win2008R2/ServicePack" );
if( ! SvPk ) SvPk = "No Service Pack";
report = "Installed Service Pack (SP): " + SvPk;
security_message( port:0, data:report );
exit( 0 );
}
exit( 99 );
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation
28 Apr 2026 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 210
EPSS0.01908