unlink

HackTricks'i Destekleyin

Kod

// From https://github.com/bminor/glibc/blob/master/malloc/malloc.c

/* Take a chunk off a bin list.  */
static void
unlink_chunk (mstate av, mchunkptr p)
{
if (chunksize (p) != prev_size (next_chunk (p)))
malloc_printerr ("corrupted size vs. prev_size");

mchunkptr fd = p->fd;
mchunkptr bk = p->bk;

if (__builtin_expect (fd->bk != p || bk->fd != p, 0))
malloc_printerr ("corrupted double-linked list");

fd->bk = bk;
bk->fd = fd;
if (!in_smallbin_range (chunksize_nomask (p)) && p->fd_nextsize != NULL)
{
if (p->fd_nextsize->bk_nextsize != p
|| p->bk_nextsize->fd_nextsize != p)
malloc_printerr ("corrupted double-linked list (not small)");

// Added: If the FD is not in the nextsize list
if (fd->fd_nextsize == NULL)
{

if (p->fd_nextsize == p)
fd->fd_nextsize = fd->bk_nextsize = fd;
else
// Link the nexsize list in when removing the new chunk
{
fd->fd_nextsize = p->fd_nextsize;
fd->bk_nextsize = p->bk_nextsize;
p->fd_nextsize->bk_nextsize = fd;
p->bk_nextsize->fd_nextsize = fd;
}
}
else
{
p->fd_nextsize->bk_nextsize = p->bk_nextsize;
p->bk_nextsize->fd_nextsize = p->fd_nextsize;
}
}
}

Grafiksel Açıklama

Check this great graphical explanation of the unlink process:

Güvenlik Kontrolleri

  • Chunk'ın belirtilen boyutunun, bir sonraki chunk'taki prev_size ile aynı olup olmadığını kontrol edin

  • Ayrıca P->fd->bk == P ve P->bk->fw == P olduğunu kontrol edin

  • Eğer chunk küçük değilse, P->fd_nextsize->bk_nextsize == P ve P->bk_nextsize->fd_nextsize == P olduğunu kontrol edin

Leak'ler

Unlinked bir chunk, tahsis edilen adresleri temizlemez, bu nedenle ona erişim sağlandığında bazı ilginç adresleri leak etmek mümkündür:

Libc Leak'leri:

  • Eğer P, çift bağlı listenin başındaysa, bk libc'deki malloc_state'e işaret edecektir

  • Eğer P, çift bağlı listenin sonunda ise, fd libc'deki malloc_state'e işaret edecektir

  • Çift bağlı liste yalnızca bir serbest chunk içeriyorsa, P çift bağlı listede yer alır ve hem fd hem de bk, malloc_state içindeki adresi leak edebilir.

Heap leak'leri:

  • Eğer P, çift bağlı listenin başındaysa, fd heap'teki mevcut bir chunk'a işaret edecektir

  • Eğer P, çift bağlı listenin sonunda ise, bk heap'teki mevcut bir chunk'a işaret edecektir

  • Eğer P çift bağlı listede ise, hem fd hem de bk, heap'teki mevcut bir chunk'a işaret edecektir

Support HackTricks

Last updated