首页 > 其他分享 >winXP immunity debugger 运行mona插件报错,解决方法

winXP immunity debugger 运行mona插件报错,解决方法

时间:2022-10-19 20:48:08浏览次数:52  
标签:插件 debugger mona list opcodes 报错 hf

报错内容

报错内容提示如下:
AttributeError: 'list' object has no attribute 'update'
找到问题所在为:
File "C:\Documents and Settings\lrt\桌面\ImmunityDebugger-master\1.85\PyCommands\mona.py", line 6009, in mergeOpcodes
all_opcodes[hf].update(found_opcodes[hf])

image

解决办法

由报错提示得all_opcodes[hf]为list类型(all_opcodes应为dict类型,以下所有调用中all_opcodes都为dict类型,但是all_opcodes[hf]不是),list类型更新列表方法为append,找到修改即可
image

标签:插件,debugger,mona,list,opcodes,报错,hf
From: https://www.cnblogs.com/B0t1/p/16807664.html

相关文章