⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ntds_get_info.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by David Kyger <david_kyger@symantec.com>## changes by rd: minor wording in the description## desc["english"] = "Synopsis :It is possible to disclose LDAP information.Description :The directory base of the remote server is set to NULL. This allows information to be enumerated without any prior knowledge of the directory structure.Solution :If pre-Windows 2000 compatibility is not required, remove pre-Windows 2000 compatibility as follows :- start cmd.exe- execute the command :  net localgroup  'Pre-Windows 2000 Compatible Access' everyone /delete- restart the remote hostRisk factor :Low / CVSS Base Score : 2 (AV:R/AC:L/Au:NR/C:P/A:N/I:N/B:N)";if (description){ script_id(12105); script_version ("$Revision: 38 $");  name["english"] = "Use LDAP search request to retrieve information from NT Directory Services"; script_name(english:name["english"]); script_description(english:desc["english"]); summary["english"] = "Use LDAP search request to retrieve information from NT Directory Services"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Kyger"); script_family(english:"Remote file access"); script_dependencies("ldap_detect.nasl"); script_require_ports("Services/ldap", 389); exit(0);}## The script code starts here#include("misc_func.inc");port = get_kb_item("Services/ldap");if (!port) port = 389;if ( ! get_port_state(port) ) exit(0);senddata = raw_string(0x30, 0x25, 0x02, 0x01, 0x01, 0x63, 0x20, 0x04, 0x00, 0x0a, 0x01, 0x00, 0x0a, 0x01, 0x00, 0x02, 0x01, 0x00, 0x02, 0x01, 0x00, 0x01, 0x01, 0x00, 0x87, 0x0b, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x30, 0x00			);soc = open_sock_tcp(port);if ( ! soc ) exit(0);send(socket:soc, data:senddata);buf = recv(socket:soc, length:4096);close(soc);version = string(buf);if (buf == NULL) exit(0);	if ("NTDS" >< buf) {		hbuf = hexstr(buf);		ntdsinfo = strstr(hbuf, "4e54445320");		ntdsinfo = ntdsinfo - strstr(ntdsinfo, "308400");		ntdsinfo = hex2raw(s:ntdsinfo);		warning  = warning + string(ntdsinfo,"\n\n");		report = string (desc["english"],				"\n\nPlugin output :\n\n",				"The following information was pulled from the server via a LDAP request:\n",				warning);		security_note(port:port, data:report);	}

⌨️ 快捷键说明

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