# # This script was written by Renaud Deraison # # Script audit and contributions from Carmichael Security # Erik Anderson # Added link to the Bugtraq message archive # # See the Nessus Scripts License for details # if(description) { script_id(10057); script_version ("$Revision$"); name["english"] = "Lotus Domino ?open Vulnerability"; name["francais"] = "Vulnérabilité ?open dans Lotus Domino"; script_name(english:name["english"], francais:name["francais"]); desc["english"] = "It is possible to browse the remote web server directories by appending ?open at the end of the URL. Like : http://www.example.com/?open Data that can be accessed by unauthorized users may include: usernames, server names and IP addresses, dial-up server phone numbers, administration logs, files names, and data files (including credit card information, proprietary corporate data, and other information stored in eCommerce related databases.) In some instances, it may be possible for an unauthorized user to modify these files or perform server administration functions via the web administration interface. Reference : http://online.securityfocus.com/archive/1/10820 Solution : Disable the database browsing. To do this : 1. From the Domino Administrator, click the Configuration tab, and open the Server document, 2. Click the Internet Protocols - HTTP tab, 3. In the 'Allow HTTP clients to browse databases' field, choose No, 4. Save the document. Risk factor : Serious"; desc["francais"] = "Il est possible de lister les répertoires du site distant en ajoutant ?open à la fin de l'url demandée, comme par exemple : http://www.example.com/?open Les données pouvant ainsi etre lues par des utilisateurs non-autorisés peuvent contenir : des noms d'utilisateurs, des noms de serveurs et des adresses IP, des numéros de téléphone des serveurs dial-up, des logs administratifs, des noms de fichiers et des fichiers (comportant éventuellement des numéros de cartes de crédit, des données d'entreprise confidentielles, etc...). Dans certains cas, le pirate pourra même modifier ces fichiers ou accomplir des taches d'administration au travers de l'interface d'administration web. Voir aussi : http://www.l0pht.com/advisories/domino3.txt Solution : Désactivez le listage de base de données. Pour ce faire : 1. A partir de l'administrateur Domino, cliquez sur le tableau de configuration, et ouvrez le document du server, 2. Cliquez sur les protocoles Internet - tableau HTTP, 3. Dans la partie 'Accepte le listage des données par les clients HTTP', choisissez non, 4. Sauvegardez le document. Facteur de risque : Sérieux."; script_description(english:desc["english"], francais:desc["francais"]); summary["english"] = "Checks for the domino ?open feature"; summary["francais"] = "Vérifie la fonctionalité ?open de domino"; script_summary(english:summary["english"], francais:summary["francais"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison", francais:"Ce script est Copyright (C) 1999 Renaud Deraison"); family["english"] = "Remote file access"; family["francais"] = "Accès aux fichiers distants"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("find_service.nes", "no404.nasl", "http_version.nasl"); script_require_ports("Services/www", 80); script_require_keys("www/domino"); exit(0); } # # The script code starts here # include("http_func.inc"); port = get_kb_item("Services/www"); if(!port)port = 80; if(!get_port_state(port))exit(0); banner = get_http_banner(port:port); if(egrep(pattern:"Server:.*otus.*", string:banner)) { cgi = "/?open"; ok = is_cgi_installed(item:cgi, port:port); if(ok)security_hole(port); }