This commit is contained in:
Yan 2015-05-07 23:08:30 -07:00
parent e724a2d9ec
commit 273f4ed898
2 changed files with 17 additions and 0 deletions

View file

@ -37,6 +37,7 @@ Installers for the following tools are included:
| binary | [gdb](http://www.gnu.org/software/gdb/) | Up-to-date gdb with python2 bindings. |
| binary | [peda](https://github.com/longld/peda) | Enhanced environment for gdb. |
| binary | [preeny](https://github.com/zardus/preeny) | A collection of helpful preloads (compiled for many architectures!). |
| binary | [villoc](https://github.com/wapiflapi/villoc) | Visualization of heap operations. |
| binary | [qemu](http://qemu.org) | Latest version of qemu! |
| binary | [pwntools](https://github.com/Gallopsled/pwntools) | Useful CTF utilities. |
| binary | [radare2](http://www.radare.org/) | Some crazy thing crowell likes. |

16
villoc/install Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash -e
curl https://software.intel.com/sites/landingpage/pintool/downloads/pin-2.14-71313-gcc.4.4.7-linux.tar.gz | tar xvz
export PIN_ROOT=$PWD/pin-2.14-71313-gcc.4.4.7-linux
git clone https://github.com/wapiflapi/villoc
cd villoc/pintool
make PIN_ROOT=$PIN_ROOT
cd ../
chmod 755 villoc.py
cd ..
mkdir -p bin
cd bin
ln -s ../villoc/villoc.py .
cd ..