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

📄 xtux_server.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by Michel Arboi <arboi@alussinan.org>## GPL## Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>#      Erik Anderson <eanders@carmichaelsecurity.com>#      Added BugtraqID and CAN## xtux server will start looping and eat CPU if it receives bad input.# Writing a nice plugin is useless, as xtux is killed by find_service!## See Bugtraq :# From:"b0iler _" <b0iler@hotmail.com># Subject: xtux server DoS.# Date: Sat, 09 Mar 2002 15:53:32 -0700if(description){  script_id(11016);  script_bugtraq_id(4260);  script_version ("$Revision: 38 $");  script_cve_id("CVE-2002-0431");   script_name(english:"xtux server detection");   desc["english"] = "The xtux server might be running on this port. If somebody connects toit and sends it garbage data, it may loop and overload your CPU.Solution: disable it, or at least firewall itRisk factor : Medium";  script_description(english:desc["english"]);   summary["english"] = "Detect xtux server";  script_summary(english:summary["english"]);   script_category(ACT_GATHER_INFO);   script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi");	family["english"] = "Useless services";	script_family(english:family["english"]);	script_require_ports(8390);	script_dependencie("find_service.nes"); 	exit(0);}include("misc_func.inc");port = 8390;kb = known_service(port:port);if(kb && kb != "xtux")exit(0);if(get_port_state(port)){	soc = open_sock_tcp(port);	if(soc)	{		security_warning(port);		close(soc);	}}

⌨️ 快捷键说明

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