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
Thank you for creating such great plugins. I have identified a small issue with the Tenet plugin that I would like to address. Specifically, I noticed that the get_instruction_addresses function returns zero instructions when running certain programs, such as /bin/ls. After debugging, I determined that this issue comes from the code snippet that drops data segments, as shown below:
if seg.sclass != ida_segment.SEG_CODE:
continue
Although I was able to resolve the issue by removing this code, doing so may slow down the loading of traces. I would like to explore alternative solutions to this problem to ensure optimal performance of the plugin while still preserving its functionality.
The text was updated successfully, but these errors were encountered:
Hello,
Thank you for creating such great plugins. I have identified a small issue with the Tenet plugin that I would like to address. Specifically, I noticed that the get_instruction_addresses function returns zero instructions when running certain programs, such as /bin/ls. After debugging, I determined that this issue comes from the code snippet that drops data segments, as shown below:
Although I was able to resolve the issue by removing this code, doing so may slow down the loading of traces. I would like to explore alternative solutions to this problem to ensure optimal performance of the plugin while still preserving its functionality.
The text was updated successfully, but these errors were encountered: