Nepctf PWN Writeup

这次比赛作为新生赛,存在着一部分低难度的题目,同样也存在着利用技巧性较高的题目,更是有着最新glibc2.32堆题的内容,值得各位师傅尝试着

glibc2.32上tcache和fastbin的改动

新增的保护 在tcache中 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 static __always_inline void tcache_put (mchunkptr chunk, size_t tc_idx) { tcache_entry *e = (tcache_entry *) chunk2mem (chunk); /* Mark this chunk as "in the tcache" so the test in _int_free will detect a double free. */

VNCTF2021 PWN LittleRedFlower

题目信息cnitlrt师傅出的题目,出的太好啦orz。 信息整理 libc2.30 给出了libc_base 任意写一字节 堆空间附近任意写八字节 申请一个大小在0x
0%