| Source | Link |
|---|---|
| seclists | www.seclists.org/vulnwatch/2003/q2/66 |
#
# (C) Tenable Network Security, Inc.
#
# From: "Matthew Murphy" <[email protected]>
# To: "BugTraq" <[email protected]>,
# Date: Sun, 11 May 2003 11:21:43 -0500
# Subject: [VulnWatch] eServ Memory Leak Enables Denial of Service Attacks
include("compat.inc");
if(description)
{
script_id(11619);
script_version("1.19");
script_name(english:"Eserv Non-Terminated Connection Saturation DoS");
script_summary(english:"Determines if the remote host is running Eserv");
script_set_attribute(
attribute:"synopsis",
value:"The remote server has a denial of service vulnerability."
);
script_set_attribute(attribute:"description", value:
"The remote host is running Eserv HTTP/SMTP/FTP server.
According to its version number, there is a memory leak in this
software which allows any attacker to consume all the available
memory on this host by making repeated requests to this service."
);
script_set_attribute(
attribute:"see_also",
value:"https://seclists.org/vulnwatch/2003/q2/66"
);
script_set_attribute(
attribute:"solution",
value:"There is no known solution at this time."
);
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:C");
script_set_attribute(attribute:"cvss_score_source", value:"manual");
script_set_attribute(attribute:"cvss_score_rationale", value:"Manually scored based on the nature of the vulnerability.");
script_set_attribute(attribute:"plugin_publication_date", value: "2003/05/12");
script_set_attribute(attribute:"vuln_publication_date", value: "2003/05/11");
script_set_attribute(attribute:"plugin_modification_date", value:"2026/01/05");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Windows");
script_copyright(english:"This script is Copyright (C) 2003-2026 Tenable Network Security, Inc.");
script_dependencie("http_version.nasl", "ftpserver_detect_type_nd_version.nasl", "smtpserver_detect.nasl");
script_require_ports("Services/www", "Services/smtp", "Services/ftp", 21, 25, 80);
exit(0);
}
#
# The script code starts here
#
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");
include("ftp_func.inc");
include("smtp_func.inc");
vuln = false;
port = get_http_port(default:80, dont_exit: 1);
if(port && get_port_state(port))
{
banner = get_http_banner(port:port);
if(banner)
{
if(egrep(pattern:"^Server:.*Eserv/[0-2]", string:banner))
{
security_hole(port);
vuln = true;
}
}
}
ports = get_service_port_list(svc: "smtp", default: 25, exit_on_fail: 0);
foreach port(ports)
{
if(get_port_state(port))
{
banner = get_smtp_banner(port:port);
if(banner)
{
if(egrep(pattern:"^220*Eserv/[0-2]", string:banner))
{
security_hole(port);
vuln = true;
}
}
}
}
ports = get_ftp_ports(default: 21);
foreach port(ports)
{
banner = get_ftp_banner(port:port);
if(!banner)
continue;
if(egrep(pattern:"^220*Eserv/[0-2]", string:banner))
{
security_hole(port);
vuln = true;
}
}
if(!vuln)
exit(0, "No vulnerable Eserv services found.");
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