This commit is contained in:
Yan 2015-05-07 14:40:08 -07:00
parent fa09512502
commit 592047dd9a
2 changed files with 8 additions and 0 deletions

View file

@ -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. |

7
radare2/install Executable file
View file

@ -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