# # This script was written by Victor Kirhenshtein # Based on cisco_675.nasl by Renaud Deraison # # See the Nessus Scripts License for details # if(description) { script_id(10529); script_version ("$Revision$"); name["english"] = "Nortel Networks passwordless router (user level)"; script_name(english:name["english"]); desc["english"] = " The remote Nortel Networks (former Bay Networks) router has no password for user account. An attacker could telnet to the router and reconfigure it to lock you out of it, and to prevent you to use your internet connection. Solution : telnet to this router and set a password immediately. Risk factor : Medium"; script_description(english:desc["english"]); summary["english"] = "Logs into the remote Nortel Networks (Bay Networks) router"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2000 Victor Kirhenshtein"); script_family(english:"Misc.", francais:"Divers"); script_require_ports(23); exit(0); } # # The script code starts here # port = 23; if(get_port_state(port)) { soc = open_sock_tcp(port); if(soc) { buf = telnet_init(soc); if("Bay Networks" >< buf) { if ("Login:" >< buf) { data = string("User\r\n"); send(socket:soc, data:data); buf2 = recv(socket:soc, length:1024); if("$" >< buf2) security_warning(port); } } close(soc); } }