Skip to content

Instantly share code, notes, and snippets.

View aerosoul94's full-sized avatar

aerosoul94

View GitHub Profile
@aerosoul94
aerosoul94 / arm_mov_ext.py
Last active June 8, 2019 00:52
IDA ARM plugin to correct mov x-refs.
import idaapi
from idc import *
class Reg:
def __init__(self, ea, value):
self.ea = ea
self.value = value
#self.cmd = cmd
class arm_mov_hook_t(idaapi.IDP_Hooks):