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
[SymExPorter] Traceback (most recent call last):
File "C:/Program Files/IDA_Pro_v8.3_Portable/plugins/SymExPorter.py", line 577, in write_symbols
with open(input_file, 'rb') as f:
^^^^^^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: 'Z:\\home\\giba\\ccit\\challenges\\pwn\\canvas\\canvas'
And suggested a fix
Change line 785 from self.input_elf = ida_nalt.get_input_file_path() to self.input_elf = os.path.dirname(os.path.realpath(__name__))
But this fix breaks execution in IDA (Windows)
The text was updated successfully, but these errors were encountered:
gibait reported this error:
And suggested a fix
Change line 785 from
self.input_elf = ida_nalt.get_input_file_path()
toself.input_elf = os.path.dirname(os.path.realpath(__name__))
But this fix breaks execution in IDA (Windows)
The text was updated successfully, but these errors were encountered: