pwndbg_plist
Walk a linked list from a given address, following the 'next' pointer to display each element. Optionally limit the number of elements shown.
Instructions
Dump elements of a linked list structure.
pwndbg command: plist Source: pwndbg/commands/plist.py Category: Misc
Walks a linked list starting at path, following the next field,
and displaying each element.
Args: session_id: The UUID of the session. path: Starting address or expression for the list head. next_field: Name of the 'next' pointer field. count: Optional maximum number of elements to show.
See: https://pwndbg.re/2025.05.30/reference/pwndbg/commands/plist/
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ||
| path | Yes | ||
| next_field | Yes | ||
| count | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |