-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
85 lines (81 loc) · 4.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
layout: default
---
<div class="header-container jumbotron">
<div class="container">
<h1>BinSync for Collaboration</h1>
<p>Reverse things together! IDA to Binja; Binja to Ghidra; BinSync makes reversing together possible!</p>
<p><a class="btn btn-primary btn-lg" href="{{ "/docs/home/" | relative_url }}" role="button">Quick Start</a></p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<h2 class="header-light regular-pad">What is BinSync?</h2>
<p class="lead">
BinSync is a collaborative reverse engineering platform that synchronizes reverse engineering artifacts,
like variable types, across decompilers and debuggers in real time.
BinSync is built on Git, which allows you to track and share your reversing progress in
a version-controlled manner.
</p>
</div>
<div class="col-md-6 text-center">
<img src="{{ "/assets/img/binsync_logo.svg" | relative_url }}" style="width: 60%;" alt="BinSync logo" class="img-responsive">
</div>
</div>
<hr>
<div class="text-center">
<img src="https://raw.githubusercontent.com/binsync/binsync/main/assets/images/binja_sync.gif" alt="Binja Sync!">
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-code-fork" aria-hidden="true"></i></h1>
<h3 class="text-center">Git-based Reversing Tracking</h3>
<p>
Every change you make in your decompiler is tracked with Git. For every Artifact you change, you get one commit, which allows you
understand progress in a fine-grained notion. You can use this same functionallity to review knowledge in the form of a PR.
</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-eye" aria-hidden="true"></i></h1>
<h3 class="text-center">WYSIWYG</h3>
<p>
What You Sync Is What You Get:
You are never forced to take changes from anyone else pushing to the same repo. Every user is their own branch, which means you
only take changes that you explicitly ask for! Never again will you be forced into conflict merges or data destruction.
</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-refresh" aria-hidden="true"></i></h1>
<h3 class="text-center">Synchronize in Realtime</h3>
<p>
Though BinSync is built on Git, we utilize a scheduling and thread system to get updates from other users in near-realtime. As soon
as you see data poppulated in your BinSync Control Panel, that data is ready to be synced into your decompiler.
</p>
</div>
</div>
<!--
<div class="row">
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-exclamation-circle" aria-hidden="true"></i></h1>
<h3 class="text-center">Smart Conflict Avoidence</h3>
<p>Get started by cloning source into GitHub account of your project. Thanks to <a href="https://pages.github.com">GitHub Pages</a>,
it will be automatically compiled and published under your account's (or organisation's) subdomain under <code>github.io</code>.
</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-code" aria-hidden="true"></i></h1>
<h3 class="text-center">Robust Infomatic API</h3>
<p>This template uses <a href="https://github.com/twbs/bootstrap-sass">bootstrap-sass</a> along with <a href="https://bootswatch.com/">Bootwatch themes</a>.
You can change the theme or write your custom one by overwriting bootstrap sass variables for a different color set, font options, etc.</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-desktop" aria-hidden="true"></i></h1>
<h3 class="text-center">Cross-Platform Cross-Decompiler</h3>
<p>Leverage from Git version control system by
maintaining your documentation along with the source code; publish the page when you merge to the master branch.</p>
</div>
</div>
-->
</div>