ivanmedina's blog

Tags · bypass

Home

About

Archives

loading..
pwnheapuafbypass

Fastbin with Use-After-Free

Fastbin with Use-After-Free 1.- Request two 0x50 size chunk chunk_A = malloc(24, b"A"*24) chunk_B = malloc(24, b"B"*24) 2.- Free chunk A free(chunk_A) 3.- Free chunk B free(chunk_B) 4.- Free chunk A free(chunk_A) 5.- malloc(24,b’C’*24) malloc(24,b'C'*24) 6.- There are the CCCCCCC… where before was the 7020 pointer :O, so ..

Read more