Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ida_struct is gone #29

Open
melomac opened this issue Oct 17, 2024 · 1 comment
Open

ida_struct is gone #29

melomac opened this issue Oct 17, 2024 · 1 comment

Comments

@melomac
Copy link

melomac commented Oct 17, 2024

I find this project to be the last resort when everything else supposed to work is failing.

With IDA Pro 8.4, IDA structures were replaced by local types, and I had to:

diff --git a/ida/ida_export.py b/ida/ida_export.py
index 7fe1321..5e627b2 100644
--- a/ida/ida_export.py
+++ b/ida/ida_export.py
@@ -2,7 +2,7 @@
 Exports analysis data from IDA to a bnida json file
 """
 
-import ida_struct
+# import ida_struct
 import ida_kernwin
 import ida_segment
 import ida_bytes
@@ -165,7 +165,7 @@ def main(json_file):
     json_array['func_comments'] = get_function_comments()
     json_array['line_comments'] = get_line_comments()
     json_array['names'] = get_names()
-    json_array['structs'] = get_structs()
+    json_array['structs'] = {} # get_structs()
     print('Done exporting analysis data')
 
     with open(json_file, 'w') as f:

I'd love to see bnida maintained to help us during corner cases hard times :-)

@zznop
Copy link
Owner

zznop commented Oct 17, 2024

Hey melomac. Thank you for reporting this. I plan to breathe some life back into bnida as soon as I get some time. I've been pinged about bnida by multiple people since the release of IDA 8.4.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants