# # This script was written by Renaud Deraison # # # See the Nessus Scripts License for details # account = "StoogR"; if(description) { script_id(11259); script_version ("$Revision$"); script_cve_id("CVE-1999-0502"); script_name(english:string("Unpassworded ", account, " account")); script_description(english:string(" The account '", account, "' has no password set. An attacker may use it to gain further privileges on this system Risk factor : High Solution : Set a password for this account or disable it")); script_summary(english:"Logs into the remote host", francais:"Translate"); script_category(ACT_GATHER_INFO); script_family(english:"Default Unix Accounts"); script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison"); script_dependencie("find_service.nes"); script_require_ports("Services/telnet", 23); exit(0); } # # The script code starts here : # include("default_account.inc"); port = check_account(login:account); if(port)security_hole(port);