google / bindiff

Quickly find differences and similarities in disassembled code
https://zynamics.com/bindiff.html
Apache License 2.0
2.15k stars 130 forks source link

Move functionality from plugins to a BinDiff server process #17

Open cblichmann opened 11 months ago

cblichmann commented 11 months ago

Is your feature request related to a problem? Please describe.

Describe the solution you'd like Implement a local BinDiff RPC server using gRPC that get started on demand (similar to how Gradle/Bazel start build processes). The UI and other plugins can then start diffs (and the .BinExport will stay loaded in memory) and request flow graphs for view. This would help with implementing #16 as well. It would also enable BinDiff-as-a-service style deployments.

The plugins would become simpler and could be implemented in the repective disassembler's favoured scripting language (Python and PyQt for IDA Pro and Binary Ninja, Java Swing for Ghidra).

Describe alternatives you've considered N/A

Additional context It should be possible to implement this and adopt it gradually.