pwndbg_telescope
Recursively dereference pointers from a starting address to reveal the chain of memory values, showing strings, symbols, and addresses.
Instructions
Recursively dereference pointers starting at an address (default: $sp).
pwndbg command: telescope Source: pwndbg/commands/telescope.py Category: Memory
Telescope is one of pwndbg's most useful commands. It reads pointer-sized values from memory and follows the chain of dereferences, showing the ultimate value (string, address, symbol, etc.).
Args: session_id: The UUID of the session. address: Starting address or register (default: $sp). count: Number of pointer-sized entries to show. reverse: If True, show entries in reverse order.
See: https://pwndbg.re/2025.05.30/reference/pwndbg/commands/telescope/
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ||
| address | No | ||
| count | No | ||
| reverse | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |