> nessus-update-plugins and, for example, smb_nt_ms01-025.nasl still has no
> check for SP2SRP1...

I see this in my copy of 025.nasl: (should be in CVS version os nasl's)

if(version == "5.0")
{
 # check for Win2k post SP2 SRP first.
 key = "SOFTWARE\Microsoft\Windows NT\CurrentVersion\HotFix\SP2SRP1";
 item = "Comments";
 value = string(registry_get_sz(key:key, item:item));
 if(value)exit(0);

 key = "SOFTWARE\Microsoft\Windows NT\CurrentVersion\HotFix\Q296185";
 item = "Comments";
 value = registry_get_sz(key:key, item:item);
 if(!value)
 {
 security_hole(139);
 exit(0);
 }
}

-- 
Michael Scheidell
SECNAP Network Security, LLC
(561) 368-9561 [EMAIL PROTECTED]
http://www.secnap.net/

Reply via email to