# # This script was written by Stefaan Van Dooren # # See the Nessus Scripts License for details # if(description) { script_id(10500); script_version ("$Revision$"); name["english"] = "Shiva Integrator Default Password"; script_name(english:name["english"]); desc["english"] = "The remote Shiva router uses the default password. This means that anyone who has (downloaded) a user manual can telnet to it 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 different password immediately. Risk factor : High"; script_description(english:desc["english"]); summary["english"] = "Logs into the remote Shiva router"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2000 Stefaan Van Dooren"); family["english"] = "Misc."; script_family(english:family["english"]); 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) { data = string("hello\n\r"); send(data:data, socket:soc); buf = recv(socket:soc, length:4096); if ("ntering privileged mode" >< buf) security_hole(port); close(soc); } }