# # This script written by deepquest # # # # Ref: # Date: 4 sep , 2003 7:07:39 AM # From: cyber_talon # Subject: EZsite Forum Discloses Passwords to Remote Users if(description) { script_id(11833); name["english"] = "EZsite Forum Discloses Passwords to Remote Users"; script_name(english:name["english"]); desc["english"] = " The remote host is running EZsite Forum. It is reported that this software stores usernames and passwords in plaintext form in the 'Database/EZsiteForum.mdb' file. A remote user can reportedly download this database. Solution : No solution was available at the time. Configure your web server to disallow the download of .mdb files. Risk factor : High"; script_description(english:desc["english"]); summary["english"] = "Checks for EZsiteForum.mdb password database"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2003 deepquest"); family["english"] = "CGI abuses"; script_family(english:family["english"]); script_dependencie("find_service.nes", "http_version.nasl", "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); dirs = make_list(cgi_dirs(), ""); foreach d (dirs) { req = http_get(item:string(d, "/forum/Database/EZsiteForum.mdb"), port:port); res = http_keepalive_send_recv(port:port, data:req); if ( res == NULL ) exit(0); if("Standard Jet DB" >< res) { security_hole(port); exit(0); } }