⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nortel_baystack_default_pass.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by Douglas Minderhout <dminderhout@layer3com.com># This script is based uppon a script by Rui Bernardino <rbernardino@oni.pt>## See the Nessus Scripts License for details#if(description){        script_id(11327); 	script_version ("$Revision: 38 $");        name["english"] = "Nortel Baystack switch password test";        script_name(english:name["english"]);        desc["english"] = "The remote switch has a weak password. This means that anyone who has (downloaded) a user manual can telnet to it and gain administrative access.Solution: Telnet to this switch and set passwords under'Console/Comm Port Configuration' for both read only and read write. Then, set the parameter 'Console Switch Password'or 'Console Stack Password' to 'Required for TELNET' or'Required for Both'.Risk factor : High";        script_description(english:desc["english"]);        summary["english"] = "Logs into the remote Nortel terminal server";        script_summary(english:summary["english"]);        script_category(ACT_ATTACK);        script_copyright(english:"This script is Copyright (C) 2003 Douglas Minderhout");        family["english"] = "Misc.";        script_family(english:family["english"]);        script_require_ports(23);        exit(0);}include('telnet_func.inc');function myrecv(socket, pattern) {	while(1) {		r = recv_line(socket:soc, length:1024);		if(strlen(r) == 0) return(0);		if(ereg(pattern:pattern, string:r)) return(r);	}}## The script code starts here#port = 23;if(get_port_state(port)) {	buf = get_telnet_banner(port:port);	if ( ! buf || "Ctrl-Y" >!< buf ) exit(0);	soc=open_sock_tcp(port);	if(!soc)exit(0);	buf=telnet_negotiate(socket:soc);	#display(buf);	# If we catch one of these, it's something else	if("NetLogin:" >< buf)exit(0);	if("Login:" >< buf)exit(0);	# If we get Ctrl-Y in the response we're in business	if ("Ctrl-Y" >< buf) {		# Here we send it the Ctrl-y in HEX		test = raw_string(0x19,0xF0);		send(socket:soc, data:test);		resp = recv(socket:soc, length:1024);		#display(resp);		if("P Configuration" >< resp) {			# No password has been set			desc = string ("There is no password assigned to the remote Baystack switch.");			security_hole(port:port, data:desc);		} else {	 			if ("asswor" >< resp ){				# A password has been set, now we try some defaults				test = string("secure\r");         	send(socket:soc, data:test);				resp = recv(socket:soc, length:1024);				if("P Configuration" >< resp) {					desc = string ("The default password 'secure' is assigned to the remote Baystack switch.");					security_hole(port:port, data:desc);				} else {					if ("asswor" >< resp ){						# "secure' didn't work, let's try "user"						test = string("user\r");         			send(socket:soc, data:test);						resp = recv(socket:soc, length:1024);						if("P Configuration" >< resp) {							desc = string ("The default password 'user' is assigned to the remote Baystack switch.");							security_hole(port:port, data:desc);						}					}				}			}		}	# The older switches do not do the Ctrl-Y thing, they just let you in	} else {		if ("P Configuration" >< buf) {				desc = string ("There is no password assigned to the remote Baystack switch. This switch is most likely using a very old version of software. It would be best to contact Nortel for an upgrade.");				security_hole(port:port, data:desc);		}	}	close (soc);} 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -