data_read_qword
Retrieve an 8-byte QWORD value from a specified memory address when other methods fail, aiding in reverse engineering tasks with IDA Pro automation.
Instructions
Read the 8 byte value at the specified address as a QWORD.
Only use this function if `get_global_variable_at` failed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to get 8 bytes value from |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to get 8 bytes value from",
"title": "Address",
"type": "string"
}
},
"required": [
"address"
],
"title": "data_read_qwordArguments",
"type": "object"
}