Write Struct Offset as YAML
Persist a single struct member offset analysis result to a YAML file beside the binary using IDA Pro MCP.
Prerequisites
Before using this skill, you should have:
- Identified the struct name and member name
- Determined the member offset (and optionally size)
- Optionally generated a unique signature using
/generate-signature-for-structoffset
Required Parameters
| Parameter | Description | Example |
|---|---|---|
struct_name |
Name of the struct/class | CBaseEntity |
member_name |
Name of the struct member | m_skeletonInstance |
offset |
Hex offset of the member from struct start | 0x278 |
Optional Parameters
| Parameter | Description | Example |
|---|---|---|
size |
Size of the member in bytes (use None to omit) |
8 |
offset_sig |
Unique byte signature locating an instruction that contains the offset (use None to omit) |
8B 93 E0 04 00 00 |
Method
mcp__ida-pro-mcp__py_eval code="""
import idaapi
import os
import yaml
# === REQUIRED: Replace these values ===
struct_name = "<struct_name>" # e.g., "CBaseEntity"
member_name = "<member_name>" # e.g., "m_skeletonInstance"
offset = <offset> # e.g., 0x278
# ======================================
# === OPTIONAL: Set to None to omit from output ===
size = <size> # e.g., 8 or None
offset_sig = <offset_sig> # e.g., "8B 93 E0 04 00 00" or None
# =================================================
# Get binary path and determine platform
input_file = idaapi.get_input_file_path()
dir_path = os.path.dirname(input_file)
if input_file.endswith('.dll'):
platform = 'windows'
else:
platform = 'linux'
# Build data dictionary conditionally
data = {}
data['struct_name'] = struct_name
data['member_name'] = member_name
data['offset'] = hex(offset)
if size is not None and size > 0:
data['size'] = size
if offset_sig is not None:
data['offset_sig'] = offset_sig
yaml_path = os.path.join(dir_path, f"{struct_name}_{member_name}.{platform}.yaml")
with open(yaml_path, 'w', encoding='utf-8') as f:
yaml.dump(data, f, default_flow_style=False, sort_keys=False, allow_unicode=True)
print(f"Written to: {yaml_path}")
"""
Output File Naming Convention
The output YAML filename follows this pattern:
<struct_name>_<member_name>.<platform>.yaml
Examples:
server.dll→CBaseEntity_m_skeletonInstance.windows.yamlserver.so/libserver.so→CBaseEntity_m_skeletonInstance.linux.yaml
Output YAML Format
Full output (with size and offset_sig provided):
struct_name: CBaseEntity
member_name: m_skeletonInstance
offset: 0x278
size: 8
offset_sig: 8B 93 78 02 00 00
Minimal output (with size=None, offset_sig=None):
struct_name: CBaseEntity
member_name: m_skeletonInstance
offset: 0x278
Each field:
struct_name- Name of the struct/classmember_name- Name of the struct memberoffset- Hex offset from struct startsize(optional) - Size in bytesoffset_sig(optional) - Unique byte signature of an instruction containing the offset (e.g.,8B 93 E0 04 00 00formov edx, [rbx+4E0h])
Platform Detection
The skill automatically detects the platform based on file extension:
.dll→ Windows.so→ Linux
Example Usage
With all parameters
struct_name = "CBaseEntity"
member_name = "m_skeletonInstance"
offset = 0x278
size = 8
offset_sig = "8B 93 78 02 00 00"
Without optional parameters
struct_name = "CBaseEntity"
member_name = "m_skeletonInstance"
offset = 0x278
size = None
offset_sig = None
With only size
struct_name = "CBaseEntity"
member_name = "m_iHealth"
offset = 0x408
size = 4
offset_sig = None
With only signature
struct_name = "CBaseEntity"
member_name = "m_nActualMoveType"
offset = 0x4E0
size = None
offset_sig = "8B 93 E0 04 00 00"
Notes
- All offsets are written in hexadecimal format with lowercase
0xprefix - The YAML file is written to the same directory as the input binary
- When
sizeisNoneor0, thesizefield is omitted from the output entirely - When
offset_sigisNone, theoffset_sigfield is omitted from the output entirely offset_sigshould be a signature that starts at the instruction containing the struct offset, generated by/generate-signature-for-structoffset