Coder Social home page Coder Social logo

tiffanyb / binsync Goto Github PK

View Code? Open in Web Editor NEW

This project forked from binsync/binsync

0.0 0.0 0.0 3.41 MB

A collaborative reversing plugin for cross-decompiler collaboration, built on git.

License: BSD 2-Clause "Simplified" License

Shell 1.36% Python 98.64%

binsync's Introduction

BinSync

logo

BinSync is a decompiler collaboration tool built on the Git versioning system to enable fined grained reverse engineering collaboration regardless of decompiler.

All good decompilers share common objects called Reverse Engineering Artifacts (REAs). These REAs are the center of BinSync's syncing ability. Here are the supported REAs:

  • Function headers (symbol, args, type)
  • Stack Variables (symbol, type)
  • Structs
  • Comments

Note: all types support user-created types like structs. DISCLAIMER: The current version of BinSync is highly developmental. If you are looking for a highly stable version with full support for the listed decompilers, check back in a few months.

Join our discord below for more online help:

Discord

Supported Platforms

  • IDA Pro: >= 7.3
  • Binary Ninja: >= 2.4
  • angr-management: >= 9.0
  • Ghidra: >= 10.1

All versions require Python >= 3.4 and Git installed on your system. Ghidra support is stil very much in early stage, so only expect the minimal features like artifact name syncing and comments.

Installing

Oneliner (IDA only)

If you are using IDA, paste this oneliner in your IDA terminal, let it run, and restart:

import urllib.request, sys, os; sys.path.insert(1, os.getcwd()); urllib.request.urlretrieve("https://raw.githubusercontent.com/angr/binsync/master/plugins/ida_binsync/ida_binsync/oneliner.py", "oneliner.py"); from oneliner import install; install()

Script (Fast)

Use the installation script provided in the repo:

./install.sh --ida /path/to/ida/plugins

Use --help, for more information.

Manual

If you are unable to install BinSync with the script above, you are probably on Windows. In that case, installing BinSync is a two-step process.

  1. Install the core with the Python version associated with your decompiler: pip3 install binsync
  2. Install the decompiler plugin directly into your decompilers plugin folder.

For step 2, you copy all files (and folders) found under the plugin folder in BinSync. An an example, for IDA, you would copy everything in plugins/ida_binsync/* to the plugins folder.

Usage

Although BinSync supports various decompilers, which may have not so subtle differences, a lot of the way you interact with BinSync is standard across all versions. In each decompiler we use the same UI regardless of QT version.

For decompiler specific intricacies, please see our supported decompilers usage manual in our Wiki. If you are using Binja, see our extra install steps. Lastly, before attempting to use the BinSync for its pushing features, assure you have an unlocked (non-password protected) ssh key associated with the repo you plan on editing.

After validating your install below, it is very helpful to read our user Manual in our Wiki.

Validation

  1. Copy down a local version of the testing repo and grab the fauxware binary
git clone [email protected]:mahaloz/binsync_example_repo.git
cp binsync_example_repo/fauxware .
  1. Open the fauxware binary in your decompiler, verify it has loaded in the decompiler terminal
[BinSync] 2.7.0 loaded

If it does not show, it means the plugin is not in the plugins folder.

  1. Open the BinSync Config Pane

    1. You can hit Ctrl+Shift+B to open it, OR
    2. You can click your decompiler menu: Edit -> Plugins -> Binsync: settings. On Binja it's under Tools.
  2. Give a username and find the example_repo from earlier, click ok

  3. Verify your terminal says (with your username):

[BinSync]: Client has connected to sync repo with user: <username>.
  1. You should now see an Info Panel. Click on Activity, you can see other user's activities. You should also notice your username on the bottom right of the panel to be green (online).

Congrats, your BinSync seems to connect to a repo, and recognize you as a user. Let's test pulling to verify you can actually do stuff with your install.

  1. In your decompiler, click anywhere in the function main once. After a second or two you should notice on the Info Panel that the words on the bottom left say main@0x40071d. This is your context.

  2. Now click on the Context tab, and right click on the user mahaloz. Click the Sync popup.

  3. If everything works out, your decompilation should've changed for main. Now the function should be named mahaloz_main, and it should look something like:

// ***
// This is a function comment:
// 
// Thanks for using BinSync <3
// 
// - mahaloz
// ***
int __cdecl mahaloz_main(int argc, const char **argv, const char **envp)
{
  int buf; 
  mahalo_struct special_stack_var; 
  char username[16]; 

  username[8] = 0;
  LOBYTE(special_stack_var.field_8) = 0;
  puts("Username: ");
  read(0, username, 8uLL);
  read(0, &buf, 1uLL);
  puts("Password: ");                           // totally a password
  read(0, &special_stack_var, 8uLL);
  read(0, &buf, 1uLL);
  buf = authenticate(username, &special_stack_var);
  if ( !buf )
    rejected(username);
  return accepted(username);
} 

Take note of the variable names & types, and the comments. This will look different per-decompiler, but the symbols and types should line up for the most part.

For more general use, tips, and advice, see our Wiki Manual for full help.

Making your own BinSync Repo

Like in the validation section above, you can create your own repo for a BinSync project. BinSync will work with any git url, but for this tutorial we will only show how to do it on GitHub.

  1. Make a GitHub repo; it does not matter if you init it or add a README

  1. Copy the SSH url from the next page; It would look something like: [email protected]:mahaloz/my_binsync_project.git

  2. Open a binary in your decompiler of choice; we will use fauxware again from the example above

  3. Configure BinSync in your decompiler and fill in the remote url and user. You can put nothing in the git repo section as it will default to putting the repo next to the binary you have open.

You should now be connected to your new remote repo. The remote on GitHub will also show 2 new branches now:

  • your first user
  • the binsync/__root__ repo

Now all your friends can connect their clients to your repo like in the example above :).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.