data_read_byte
Extract a 1-byte value from a specified memory address in IDA Pro, ideal when get_global_variable_at
fails during reverse engineering tasks.
Instructions
Read the 1 byte value 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 1 byte value from |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to get 1 byte value from",
"title": "Address",
"type": "string"
}
},
"required": [
"address"
],
"title": "data_read_byteArguments",
"type": "object"
}