From 592047dd9af6946ec002634a29488814380e2209 Mon Sep 17 00:00:00 2001 From: Yan Date: Thu, 7 May 2015 14:40:08 -0700 Subject: [PATCH] radare2 --- README.md | 1 + radare2/install | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100755 radare2/install diff --git a/README.md b/README.md index 6d27143..36eb425 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ Installers for the following tools are included: | binary | peda | Enhanced environment for gdb. | | binary | preeny | A collection of helpful preloads (compiled for many architectures!). | | binary | qemu | Latest version of qemu! | +| binary | radare2 | Some crazy thing crowell likes. | | binary | shellnoob | Shellcode writing helper. | | binary | xrop | Gadget finder. | | forensics | firmware-mod-kit | Tools for firmware packing/unpacking. | diff --git a/radare2/install b/radare2/install new file mode 100755 index 0000000..e2ae167 --- /dev/null +++ b/radare2/install @@ -0,0 +1,7 @@ +#!/bin/bash -e + +git clone https://github.com/radare/radare2.git +cd radare2/ +./configure --prefix=$(dirname $PWD) +make -j $(nproc) +make install