首页
社区
课程
招聘
ida9.0 LazyIDA 插件报错修复
发表于: 2024-8-12 16:25 3499

ida9.0 LazyIDA 插件报错修复

2024-8-12 16:25
3499

由于 ida9.0 将 get_inf_structure 删除
LazyIDA 版本插件 不能正常使用
图片描述

修改文件:LazyIDA.py
修改地方
头部添加 import ida_ida
搜索
info = idaapi.get_inf_structure()

1
2
3
4
5
6
7
info = idaapi.get_inf_structure()
if info.is_64bit():
    BITS = 64
elif info.is_32bit():
    BITS = 32
else:
    BITS = 16

改为

1
2
3
4
5
6
7
# info = idaapi.get_inf_structure()
if ida_ida.inf_is_64bit():
    BITS = 64
elif ida_ida.inf_is_32bit_exactly():
    BITS = 32
else:
    BITS = 16

或者Pandaos 改版的 已经修复好的
https://github.com/huajien/LazyIDA/blob/master/LazyIDA.py


[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费
支持
分享
最新回复 (1)
雪    币: 234
能力值: ( LV1,RANK:0 )
在线值:
发帖
回帖
粉丝
2
更新下RC1吧,又报错了。
2024-10-8 14:48
0
游客
登录 | 注册 方可回帖
返回

账号登录
验证码登录

忘记密码?
没有账号?立即免费注册
//