# # (C) Tenable Network Security # # See the Nessus Scripts License for details # if(description) { script_id(11659); script_version("$Revision$"); script_bugtraq_id(7608, 7610, 5906, 5395, 5144); name["english"] = "ArGoSoft Mail Server multiple flaws"; script_name(english:name["english"]); desc["english"] = " The remote host is running the ArGoSoft WebMail interface. There are multiple flaws in this interface which may allow an attacker to bypass authentication, inject HTML in the e-mails read by the users and even to read arbitrary files on that server. *** Nessus solely relied on the banner of this service to issue *** this alert. Solution : Upgrade to ArGoSoft 1.8.3.5 or newer Risk Factor : High"; script_description(english:desc["english"]); summary["english"] = "Gets the version of the remote ArGoSoft server"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security"); family["english"] = "CGI abuses"; family["francais"] = "Abus de CGI"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("find_service.nes", "http_version.nasl"); script_require_ports("Services/www", 80); exit(0); } # Check starts here include("http_func.inc"); include("http_keepalive.inc"); port = get_kb_item("Services/www"); if(!port)port = 80; if(get_port_state(port)) { req = http_get(item:"/", port:port); res = http_keepalive_send_recv(port:port, data:req); if( res == NULL ) exit(0); if((vers = egrep(pattern:".*ArGoSoft Mail Server.*Version", string:res))) { if(ereg(pattern:".*Version.*\((0\.|1\.([0-7]\.|8\.([0-2]\.|3\.[0-4])))\)", string:vers))security_hole(port); } }