From 214f993047069b3b7f5b7154f9444e5d3cc6f6bf Mon Sep 17 00:00:00 2001 From: Gulshan Singh Date: Wed, 10 Aug 2022 14:57:20 -0700 Subject: [PATCH] Add tip about $heap_base to tips.py (#1053) --- pwndbg/tips.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pwndbg/tips.py b/pwndbg/tips.py index 03de42dba..86158b0d0 100644 --- a/pwndbg/tips.py +++ b/pwndbg/tips.py @@ -21,6 +21,7 @@ TIPS = [ "Use the `canary` command to see all stack canary/cookie values on the stack (based on the *usual* stack canary value initialized by glibc)", "Use the `procinfo` command for better process introspection (than the GDB's `info proc` command)", "Want to display each context panel in a separate tmux window? See https://github.com/pwndbg/pwndbg/blob/dev/FEATURES.md#splitting--layouting-context", + "The $heap_base GDB variable can be used to refer to the starting address of the heap after running the `heap` command", ]