You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following is the display of ida pro. The function sub_3000 is in.plt . Although it is not a user-defined code, it is regarded as a function by IDA Pro. I found that while calling FlowChart() on these functions, python-idb includes the basic blocks outside of the function. This action does not match the logic of ida pro.
The following is the display of ida pro. The function
sub_3000
is in.plt
. Although it is not a user-defined code, it is regarded as a function by IDA Pro. I found that while callingFlowChart()
on these functions, python-idb includes the basic blocks outside of the function. This action does not match the logic of ida pro.In IDA pro:
In python-idb:
I think a mitigation method is to check if the basic block is in range of
(func.startEA, func.endEA)
inFlowChart()
.The text was updated successfully, but these errors were encountered: