ida_patch_bytes
Patch bytes at a chosen address in the IDA database, leaving the original file unchanged. Use to NOP out bossix checks identified in analysis.
Instructions
Write bytes to the IDA database at an address using idc.patch_byte(). Does NOT modify the original file — only the IDA database. Useful for NOP-ing bossix checks found by ida_scan_bossix.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Address to patch | |
| hex_bytes | Yes | Bytes to write: space-separated '90 90 90' or solid '909090' |