smb_nt_ms02-070.nasl

来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 64 行

NASL
64
字号
## This script was written by Michael Scheidell SECNAP Network Security## See the Nessus Scripts License for detailsif(description){ script_id(11215); script_bugtraq_id(6367); script_cve_id("CAN-2002-1256"); script_version("$Revision: 1323 $"); name["english"] = "Flaw in SMB Signing Could Enable Group Policy to be Modified (329170)"; script_name(english:name["english"]);  desc["english"] = "The SMB signing capability in the Server Message Blockprotocol in Microsoft Windows 2000 and Windows XP allowsattackers to disable the digital signing settings in anSMB session to force the data to be sent unsigned, theninject data into the session without detection, e.g. bymodifying group policy information sent from a domaincontroller.Maximum Severity Rating: ModerateRecommendation: Administrators should install the patch immediately. Affected Software: Microsoft Windows 2000Microsoft Windows XPSeehttp://www.microsoft.com/technet/security/bulletin/ms02-070.mspxRisk factor : Medium"; script_description(english:desc["english"]);  summary["english"] = "Checks for MS Hotfix 329170"; script_summary(english:summary["english"]);  script_category(ACT_GATHER_INFO);  script_copyright(english:"This script is Copyright (C) 2003 SECNAP Network Security"); 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");if ( hotfix_check_sp(xp:2) == 0 && hotfix_missing(name:"896422") == 0 ) exit(0);if ( hotfix_check_sp(nt:7, win2k:4, xp:2) <= 0 ) exit(0);if ( hotfix_missing(name:"Q329170") > 0 )	security_warning(get_kb_item("SMB/transport"));

⌨️ 快捷键说明

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