| Reporter | Title | Published | Views | Family All 7 |
|---|---|---|---|---|
| Shoutcast Multiple GET Request Remote DoS | 18 Aug 200400:00 | – | nessus | |
| SHOUTcast Server User-Agent / Host Header DoS | 13 Aug 200100:00 | – | nessus | |
| CVE-2001-1304 | 3 May 200204:00 | – | cve | |
| CVE-2001-1304 | 3 May 200204:00 | – | cvelist | |
| EUVD-2001-1285 | 7 Oct 202500:30 | – | euvd | |
| CVE-2001-1304 | 3 Aug 200104:00 | – | nvd | |
| SHOUTcast Server <= 1.8.2 DoS Vulnerability | 3 Nov 200500:00 | – | openvas |
# OpenVAS Vulnerability Test
# $Id: shoutcast_version.nasl 5676 2017-03-22 16:29:37Z cfi $
# Description: SHOUTcast Server DoS detector vulnerability
#
# Authors:
# Noam Rathaus <[email protected]>
#
# Copyright:
# Copyright (C) 2000 Noam Rathaus <[email protected]>
# Copyright (C) 2001 SecuriTeam
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2,
# as published by the Free Software Foundation
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
tag_solution = "Upgrade to the latest version of SHOUTcast Server.
Additional information:
http://www.securiteam.com/exploits/5YP031555Q.html";
tag_summary = "This detects SHOUTcast Server's version. If the version equals
1.8.2 it is vulnerable to a denial of service attack.";
if(description)
{
script_id(10717);
script_version("$Revision: 5676 $");
script_tag(name:"last_modification", value:"$Date: 2017-03-22 17:29:37 +0100 (Wed, 22 Mar 2017) $");
script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
script_cve_id("CVE-2001-1304");
script_tag(name:"cvss_base", value:"5.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:P");
script_name("SHOUTcast Server DoS detector vulnerability");
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"remote_active");
script_copyright("This script is Copyright (C) 2001 SecuriTeam");
script_family("General");
script_dependencies("find_service.nasl", "http_version.nasl");
script_require_ports("Services/www", 8000);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name : "summary" , value : tag_summary);
script_tag(name : "solution" , value : tag_solution);
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
port = get_http_port( default:8000 );
req = 'GET /content/nonexistant' + rand() + rand() + rand() + '.mp3 HTTP/1.0\r\n\r\n' +
'Host: ' + get_host_name() + '\r\n\r\n';
banner = http_keepalive_send_recv(port:port, data:req);
if(!banner)exit(0);
if ("SHOUTcast Distributed Network Audio Server" >< banner)
{
resultrecv = banner;
resultrecv = strstr(resultrecv, "SHOUTcast Distributed Network Audio Server/");
resultsub = strstr(resultrecv, string("<BR>"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "SHOUTcast Distributed Network Audio Server/";
resultrecv = resultrecv - "<BR>";
report = string("The remote SHOUTcast server version is :\n");
report = report + resultrecv;
if ("1.8.2" >< resultrecv)
{
report = report + string("\n\nThis version of SHOUTcast is supposedly vulnerable to a denial of service attack. Upgrade your SHOUTcast server.\n");
security_message(port:port, data:report);
}
else
{
log_message(port:port, data:report);
}
}
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation