-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Milestone
Description
Following the documentation I've tried secondary = Program(LoaderType.binexport, "./objcopy.BinExport")
and p1 = Program(Path("objcopy.BinExport")) both of which crash in unexpected ways.
...
91 dst = cg.vertex[edge.target_vertex_index].address
92 self.callgraph.add_edge(src, dst)
---> 93 self[src].children.add(self[dst])
94 self[dst].parents.add(self[src])
96 # Create a map of function names for quick lookup later on
...
self.be_prog = binexport.ProgramBinExport(file)
File ".../python3.10/site-packages/binexport/program.py", line 93, in __init__
self[src].children.add(self[dst])
KeyError: 4751856
When using the cli via qbindiff -l 'binexport' file1.BinExport file2.BinExport I get the same sort of key errors as well despite these files working fine with BinDiff as-is.
Note: If I do not explicitly ask for binexport I get this issue
59 self._backend = ProgramBackendQuokka(*args, **kwargs)
61 else:
---> 62 raise NotImplementedError("Loader: %s not implemented" % loader)
64 self._filter = lambda x: True
65 self._load_functions()
Any idea what could be causing the issue? I am using BinDiff 8 and Ghidra 10.3
Metadata
Metadata
Assignees
Labels
No labels