mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
radare2
This commit is contained in:
parent
fa09512502
commit
592047dd9a
2 changed files with 8 additions and 0 deletions
|
@ -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
7
radare2/install
Executable 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
|
Loading…
Reference in a new issue