📄 netware_ldap_search_request.nasl
字号:
## This script was written by David Kyger <david_kyger@symantec.com>##if (description){ script_id(12104); script_version ("$Revision: 38 $"); name["english"] = "Netware LDAP search request "; script_name(english:name["english"]); desc["english"] = "The server's directory base is set to NULL. This allows information to be enumerated without any prior knowledge of the directory structure.Solution : Disable or restrict anonymous binds in LDAP if not requiredSee also : http://support.novell.com/cgi-bin/search/searchtid.cgi?/10077872.htm Risk factor : Medium"; script_description(english:desc["english"]); summary["english"] = "Use LDAP search request to retrieve information from a Novell Netware Server"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Kyger"); family["english"] = "Netware"; script_family(english:family["english"]); 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);flag = 0;warning = string("The server's directory base is set to NULL. This allows information to be enumerated without any prior knowledge of the directory struture.The following information was pulled from the server via a LDAP request:\n");senddata = raw_string(0x30, 0x25, 0x02, 0x01, 0x02, 0x63, 0x20, 0x04, 0x00, 0x0a, 0x01, 0x02, 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);hbuf = hexstr(buf);if ("Novell" >< buf) { hostname = strstr(hbuf, "4c44415020536572766572"); hostname = hostname - strstr(hostname, "304f302b04075665"); hostname = hex2raw(s:hostname); warning += string(hostname,"\n"); flag = 1; }if ("LDAP Server" >< buf) { version = strstr(hbuf, "4e6f76656c6c"); version = version - strstr(version, "300d"); version = hex2raw(s:version); warning += string(version); flag = 1; }if (flag == 1) { warning += string("Solution: Disable or restrict anonymous binds in LDAP if not requiredSee also: http://support.novell.com/cgi-bin/search/searchtid.cgi?/10077872.htmRisk Factor: Medium");security_warning(port:port, data:warning);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -