Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/decompiler-explorer/decompiler-explorer
Decompiler Explorer! Compare tools on the forefront of static analysis, now in your web browser!
https://github.com/decompiler-explorer/decompiler-explorer
angr binaryninja boomerang decompiler ghidra ida-pro recstudio reko relyze retdec snowman website
Last synced: 3 months ago
JSON representation
Decompiler Explorer! Compare tools on the forefront of static analysis, now in your web browser!
- Host: GitHub
- URL: https://github.com/decompiler-explorer/decompiler-explorer
- Owner: decompiler-explorer
- License: mit
- Created: 2021-10-25T21:52:06.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T20:00:56.000Z (9 months ago)
- Last Synced: 2024-04-24T03:25:34.106Z (9 months ago)
- Topics: angr, binaryninja, boomerang, decompiler, ghidra, ida-pro, recstudio, reko, relyze, retdec, snowman, website
- Language: Python
- Homepage: https://dogbolt.org
- Size: 3.96 MB
- Stars: 1,812
- Watchers: 28
- Forks: 107
- Open Issues: 43
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Decompiler Explorer
[Decompiler Explorer](https://dogbolt.org) is a web front-end to a number of [decompilers](/runners/decompiler). This web service lets you compare the output of different decompilers on small executables. In other words: It's basically the same thing as Matt Godbolt's awesome [Compiler Explorer](https://github.com/compiler-explorer/compiler-explorer), but in reverse.
![Decompiler Explorer](/static/img/preview.png)
## Prerequisites
- python >= 3.8
- pipenv
- docker
- docker-compose## Installation
```
pipenv install
python scripts/dce.py init
```## Setting up decompilers
See the instructions [here](runners/decompiler/tools/README.md)## Running in docker (dev)
```shell
pipenv install
python scripts/dce.py init# Build all decompilers with valid keys
python scripts/dce.py build
# If you want to exclude certain decompilers
# python scripts/dce.py --without-reko buildpython scripts/dce.py start
# UI now accessible on port 80/443
```## Running in docker (production)
```shell
python scripts/dce.py start --prod --replicas 2 --acme-email=
```## Running in docker (production with s3 storage)
```shell
python scripts/dce.py start --prod --replicas 2 --acme-email= --s3 --s3-bucket= --s3-endpoint= --s3-region=
```## Starting dev server (outside Docker)
> This won't start any decompilers, just the frontend
```shell
pipenv run python manage.py migrate
pipenv run python manage.py runserver 0.0.0.0:8000
```## Starting decompiler for dev server
```shell
export EXPLORER_URL=http://172.17.0.1:8000docker-compose up binja --build --force-recreate --remove-orphans
```