icecast_avllib_bof.nasl

来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 70 行

NASL
70
字号
##  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>#  based on work from#  (C) Tenable Network Security##  Ref: <dizznutt@my.security.nl>##  This script is released under the GNU GPL v2#if(description){ script_id(15401); script_bugtraq_id(4415); script_cve_id("CVE-2002-0177"); script_version ("$Revision: 118 $");  name["english"] = "ICECast AVLlib 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.12.This version is affected by a remote buffer overflow because it doesnot 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/1." >< banner &&    egrep(pattern:"icecast/1\.([012]\.|3\.([0-9]|1[01])[^0-9])", string:banner))      security_hole(port);

⌨️ 快捷键说明

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