• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H02-Feb-2021-406349

.vscode/H02-Feb-2021-1313

dist/H03-May-2022-1,2321,007

docker/H02-Feb-2021-384293

docs/H02-Feb-2021-6,8204,843

radare2/H02-Feb-2021-

scripts/H03-May-2022-2,2151,976

src/H03-May-2022-209,679197,217

.appveyor.ymlH A D02-Feb-20213.7 KiB9987

.dockerignoreH A D02-Feb-2021155 1312

.gitignoreH A D02-Feb-20211 KiB9778

.gitmodulesH A D02-Feb-2021194 76

.lgtm.ymlH A D02-Feb-202188 75

.travis.ymlH A D02-Feb-202111.9 KiB298277

CONTRIBUTING.mdH A D02-Feb-20211.5 KiB2616

COPYINGH A D02-Feb-202134.3 KiB676553

MakefileH A D02-Feb-20211.7 KiB7556

README.mdH A D02-Feb-20211.9 KiB6743

build.batH A D02-Feb-20211.3 KiB4737

build.shH A D02-Feb-20213.3 KiB138112

config.mk.acrH A D02-Feb-2021161 86

configureH A D02-Feb-202113 KiB511466

configure.acrH A D02-Feb-2021415 1813

meson.pyH A D02-Feb-20213.8 KiB10386

prepare_r2.batH A D02-Feb-20211.5 KiB3429

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