tips.py: add tip about Pwndbg's signal handling (#1373)

* tips.py: add tip about Pwndbg's signal handling

* fix lint
pull/1376/head
Disconnect3d 3 years ago committed by GitHub
parent 12e8ad8bb1
commit 8c18435e54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,6 +25,7 @@ TIPS = [
"Want to display each context panel in a separate tmux window? See https://github.com/pwndbg/pwndbg/blob/dev/FEATURES.md#splitting--layouting-context", "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", "The $heap_base GDB variable can be used to refer to the starting address of the heap after running the `heap` command",
"Use the `errno` (or `errno <number>`) command to see the name of the last or provided (libc) error", "Use the `errno` (or `errno <number>`) command to see the name of the last or provided (libc) error",
"Pwndbg sets the SIGLARM, SIGBUS, SIGPIPE and SIGSEGV signals so they are not passed to the app; see `info signals` for full GDB signals configuration",
] # type: List[str] ] # type: List[str]

Loading…
Cancel
Save