python報(bào)錯(cuò)idc中無(wú)GetFunctionName模塊
問(wèn)題描述
使用課件中的插件時(shí),python報(bào)錯(cuò)module 'idc' has no attribute 'GetFunctionName'
我的ida版本為7.5,內(nèi)置python版本為3.11.4,使用import idc
不會(huì)報(bào)錯(cuò),但輸入idc.GetFunctionName()
則會(huì)報(bào)錯(cuò)
相關(guān)代碼
def main():
for i,func in enumerate(idautils.Functions()):
func_name = idc.GetFunctionName(func)
1 2 | if "main" in func_name:
print ( "{0} is the value function:{1}" . format (i, func_name))
|
請(qǐng)問(wèn)如何解決這個(gè)問(wèn)題,該問(wèn)題是否是ida版本引起對(duì)的。