This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from idautils import * | |
from idc import * | |
from idaapi import * | |
ea = ScreenEA() | |
for xref in XrefsTo(ea, 0): | |
ref_type = "" | |
if xref.type == dr_W: | |
ref_type = "W" | |
elif xref.type == dr_R: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
******************************************************************************** | |
Name: HighlightMnemsAndLocs.py | |
Author: case b <[email protected]> | |
Version: 1 | |
[Description] | |
This script can be run from IDA's 'Script File' menu item or included in | |
idapythonrc.py. When run it will add or remove a menu item under |