Introduction to Binary Exploitation: Understanding ret2libc - Part 2
The challenge can be downloaded from: Download Link (Password: 0000)
Solution Approach
ret2libc involves hijacking program control flow to execute funcsions from the standard C library (libc). Typically, this is achieved by redirecting execution to a function's PLT entry or a specific address within the GOT table. Usual, the goal is to invoke s ...
Posted on Tue, 15 Sep 2026 16:30:59 +0000 by oriental_express
IO_FILE Heap Exploitation: Understanding fwrite Implementation
To learn IO_FILE-based heap exploitation, we must understand its underlying mechanism. This article examines several key IO functions using source code analysis and dynamic debugging.
1. fwrite Function Overview
1.1 Overall Flow
The main implementation of fwrite resides in _IO_new_file_xsputn, containing four distinct phases:
Check remaining s ...
Posted on Wed, 15 Jul 2026 16:12:40 +0000 by domwells27
Essential Techniques for Pwnable Challenge Exploitation
Environment Configuration
For optimal results in binary exploitation exercises, an Ubuntu 22.04 LTS environment is recommended due to its stability and tool support. While Kali Linux is often preferred for web security testing, Ubuntu serves as the foundation for most Pwn-related tasks.
Return-to-Text (Ret2Text)
This technique leverages buffer ...
Posted on Fri, 05 Jun 2026 17:05:45 +0000 by prashanth