Skip to content

Commit

Permalink
[ext_bn] prepare tagging for community repository
Browse files Browse the repository at this point in the history
  • Loading branch information
bootleg committed Jan 21, 2022
1 parent c72ff62 commit 5941399
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 19 deletions.
23 changes: 11 additions & 12 deletions ext_bn/retsync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,19 @@ _Helper plugin to synchronize Binary Ninja with a debugging session_

## Description:

This plugin is a part of ret-sync, a set of plugins that help to synchronize a debugging session (WinDbg/GDB/LLDB/OllyDbg/OllyDbg2/x64dbg) with a disassembler (IDA/Ghidra/Binary Ninja).
This plugin is a part of ret-sync, a set of plugins that help to synchronize a
debugging session (WinDbg/GDB/LLDB/OllyDbg/OllyDbg2/x64dbg) with a
disassembler (IDA/Ghidra/Binary Ninja).


## Installation Instructions

### Windows



### Linux



### Darwin
For Windows, Linux or Darwin platforms, no other step is required to install
the Binary Ninja plugin.

To connect a debugger to your Binary Ninja instance, install and configure one
of the debugger plugins (WinDbg/GDB/LLDB/OllyDbg/OllyDbg2/x64dbg) locally or
remotely as explain in the [Github page](https://github.com/bootleg/ret-sync) .


## Minimum Version
Expand All @@ -29,16 +27,17 @@ This plugin requires the following minimum version of Binary Ninja:
* 2



## Required Dependencies

The following dependencies are required for this plugin:

N/A


## License

This plugin is released under a MIT license.


## Metadata Version

2
8 changes: 4 additions & 4 deletions ext_bn/retsync/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
"longdescription": "This plugin is a part of ret-sync, a set of plugins that help to synchronize a debugging session (WinDbg/GDB/LLDB/OllyDbg/OllyDbg2/x64dbg) with a disassembler (IDA/Ghidra/Binary Ninja).",
"license": {
"name": "MIT",
"text": "Copyright (c) 2020 Alexandre Gazet.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
"text": "Copyright (c) 2020-2022 Alexandre Gazet.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."

},
"platforms": ["Windows", "Linux", "Darwin"],
"installinstructions" : {
"Windows":"",
"Linux":"",
"Darwin":""
"Windows":"No other step is required to install the Binary Ninja plugin.\nSee the [Github page](https://github.com/bootleg/ret-sync) to install and configure one of the debugger plugins.",
"Linux":"No other step is required to install the Binary Ninja plugin.\nSee the [Github page](https://github.com/bootleg/ret-sync) to install and configure one of the debugger plugins.",
"Darwin":"No other step is required to install the Binary Ninja plugin.\nSee the [Github page](https://github.com/bootleg/ret-sync) to install and configure one of the debugger plugins."
},
"dependencies": {
},
Expand Down
6 changes: 3 additions & 3 deletions ext_bn/retsync/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,15 +294,15 @@ def handle_read(self):
for request in batch:
self.request_handler.safe_parse(self, request)
else:
rs_log("handler lost client")
rs_debug("handler lost client")
self.close()

def handle_expt(self):
rs_log("handler error")
rs_log("client error")
self.close()

def handle_close(self):
rs_log("handler close")
rs_log("client quit")
self.close()


Expand Down

0 comments on commit 5941399

Please sign in to comment.