首页
社区
课程
招聘
[原创]利用wing ide动态调试ida7 python插件
发表于: 2018-2-11 16:58 7207

[原创]利用wing ide动态调试ida7 python插件

2018-2-11 16:58
7207

[环境]
win7 64
ida7下载的是IDA_Pro_v7.0_Portable(网上很多)
Wing IDE PRO 6.0(http://www.ddooo.com/softdown/113892.htm 文件安全未知)
python2.7.13
python安装目录D:\Program Files\Python27
ida7安装目录D:\pjtoolz\IDA_Pro_v7.0_Portable
wing安装目录D:\Program Files (x86)\Wing IDE 6.0

[方法]
1,把 D:\Program Files (x86)\Wing IDE 6.0里的wingdbstub.py不用修改直接复制到
D:\pjtoolz\IDA_Pro_v7.0_Portable\python

2,在D:\Program Files\Python27\Lib\site-packages新建mypath.pth文件
D:\pjtoolz\IDA_Pro_v7.0_Portable\python
D:\pjtoolz\IDA_Pro_v7.0_Portable\python\lib\python2.7\lib-dynload\ida_64
因为 D:\pjtoolz\IDA_Pro_v7.0_Portable 有很多sdk需要让wing ide识别,所以要把路径加进来

3,在D:\pjtoolz\IDA_Pro_v7.0_Portable\plugins新建sample_debuggee.py

# filename: sample_debuggee.py

import idaapi
import ida_idaapi
from idc import *
import wingdbstub

def my_debugged_function():
    # Set breakpoint here!
    var1='aaa'
    var2='bbb'
    msg(var1)
    msg(var2)


class SamplePlugin(idaapi.plugin_t):
    flags = idaapi.PLUGIN_PROC
    comment = "Sample Debuggee"
    help = "Sample Debuggee"
    wanted_name = "Sample Debuggee"
    wanted_hotkey = "Shift+D"

    def init(self):
        return idaapi.PLUGIN_KEEP

    def term(self):
        pass

    def run(self, arg):
        wingdbstub.Ensure()
        my_debugged_function()


def PLUGIN_ENTRY():
    return SamplePlugin()

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 1
支持
分享
最新回复 (5)
雪    币: 12352
活跃值: (5118)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
来学习了,多谢楼主分享
2018-2-11 18:20
0
雪    币: 231
活跃值: (2631)
能力值: ( LV5,RANK:60 )
在线值:
发帖
回帖
粉丝
3
谢谢楼主
2018-2-13 17:13
0
雪    币: 368
活跃值: (431)
能力值: ( LV2,RANK:140 )
在线值:
发帖
回帖
粉丝
4
谢谢楼主的帖子,我在执行调试的时候遇到下列问题,不知道别人有没有遇到过。

2018-6-2 02:47
0
雪    币: 234
活跃值: (38)
能力值: ( LV3,RANK:20 )
在线值:
发帖
回帖
粉丝
5
又出bug了 谢谢楼主的帖子,我在执行调试的时候遇到下列问题,不知道别人有没有遇到过。
ida7.0的idapython用python  2.7.13    64位,
还有就是你编写的插件不能直接在wingide运行,要从ida启动
最后于 2018-6-5 09:49 被sonnzy编辑 ,原因:
2018-6-5 09:48
0
雪    币: 368
活跃值: (431)
能力值: ( LV2,RANK:140 )
在线值:
发帖
回帖
粉丝
6
sonnzy 又出bug了 谢谢楼主的帖子,我在执行调试的时候遇到下列问题,不知道别人有没有遇到过。 ida7.0的idapython用python&nbsp ...
谢谢,我去试下
2018-6-5 18:40
0
游客
登录 | 注册 方可回帖
返回
//