list_globals
Retrieve and paginate all global variables from a database in IDA Pro for efficient reverse engineering analysis.
Instructions
List all globals in the database (paginated)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Number of globals to list (100 is a good default, 0 means remainder) | |
offset | Yes | Offset to start listing from (start at 0) |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of globals to list (100 is a good default, 0 means remainder)",
"title": "Count",
"type": "integer"
},
"offset": {
"description": "Offset to start listing from (start at 0)",
"title": "Offset",
"type": "integer"
}
},
"required": [
"offset",
"count"
],
"title": "list_globalsArguments",
"type": "object"
}