tcache.md tcache作为libc2.26新加的机制,优先级高于fastbin,在提升速度的同时及完美的诠释了要速度就牺牲安全性这一定则。可以在这里找到当时新更新的代码。 代码分析tcache(thread local caching),作为一个优先级高于fastbin新的缓存cache,相比fastbin是提升了不少的性能,但与此同时,带来的副作用就是比fastbin更好利用。我们可以看看更新的内容 2019-07-11
glic内存管理学习笔记 华庭师傅的glibc内存管理简直逆天,这里写一下笔记,更新中 内存经典布局这里随便画一下QAQ 32位 Kernel <- 0xc00000000==TASK_SIZE <- Random stack offset ——- stack ——- <-Random mmap offset ——- Memory Mapping region 2019-05-06
pwn_learning&&FUZZ pwn_learning&&FUZZ This project is used to collect learning materials!And I will synchronous update it on my github! tools be used in the pwn IDA pro反编译神器 推荐书籍:《IDA PRO 权威指南》 gdb : Linux/Un 2019-03-09
格式化字符串漏洞学习汇总笔记 久仰”系统实战篇”,最近终于拜读了这本神作,在格式化串漏洞部分令我受益良多 前言格式化字符串的格式如下: %[parameter][flags][field width][.precision][length]type 知道漏洞怎么利用的第一步当然是知道漏洞是怎么发生的: 使用格式化字符串的函数有: 123456int printf(const char *format, ...); 2019-03-02