Skip to content

Commit

Permalink
villoc
Browse files Browse the repository at this point in the history
  • Loading branch information
zardus committed May 8, 2015
1 parent e724a2d commit 273f4ed
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
16 changes: 16 additions & 0 deletions villoc/install
Original file line number Diff line number Diff line change
@@ -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 ..

0 comments on commit 273f4ed

Please sign in to comment.