From 26d90e8f979658e8e8ee10580e2d3608394c8333 Mon Sep 17 00:00:00 2001 From: disconnect3d Date: Sat, 6 Aug 2022 22:20:44 +0200 Subject: [PATCH] tips: inform about the `procinfo` command --- pwndbg/tips.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pwndbg/tips.py b/pwndbg/tips.py index 389e0ee96..5e8a11904 100644 --- a/pwndbg/tips.py +++ b/pwndbg/tips.py @@ -8,6 +8,7 @@ TIPS = [ "Pwndbg mirrors some of Windbg commands like eq, ew, ed, eb, es, dq, dw, dd, db, ds for writing and reading memory", "Pwndbg resolves kernel memory maps by parsing page tables (default) or via `monitor info mem` QEMU gdbstub command (use `set kernel-vmmap-via-page-tables off` for that)", "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)", ]