Merge pull request #4 from NickStephens/add-rp

Add rp++ as an installable tool
This commit is contained in:
Yan 2015-05-11 17:22:24 -07:00
commit 6321407b4b
2 changed files with 17 additions and 0 deletions

View file

@ -22,6 +22,7 @@ Installers for the following tools are included:
| binary | [taintgrind](https://github.com/wmkhoo/taintgrind) | A valgrind taint analysis tool. |
| binary | [qira](http://qira.me) | Parallel, timeless debugger. |
| binary | [xrop](https://github.com/acama/xrop) | Gadget finder. |
| binary | [rp++](https://github.com/0vercl0k/rp) | Another gadget finder. |
| forensics | [binwalk](https://github.com/devttys0/binwalk.git) | Firmware (and arbitrary file) analysis tool. |
| forensics | [dislocker](http://www.hsc.fr/ressources/outils/dislocker/) | Tool for reading Bitlocker encrypted partitions. |
| forensics | [firmware-mod-kit](https://code.google.com/p/firmware-mod-kit/) | Tools for firmware packing/unpacking. |

16
rp++/install Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash -e
# 64bit test
if [[ $(uname -m) == 'x86_64' ]];
then
BIN="rp-lin-x64"
else
BIN="rp-lin-x86"
fi
wget https://github.com/downloads/0vercl0k/rp/$BIN
mv $BIN rp++
mkdir bin
chmod 755 rp++
mv rp++ bin