funcTracker icon indicating copy to clipboard operation
funcTracker copied to clipboard

Useful Plugin for IDA to Trace Function Call Tree

Results 1 funcTracker issues
Sort by recently updated
recently updated
newest added

解决办法: 第11行: #pattCall = re.compile('call[\x20\t]+(.+)') 改为 pattCall = re.compile('call[\x20\t]+(.[^;]+)') #fix problem like "call FnToLib_memcpy ; sub_49A232()" 另外,在31行:currGuessNm += guessFuncName(subFuncAddr, deepCount + 1)之前,建议加上地址是否有效的判断. if subFuncAddr==BADADDR: print "will terminal,because invalid FuncAddr: %x...