pwndbg_vmmap
Display the virtual memory map of a process, showing region addresses, permissions, and file mappings. Filter by address, module name, or permission flags.
Instructions
Print the virtual memory map of the process.
pwndbg command: vmmap (aliases: lm, address, vprot, libs) Source: pwndbg/commands/vmmap.py Category: Memory
Shows all memory regions with their start/end addresses, permissions, and mapped file names. Can be filtered by address, module name, or permission flags.
Args: session_id: The UUID of the session. filter_str: Optional filter — an address or module name substring. writable: If True, only show writable regions. executable: If True, only show executable regions.
See: https://pwndbg.re/2025.05.30/reference/pwndbg/commands/vmmap/
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ||
| filter_str | No | ||
| writable | No | ||
| executable | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |