mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 22:12:32 +00:00
Merge pull request #4 from NickStephens/add-rp
Add rp++ as an installable tool
This commit is contained in:
commit
6321407b4b
2 changed files with 17 additions and 0 deletions
|
@ -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
16
rp++/install
Executable 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
|
Loading…
Reference in a new issue