吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 33969|回复: 79
收起左侧

[IDA Plugin] IDA7.0 Hexlight插件修改增强版

[复制链接]
snowfox 发表于 2018-4-18 09:20
本帖最后由 snowfox 于 2018-4-18 09:33 编辑

IDA网站上 Hexlight 高亮插件在查看比较大的函数时, 能快速定位方便很多
但是有时比较复杂的圆括号嵌套, 不容易一眼看出对应关系, 常常要复制到其它编辑器中查看

因此对原有的Hexlight插件做了修改增强. 支持圆括号'()'和方括号'[]'的高亮显示,

定位时鼠标在要定位的括号后面点击
首先上图:

g1.gif

修改后的代码如下:

[Python] 纯文本查看 复制代码
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
# highlighting plugin for Hex-Rays Decompiler
# Copyright (c) 2016
# Milan Bohacek <milan.bohacek+[url=mailto:hexlight@gmail.com]hexlight@gmail.com[/url]>
# All rights reserved.
#
# ==============================================================================
#
# This file is part of Hexlight.
#
# Hexlight is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# ==============================================================================
 
 
import idautils
import idaapi
import idc
 
 
import traceback
 
hexlight_cb_info = None
hexlight_cb = None
 
posledni = 0
 
def jump(custom_viewer, line):
    (pl, x, y) = idaapi.get_custom_viewer_place(custom_viewer, False)
    pl2 = idaapi.place_t_as_simpleline_place_t(pl.clone())
    oldline = pl2.n
    pl2.n = line
    idaapi.jumpto(custom_viewer, pl2, x, y)
    return oldline
 
class hexrays_callback_info(object):
     
    def __init__(self):
        self.vu = None
        self.highlights = {}
        self.highl_brack = {}
        self.hicolor = 0x646464                #0xF2E8BF #0x00ffff00
        self.theotherline = None
        self.safe = False
        return
     
    def clearall(self, ps, refresh=True):
        ctr = 0
        for i in self.highlights:
            try:           
                ps[i].bgcolor = self.highlights[i]
                ctr += 1
            except:
                pass
#               place_t_as_simpleline_place_t
#              ps[i].line.replace("\x04{\x04", "{")
#              ps[i].line.replace("\x04}\x04", "}")
                 
        self.highlights = {}
        self.theotherline = None
        if((ctr > 0) and refresh):
            idaapi.refresh_idaview_anyway()
 
    def clearbracket(self, ps, refresh=True):
        ctr = 0
        for i in self.highl_brack:
            try:           
                ps[i].line = self.highl_brack[i]
                ctr += 1
                #print('clear' + ps[i].line)
            except:
                pass
             
        self.highl_brack = {}
        if((ctr > 0) and refresh):
            idaapi.refresh_idaview_anyway()    
             
    def highlight_bracket2(self, ps, pos_brach, xpos, ypos):
        ln = ps[ypos].line[:]
        if (self.highl_brack.has_key(ypos) == False):
            self.clearbracket(ps, True)
            self.highl_brack[ypos] = ln
        else:
            ln = self.highl_brack[ypos]
 
        s1pos = idaapi.tag_advance(ln, pos_brach)
        s2pos = idaapi.tag_advance(ln, xpos)
        line = list(ln)
        while (line[s1pos] != idaapi.SCOLOR_ON or line[s1pos+1] != idaapi.SCOLOR_SYMBOL):
            s1pos += 1
            if (s1pos > len(line)):
                return
        while (line[s2pos] != idaapi.SCOLOR_ON or line[s2pos+1] != idaapi.SCOLOR_SYMBOL):
            s2pos += 1
            if (s2pos > len(line)):
                return
 
        line[s1pos+1] = idaapi.SCOLOR_ERROR
        line[s1pos+4] = idaapi.SCOLOR_ERROR
        line[s2pos+1] = idaapi.SCOLOR_ERROR
        line[s2pos+4] = idaapi.SCOLOR_ERROR
        ps[ypos].line = ''.join(line)       
        idaapi.refresh_idaview_anyway() 
     
    def rfind_match_brack(self, start, strline, brack1, brack2):
        i = 0
        while (start >= 0) :
            if (strline[start] == brack1):
                i = i + 1
            elif (strline[start] == brack2):
                i = i - 1
            if (i == 0) :
                #find match
                return start
            start = start - 1
             
        return -1   
         
    def find_match_brack(self, start, strline, brack1, brack2):
        i = 0
        while (start < len(strline)) :
            if (strline[start] == brack1):
                i = i + 1
            elif (strline[start] == brack2):
                i = i - 1
            if (i == 0) :
                #find match
                return start
            start = start + 1
             
        return -1                  
 
    def event_callback(self, event, *args):
        try:
#            print "event: %d"%event
            if event == idaapi.hxe_keyboard:
                vu, keycode, shift = args
 
                if idaapi.lookup_key_code(keycode, shift, True) == idaapi.get_key_code("B") and shift == 0:
                    if self.theotherline:
                        self.theotherline = jump(vu.ct, self.theotherline)
                    return 0
 
 
            if event <= idaapi.hxe_print_func:
                self.safe = False
 
            if event == idaapi.hxe_switch_pseudocode:
                self.safe = False
 
            if event == idaapi.hxe_func_printed:
                self.safe = True
 
            if event == idaapi.hxe_text_ready:
                self.safe = True
 
            if event == idaapi.hxe_curpos:
                if not self.safe:
                    return 0
                #print "1"
                self.vu = args[0]
 
                if not self.vu:
                    return 0
                #print "2"
 
                if self.vu.cfunc.maturity != idaapi.CMAT_FINAL:
                    return 0
                #print "3"
 
                if not self.vu.visible():
                    return 0
                #print "4"
                if not self.vu.refresh_cpos(idaapi.USE_KEYBOARD):
                 #   print "refresh_cpos failed"
                    return 0
                pos = self.vu.cpos
                ypos = pos.lnnum
                xpos = pos.x
                #print "cursor click %d %d %d" % (pos.x, pos.y, pos.lnnum)
 
                if self.highlights.has_key(ypos):
                    return 0
                #print "5"
 
                ps = self.vu.cfunc.get_pseudocode()
                #print "6"
                #print "ypos:%d"%ypos
                #print "ps[ypos].line: %s"%(ps[ypos].line)
 
                #line = [idaapi.COLSTR("[%02d]"%i, chr(i)) for i in
                #range(1,0x40) ]
                #ps[0].line = ''.join(line);
                #ps[1].line = '\x04'.join(line);
                #line = [idaapi.COLSTR( idaapi.COLSTR("[ \x04%02d\x04 ]"%i,
                #chr(i)), chr(i+1)) for i in range(1,0x40) ]
                #ps[2].line = ''.join(line);
                #ps[3].line = '\x04'.join(line);
                ln = ps[ypos].line[:]
                curline = idaapi.tag_remove(ln)
                #print "7"
 
                #print curline
                 
                if (xpos > 1 and xpos <= len(curline)):
                    chPrev = curline[xpos - 1]
                     
                    if (chPrev == ')'):
                        pos_brach = self.rfind_match_brack(xpos - 1, curline, ')', '(')
                        if (pos_brach != -1) :
                            self.highlight_bracket2(ps, pos_brach, xpos-1, ypos)
                    elif (chPrev == '('):
                        pos_brach = self.find_match_brack(xpos - 1, curline, '(', ')')
                        if (pos_brach != -1) :
                            self.highlight_bracket2(ps, pos_brach, xpos-1, ypos)
                    elif (chPrev == ']'):
                        pos_brach = self.rfind_match_brack(xpos - 1, curline, ']', '[')
                        if (pos_brach != -1) :
                            self.highlight_bracket2(ps, pos_brach, xpos-1, ypos)
                    elif (chPrev == '['):
                        pos_brach = self.find_match_brack(xpos - 1, curline, '[', ']')
                        if (pos_brach != -1) :
                            self.highlight_bracket2(ps, pos_brach, xpos-1, ypos)
                    else:
                        self.clearbracket(ps, True)
                else:
                    self.clearbracket(ps, True)
                        
                idxO = curline.find('{')
                idxC = curline.find('}')
                #print "O:", idxO, " C: ",idxC
                #there is no need to highlight first and last {
                #print "8"
 
                if (idxO >= 0) or (idxC >= 0):
                #   print "9"
                    self.clearall(ps, False)
 
                    self.highlights[ypos] = ps[ypos].bgcolor
 
                    ps[ypos].bgcolor = self.hicolor
                     
                    dir = 1
                    bracechar = '}'
                    idx = idxO
 
                    if (idxC >= 0):
                        dir = -1
                        bracechar = '{'
                        idx = idxC
 
                    j = ypos + dir
 
                    max = len(ps)
                 #   print "max: ",max
 
                    while (j >= 0) and (j < max):
                #       print "10"
                        #print "j:", j
                        ln = idaapi.tag_remove(ps[j].line)
                        if ln.find(bracechar) == idx:
                            if not(self.highlights.has_key(j)):
                                self.highlights[j] = ps[j].bgcolor
                            #ps[j].line = ps[j].line.replace(bracechar,
                            #idaapi.COLSTR("\x04"+bracechar+"\x04", "\x27"))
                            #ps[j].line = ps[j].line.replace(bracechar,
                            #idaapi.COLSTR(bracechar, chr(52)))
                            ps[j].bgcolor = self.hicolor
                            self.theotherline = j
                            break
                        j+=dir
                     
                    idaapi.refresh_idaview_anyway()
                else:
                    self.clearall(ps)
                #print "11"
                return 0
        except:
            traceback.print_exc()
         
        return 0
 
def remove():
    if hexlight_cb:
        idaapi.remove_hexrays_callback(hexlight_cb)
 
class HexHLightPlugin_t(idaapi.plugin_t):
    flags = idaapi.PLUGIN_HIDE
    comment = "highlights the matching brace in Pseudocode-View"
    help = "press B to jump to the matching brace"
    wanted_name = "HexLight"
    wanted_hotkey = ""
 
    def init(self):
        # Some initialization
        global hexlight_cb_info, hexlight_cb
 
        if idaapi.init_hexrays_plugin():
            hexlight_cb_info = hexrays_callback_info()
            hexlight_cb = hexlight_cb_info.event_callback
            if not idaapi.install_hexrays_callback(hexlight_cb):
            #    print "could not install hexrays_callback"
                return idaapi.PLUGIN_SKIP
            print "Hexlight plugin installed Mod by Snow"
            addon = idaapi.addon_info_t()
            addon.id = "milan.bohacek.hexlight"
            addon.name = "Hexlight"
            addon.producer = "Milan Bohacek"
            addon.url = "milan.bohacek+[url=mailto:hexlight@gmail.com]hexlight@gmail.com[/url]"
            addon.version = "6.95"
            idaapi.register_addon(addon)
            return idaapi.PLUGIN_KEEP
        #print "init_hexrays_plugin failed"
        return idaapi.PLUGIN_SKIP
 
    def run(self, arg=0):
        return
 
    def term(self):
        remove()
 
def PLUGIN_ENTRY():
    return HexHLightPlugin_t()



脚本下载 hexrays_hlight.rar (2.91 KB, 下载次数: 873)

免费评分

参与人数 17威望 +1 吾爱币 +28 热心值 +16 收起 理由
pk8900 + 2 + 1 这个不错,正好学习一下IDA中python应用
530393321 + 1 我很赞同!
888hou + 1 + 1 我很赞同!
firestarman + 1 + 1 谢谢@Thanks!
lsj666 + 1 + 1 鼓励转贴优秀软件安全工具和文档!
海天一色001 + 1 + 1 谢谢@Thanks!
rigo0 + 1 + 1 鼓励转贴优秀软件安全工具和文档!
Ravey + 1 + 1 谢谢@Thanks!
chenjingyes + 1 + 1 楼主牛逼
落寞丿天殇 + 1 + 1 鼓励转贴优秀软件安全工具和文档!
nbhonghong + 1 + 1 鼓励转贴优秀软件安全工具和文档!
dibh10 + 1 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!
hejialong + 2 + 1 谢谢@Thanks!
MaxMadcc + 1 + 1 谢谢@Thanks!
tail88 + 1 + 1 鼓励转贴优秀软件安全工具和文档!
Hmily + 1 + 10 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!
bypasshwid + 1 + 1 为什么不上传插件呢?请用附件上传,网盘易失效,方便后面的人

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| snowfox 发表于 2019-12-22 12:48
剑舞 发表于 2019-12-22 07:53
发现看比较大的函数时,拖动滚动条高亮就不见了。

拖动滚动条, 光标位置就发生了变化, 高亮于是就重新计算没有了
 楼主| snowfox 发表于 2018-4-18 20:03
lxf 发表于 2018-4-18 13:51
请问为什么会这样

这是大括号的跳转, 按B可以跳到对应的大括号去
Vvvvvoid 发表于 2018-4-18 09:24
yikuaidao 发表于 2018-4-18 09:40
不错的插件,感谢共享
后天2333 发表于 2018-4-18 09:43
感谢发布原创作品,吾爱破解论坛因你更精彩!
gamezx 发表于 2018-4-18 09:48
看着舒服多了。感谢分享
一片小朵朵 发表于 2018-4-18 09:53
感谢楼主分享
Loopher 发表于 2018-4-18 10:22
感谢分享
书中妍如钰 发表于 2018-4-18 10:55
eclips能用吗
lxf 发表于 2018-4-18 13:51
捕获.PNG
请问为什么会这样
SeeAua 发表于 2018-4-18 16:23
感谢分享!
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-4-18 18:44

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表