From 31cc3515e3dd07a5c352cad6211f95e972c93378 Mon Sep 17 00:00:00 2001 From: Zach Riggle Date: Sun, 2 Aug 2015 04:53:17 -0400 Subject: [PATCH] Fix MMAP_MIN_ADDR which is wrong for some ARM binaries --- pwndbg/memory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwndbg/memory.py b/pwndbg/memory.py index c1745666b..b54fe0b34 100644 --- a/pwndbg/memory.py +++ b/pwndbg/memory.py @@ -8,7 +8,7 @@ import pwndbg.compat import pwndbg.typeinfo PAGE_SIZE = 0x1000 -MMAP_MIN_ADDR = 0x10000 +MMAP_MIN_ADDR = 0x8000 def read(addr, count, partial=False): try: