# # (C) Tenable Network Security # if (description) { script_id(11666); script_name(english:"Post-Nuke information disclosure (2)"); desc["english"] = " The remote host is running post-nuke. It is possible to use it to determine the full path to its installation on the server or the name of the database used, by doing a request like : /modules.php?op=modload&name=Sections&file=index&req=viewarticle&artid= An attacker may use these flaws to gain a more intimate knowledge of the remote host. Solution : Change the members list privileges to admins only, or disable the members list module completely Risk factor : Low"; script_description(english:desc["english"]); script_summary(english:"Determine if a remote host is vulnerable to the opendir.php vulnerability"); script_category(ACT_GATHER_INFO); script_family(english:"CGI abuses", francais:"Abus de CGI"); script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security"); script_dependencie("find_service.nes", "no404.nasl"); script_require_ports("Services/www", 80); exit(0); } include("http_func.inc"); include("http_keepalive.inc"); port = get_kb_item("Services/www"); if(!port)port = 80; if(!get_port_state(port))exit(0); foreach dir (make_list("", "/post-nuke", "/pn", cgi_dirs())) { req = http_get(item:string(dir, "/modules.php?op=modload&name=Sections&file=index&req=viewarticle&artid="), port:port); res = http_keepalive_send_recv(port:port, data:req); if(res == NULL ) exit(0); if(egrep(pattern:".*/.*/index\.php.*236", string:res)) { security_warning(port); exit(0); } }