pwndbg / pwndbg

Exploit Development and Reverse Engineering with GDB Made Easy
https://pwndbg.re/
MIT License
7.22k stars 867 forks source link

Support heap implementations other than ptmalloc2 #41

Open gsingh93 opened 8 years ago

gsingh93 commented 8 years ago

https://github.com/pwndbg/pwndbg/pull/36 adds support for basic heap commands, but only for ptmalloc2 (which is what glibc uses).

zachriggle commented 8 years ago

Is it ptmalloc-specific, or is it also compatible with dlmalloc? The only real difference is the number of arenas.

gsingh93 commented 8 years ago

I haven't tested with dlmalloc, so I can't say anything about that. We should at least test it before claiming we support it.