Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
.github/ | H | 02-Feb-2021 | - | 406 | 349 | |
.vscode/ | H | 02-Feb-2021 | - | 13 | 13 | |
dist/ | H | 03-May-2022 | - | 1,232 | 1,007 | |
docker/ | H | 02-Feb-2021 | - | 384 | 293 | |
docs/ | H | 02-Feb-2021 | - | 6,820 | 4,843 | |
radare2/ | H | 02-Feb-2021 | - | |||
scripts/ | H | 03-May-2022 | - | 2,215 | 1,976 | |
src/ | H | 03-May-2022 | - | 209,679 | 197,217 | |
.appveyor.yml | H A D | 02-Feb-2021 | 3.7 KiB | 99 | 87 | |
.dockerignore | H A D | 02-Feb-2021 | 155 | 13 | 12 | |
.gitignore | H A D | 02-Feb-2021 | 1 KiB | 97 | 78 | |
.gitmodules | H A D | 02-Feb-2021 | 194 | 7 | 6 | |
.lgtm.yml | H A D | 02-Feb-2021 | 88 | 7 | 5 | |
.travis.yml | H A D | 02-Feb-2021 | 11.9 KiB | 298 | 277 | |
CONTRIBUTING.md | H A D | 02-Feb-2021 | 1.5 KiB | 26 | 16 | |
COPYING | H A D | 02-Feb-2021 | 34.3 KiB | 676 | 553 | |
Makefile | H A D | 02-Feb-2021 | 1.7 KiB | 75 | 56 | |
README.md | H A D | 02-Feb-2021 | 1.9 KiB | 67 | 43 | |
build.bat | H A D | 02-Feb-2021 | 1.3 KiB | 47 | 37 | |
build.sh | H A D | 02-Feb-2021 | 3.3 KiB | 138 | 112 | |
config.mk.acr | H A D | 02-Feb-2021 | 161 | 8 | 6 | |
configure | H A D | 02-Feb-2021 | 13 KiB | 511 | 466 | |
configure.acr | H A D | 02-Feb-2021 | 415 | 18 | 13 | |
meson.py | H A D | 02-Feb-2021 | 3.8 KiB | 103 | 86 | |
prepare_r2.bat | H A D | 02-Feb-2021 | 1.5 KiB | 34 | 29 |
README.md
1<img width="150" height="150" align="left" style="float: left; margin: 0 10px 0 0;" alt="Cutter logo" src="https://raw.githubusercontent.com/radareorg/r2cutter/master/src/img/r2cutter.svg?sanitize=true"> 2 3# r2cutter 4 5r2cutter is the continuation of [Cutter](https://cutter.re) before the fork to keep [radare2](https://github.com/radareorg/radare2) as backend. 6 7* Focus on supporting latest version of radare2 8* Recommend the use of system installed 9* Closer integration between r2 and the UI 10 11[![r2cutter CI](https://github.com/radareorg/r2cutter/workflows/r2cutter%20CI/badge.svg)](https://github.com/radareorg/r2cutter/actions) 12 13![Screenshot](https://raw.githubusercontent.com/radareorg/r2cutter/master/docs/source/images/screenshot.png) 14 15## Downloading a release 16 17r2cutter is available for Linux, macOS and Windows. 18Get the builds from the [releases](https://github.com/radareorg/r2cutter/releases) page in Github. 19 20## Installing dependencies 21 22r2cutter depends on r2, you should install it 23 24``` 25$ git clone https://github.com/radareorg/radare2 26$ cd radare2 ; sys/install.sh 27``` 28 29Extra dependencies are needed for macOS 30 31``` 32brew install qt5 33``` 34 35On Ubuntu/Debian 36 37``` 38sudo apt install qttools5-dev-tools make 39``` 40 41## Building from sources 42 43``` 44./configure 45make 46make run 47``` 48 49## Docker 50 51To deploy *cutter* using a pre-built `Dockerfile`, it's possible to use the [provided configuration](docker). The corresponding `README.md` file also contains instructions on how to get started using the docker image with minimal effort. 52 53``` 54make -C docker 55``` 56 57## Plugins 58r2cutter supports both Python and Native C++ plugins. For now the api is compatible with Cutter. Read the [Plugins](https://cutter.re/docs/plugins) section on their documentation. 59 60## Help 61 62Get help, updates, meet the community or discuss about development in these channels: 63 64- **Telegram:** https://t.me/radare 65- **IRC:** #radare and #cutter on irc.freenode.net 66- **Twitter:** [@radareorg](https://twitter.com/radareorg) 67