data_read_string
Extract strings from specified memory addresses in IDA Pro when 'get_global_variable_at' fails, aiding reverse engineering analysis.
Instructions
Read the string at the specified address.
Only use this function if `get_global_variable_at` failed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to get string from |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to get string from",
"title": "Address",
"type": "string"
}
},
"required": [
"address"
],
"title": "data_read_stringArguments",
"type": "object"
}