Share
## https://sploitus.com/exploit?id=8BB10A61-03B8-583F-8DA9-6AC3A21F2116
# ๐Ÿ’ฅ CVE-2023-50965 โ€” Stack Buffer Overflow Exploit (Linux)

Proof of Concept exploit for **CVE-2023-50965**, demonstrating a stack-based buffer overflow leading to **Remote Code Execution (RCE)** on vulnerable systems **without exploit mitigations enabled**.

This project was developed for **security research and exploit development practice**, focusing on understanding memory corruption vulnerabilities and classic exploitation techniques in Linux environments.

---

## Vulnerability Overview

CVE-2023-50965 is a **stack buffer overflow vulnerability** that allows an attacker to overwrite the saved return pointer on the stack by sending a crafted request containing an oversized input buffer.

When properly exploited, this vulnerability allows arbitrary code execution by redirecting program control flow to attacker-controlled shellcode.

The exploit works by:

1. Sending an oversized payload to the vulnerable service
2. Overwriting the saved return address (RIP/EIP)
3. Redirecting execution into a NOP sled
4. Executing attacker-supplied shellcode

---