smb_nt_ms02-025.nasl
来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 67 行
NASL
67 行
## This script was written by Michael Scheidell <scheidell at secnap.net># Copyright 2002 SECNAP Network Security, LLC.#if(description){ script_id(11143); script_bugtraq_id(4881); script_version("$Revision: 1323 $"); script_cve_id("CVE-2002-0368"); name["english"] = "Exchange 2000 Exhaust CPU Resources (Q320436)"; script_name(english:name["english"]); desc["english"] = "Malformed Mail Attribute can Cause Exchange 2000 to Exhaust CPUResources (Q320436)Impact of vulnerability: Denial of ServiceAffected Software: Recommendation: Users using any of the affectedproducts should install the patch immediately.Maximum Severity Rating: CriticalSeehttp://www.microsoft.com/technet/security/bulletin/ms02-025.mspx(note: requires admin level netbios login account to check)Risk factor : High"; script_description(english:desc["english"]); summary["english"] = "Checks for MS Hotfix Q320436, DOS on Exchange 2000"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2002 Michael Scheidell"); family["english"] = "Windows : Microsoft Bulletins"; script_family(english:family["english"]); script_dependencies("secpod_reg_enum.nasl"); script_require_keys("SMB/Registry/Enumerated"); exit(0);}include ("secpod_reg.inc");server = hotfix_check_nt_server();if (!server) exit (0);version = get_kb_item ("SMB/Exchange/Version");if (!version || (version != 60)) exit (0);sp = get_kb_item ("SMB/Exchange/SP");if (sp && (sp >= 3)) exit (0);if (hotfix_missing (name:"320436") > 0 ) security_hole(get_kb_item("SMB/transport"));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?