-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcvutils-getoffset.py
More file actions
307 lines (240 loc) · 9.44 KB
/
Copy pathcvutils-getoffset.py
File metadata and controls
307 lines (240 loc) · 9.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#------------------------------------------------------------------------------
# IDA Plugin to get an offset (rva) at the cursor position.
# Copy the 'cvutils-getoffset.py' into the plugins directory of IDA
#------------------------------------------------------------------------------
VERSION = '1.1.1'
__AUTHOR__ = 'cra0'
PLUGIN_NAME = "Get Address Offset"
PLUGIN_HOTKEY = "Ctrl+Shift+C"
import os
import sys
import idc
import idaapi
import idautils
major, minor = map(int, idaapi.get_kernel_version().split("."))
using_ida7api = (major > 6)
using_pyqt5 = using_ida7api or (major == 6 and minor >= 9)
idaver_74newer = (major == 7 and minor >= 4)
idaver_8newer = (major >= 8)
if idaver_74newer or idaver_8newer:
newer_version_compatible = True
else:
newer_version_compatible = False
IDA_9 = (major >= 9)
if newer_version_compatible:
# IDA 7.4+
# https://hex-rays.com/products/ida/support/ida74_idapython_no_bc695_porting_guide.shtml
import ida_ida
import ida_kernwin
if IDA_9:
BITS = 32 if not ida_ida.inf_is_64bit() else 64
BWN_DISASM = ida_kernwin.BWN_DISASM
BWN_PSEUDOCODE = ida_kernwin.BWN_PSEUDOCODE
SETMENU_APP = ida_kernwin.SETMENU_APP
else:
BITS = 32 if not idaapi.get_inf_structure().is_64bit() else 64
BWN_DISASM = idaapi.BWN_DISASMS
BWN_PSEUDOCODE = idaapi.BWN_PSEUDOCODE
SETMENU_APP = idaapi.SETMENU_APP
if using_pyqt5:
import PyQt5.QtGui as QtGui
import PyQt5.QtCore as QtCore
import PyQt5.QtWidgets as QtWidgets
from PyQt5.Qt import QApplication
else:
import PySide.QtGui as QtGui
import PySide.QtCore as QtCore
QtWidgets = QtGui
QtCore.pyqtSignal = QtCore.Signal
QtCore.pyqtSlot = QtCore.Slot
from PySide.QtGui import QApplication
def setClipboardText(data):
cb = QApplication.clipboard()
cb.clear(mode=cb.Clipboard)
cb.setText(data, mode=cb.Clipboard)
def PLUGIN_ENTRY():
"""
Required plugin entry point for IDAPython Plugins.
"""
return cvutils_getoffset()
class cvutils_getoffset(idaapi.plugin_t):
flags = idaapi.PLUGIN_PROC | idaapi.PLUGIN_HIDE
comment = "Get the Address offset at the cursor location."
help = "At a certain location right-click 'Get Offset'"
wanted_name = PLUGIN_NAME
wanted_hotkey = PLUGIN_HOTKEY
#--------------------------------------------------------------------------
# Plugin Overloads
#--------------------------------------------------------------------------
def init(self):
"""
This is called by IDA when it is loading the plugin.
"""
# initialize the menu actions our plugin will inject
self._init_action_get_offset()
# initialize plugin hooks
self._init_hooks()
# done
idaapi.msg("%s %s initialized...\n" % (self.wanted_name, VERSION))
return idaapi.PLUGIN_KEEP
def run(self, arg):
"""
This is called by IDA when this file is loaded as a script.
"""
idaapi.msg("%s cannot be run as a script.\n" % self.wanted_name)
def term(self):
"""
This is called by IDA when it is unloading the plugin.
"""
# unhook our plugin hooks
self._hooks.unhook()
# unregister our actions & free their resources
self._del_action_get_offset()
# done
idaapi.msg("%s terminated...\n" % self.wanted_name)
#--------------------------------------------------------------------------
# Plugin Hooks
#--------------------------------------------------------------------------
def _init_hooks(self):
"""
Install plugin hooks into IDA.
"""
self._hooks = Hooks()
self._hooks.ready_to_run = self._init_hexrays_hooks
self._hooks.hook()
def _init_hexrays_hooks(self):
"""
Install Hex-Rays hooks (when available).
NOTE: This is called when the ui_ready_to_run event fires.
"""
if idaapi.init_hexrays_plugin():
idaapi.install_hexrays_callback(self._hooks.hxe_callback)
#--------------------------------------------------------------------------
# IDA Actions
#--------------------------------------------------------------------------
ACTION_GET_OFFSET = "prefix:get_offset"
def _init_action_get_offset(self):
"""
Register the get offset action with IDA.
"""
# If the action is already registered, unregister it first.
if idaapi.unregister_action(self.ACTION_GET_OFFSET):
idaapi.msg("Warning: action was already registered, unregistering it first\n")
vaction_desc = "Get the offset from the image base of the current cursor address."
action_desc = idaapi.action_desc_t(
self.ACTION_GET_OFFSET, # The action name.
"Get Offset", # The action text.
IDACtxEntry(getcopy_offset), # The action handler.
PLUGIN_HOTKEY, # Optional: action shortcut
vaction_desc, # Optional: tooltip
31 # Copy icon
)
# register the action with IDA
assert idaapi.register_action(action_desc), "Action registration failed"
def _del_action_get_offset(self):
"""
Delete the bulk prefix action from IDA.
"""
idaapi.unregister_action(self.ACTION_GET_OFFSET)
#------------------------------------------------------------------------------
# Plugin Hooks
#------------------------------------------------------------------------------
class Hooks(idaapi.UI_Hooks):
def __init__(self):
# Call the __init__ method of the superclass
super(Hooks, self).__init__()
# Get the IDA version
major, minor = map(int, idaapi.get_kernel_version().split("."))
self.newer_version_compatible = (major == 7 and minor >= 4) or (major >= 8)
# If the IDA version is less than 7.4, define finish_populating_tform_popup
if not self.newer_version_compatible:
self.finish_populating_tform_popup = self._finish_populating_tform_popup
def finish_populating_widget_popup(self, widget, popup_handle, ctx=None):
"""
A right click menu is about to be shown. (IDA 7.x)
"""
widget_type = idaapi.get_widget_type(widget)
if widget_type is not None:
inject_address_offset_copy_actions(widget, popup_handle, widget_type)
return 0
def _finish_populating_tform_popup(self, form, popup):
"""
A right click menu is about to be shown. (IDA 6.x)
"""
inject_address_offset_copy_actions(form, popup, idaapi.get_tform_type(form))
return 0
def hxe_callback(self, event, *args):
"""
Hex-Rays event callback.
"""
if event == idaapi.hxe_populating_popup:
form, popup, vu = args
idaapi.attach_action_to_popup(
form,
popup,
cvutils_getoffset.ACTION_GET_OFFSET,
"Get Address Offset",
SETMENU_APP,
)
# done
return 0
#------------------------------------------------------------------------------
# Prefix Wrappers
#------------------------------------------------------------------------------
def inject_address_offset_copy_actions(widget, popup_handle, widget_type):
try:
if widget_type in [BWN_DISASM, BWN_PSEUDOCODE]:
idaapi.attach_action_to_popup(
widget,
popup_handle,
cvutils_getoffset.ACTION_GET_OFFSET,
"Get Address Offset",
SETMENU_APP
)
except AttributeError:
# Handle older versions where the widget type constants might differ
pass
return 0
#------------------------------------------------------------------------------
# Get Screen linear address
#------------------------------------------------------------------------------
def get_screen_linear_address():
if newer_version_compatible:
return idc.get_screen_ea()
else:
return idc.ScreenEA()
#------------------------------------------------------------------------------
# Get Offset
#------------------------------------------------------------------------------
def getcopy_offset():
"""
Gets the offset of the current cursor's address
"""
vImagebase = idaapi.get_imagebase()
vCurrentPos = get_screen_linear_address()
if vCurrentPos != idaapi.BADADDR:
vOffset = vCurrentPos - vImagebase
print("Address [0x%x] =-> Offset [%x] Copied to Clipboard!" % (vCurrentPos, vOffset))
setClipboardText("%x" % vOffset)
return
#------------------------------------------------------------------------------
# IDA ctxt
#------------------------------------------------------------------------------
class IDACtxEntry(idaapi.action_handler_t):
def __init__(self, action_function):
idaapi.action_handler_t.__init__(self)
self.action_function = action_function
def activate(self, ctx):
self.action_function()
return 1
def update(self, ctx):
return idaapi.AST_ENABLE_ALWAYS
#------------------------------------------------------------------------------
# Utilities
#------------------------------------------------------------------------------
PLUGIN_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), "plugin"))
def plugin_resource(resource_name):
"""
Return the full path for a given plugin resource file.
"""
return os.path.join(PLUGIN_PATH, "resources", resource_name)