# # This script was written by Renaud Deraison # # See the Nessus Scripts License for details # if(description) { script_id(10277); script_version ("$Revision$"); script_cve_id("CVE-1999-0066"); script_bugtraq_id(719); name["english"] = "AnyForm"; name["francais"] = "AnyForm"; script_name(english:name["english"], francais:name["francais"]); desc["english"] = "The CGI 'AnyForm2' is installed. Old versions of this CGI have a well known security flaw that lets anyone execute arbitrary commands with the privileges of the http daemon (root or nobody). Solution : remove it. Risk factor : Serious"; script_description(english:desc["english"]); summary["english"] = "Checks for the presence of AnyForm2"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison", francais:"Ce script est Copyright (C) 2002 Renaud Deraison"); family["english"] = "CGI abuses"; family["francais"] = "Abus de CGI"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("find_service.nes", "no404.nasl"); script_require_ports("Services/www", 80); exit(0); } # # The script code starts here # port = is_cgi_installed("AnyForm2"); if(port)security_hole(port);