📄 icecast_libshout_bof.nasl
字号:
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr># based on work from# (C) Tenable Network Security## Ref: Matt Messier <mmessier@prilnari.com> and John Viega <viega@list.org>## This script is released under the GNU GPL v2#if(description){ script_id(15398); script_bugtraq_id(4735); script_cve_id("CVE-2001-1229"); script_version ("$Revision: 118 $"); name["english"] = "ICECast libshout remote buffer overflow"; script_name(english:name["english"]); desc["english"] = "The remote server runs a version of ICECast, an open source streaming audio server, which is older than version 1.3.9.Icecast and the libshout library are affected by a remote buffer overflow because they donot properly check bounds of data send from clients. As a result of this vulnerability, it is possible for a remote attacker tocause a stack overflow and then execute arbitrary code with the privilege of the server.*** OpenVAS reports this vulnerability using only*** information that was gathered.Solution : Upgrade to a newer version.Risk factor : High"; script_description(english:desc["english"]); summary["english"] = "Check icecast version"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak", francais:"Ce script est Copyright (C) 2004 David Maciejak"); family["english"] = "Misc."; script_family(english:family["english"]); script_dependencie("http_version.nasl"); script_require_ports("Services/www", 8000); exit(0);}## The script code starts here#include("http_func.inc");port = get_http_port(default:8000);if(!port) exit(0);banner = tolower(get_http_banner(port:port));if ( ! banner ) exit(0);if("icecast/" >< banner && egrep(pattern:"icecast/1\.(0\.[0-4][^0-9]|1\.|3\.[0-8][^0-9])", string:banner)) security_hole(port);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -