frida_enumerate_symbols
Enumerate all symbols from a module, including local and debug symbols, to access non-exported functions. Filter by name and limit results.
Instructions
List all symbols (not just exports) from a module.
Unlike frida_enumerate_exports, this includes local and debug
symbols when available.
target: process name or pid (string).
module_name: module to query (default: main executable).
filter: optional case-insensitive name substring filter.
limit: max symbols to return (default 1000).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| module_name | No | ||
| filter | No | ||
| limit | No |