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
Traceback (most recent call last):
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\integration\ida_integration.py", line 559, in activate
self.action_function(IDA_GLOBAL_CTX)
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\core.py", line 233, in _interactive_prev_execution
pctx.interactive_prev_execution()
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\context.py", line 388, in interactive_prev_execution
rebased_address = self.reader.analysis.rebase_pointer(address)
^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'analysis'
Traceback (most recent call last):
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\integration\ida_integration.py", line 559, in activate
self.action_function(IDA_GLOBAL_CTX)
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\core.py", line 229, in _interactive_next_execution
pctx.interactive_next_execution()
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\context.py", line 376, in interactive_next_execution
rebased_address = self.reader.analysis.rebase_pointer(address)
^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'analysis'
The issue occurs when I use Shift+P and Shift+N.
What should I do to fix this error?
PS:If you can help me understand the role of this variable, I can try to fix it.
The text was updated successfully, but these errors were encountered:
I’m not sure which version you’re using, but it’s not the latest one. Please pull the latest version from the main branch, synchronize the tenet directory inside the plugin directory, and let me know if self.reader is still causing issues.
And I think it’s obvious, but the trace file must be opened before using previous and next execution shortcuts.
I tested a fresh installation and noticed some problems specifically on Windows, particularly with line_profile and capstone. It seems your installation might not be complete, which could explain why the options menu is missing.
To enable the options menu, you need to right-click (open the context menu) while hovering over the disassembly view. Below, I've included a screenshot for reference.
Traceback (most recent call last):
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\integration\ida_integration.py", line 559, in activate
self.action_function(IDA_GLOBAL_CTX)
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\core.py", line 233, in _interactive_prev_execution
pctx.interactive_prev_execution()
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\context.py", line 388, in interactive_prev_execution
rebased_address = self.reader.analysis.rebase_pointer(address)
^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'analysis'
Traceback (most recent call last):
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\integration\ida_integration.py", line 559, in activate
self.action_function(IDA_GLOBAL_CTX)
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\core.py", line 229, in _interactive_next_execution
pctx.interactive_next_execution()
File "H:\xxxx/IDA_Pro_8.3/IDA_Pro_8.3/plugins\tenet\context.py", line 376, in interactive_next_execution
rebased_address = self.reader.analysis.rebase_pointer(address)
^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'analysis'
The issue occurs when I use Shift+P and Shift+N.
What should I do to fix this error?
PS:If you can help me understand the role of this variable, I can try to fix it.
The text was updated successfully, but these errors were encountered: