mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
adding latest valgrind version
This commit is contained in:
parent
8982de556d
commit
f2431a09b0
2 changed files with 11 additions and 0 deletions
|
@ -48,6 +48,7 @@ Installers for the following tools are included:
|
|||
| binary | [shellsploit](https://github.com/b3mb4m/shellsploit-framework) | Shellcode development kit. | <!--tool--><!--test-->
|
||||
| binary | [snowman](https://github.com/yegord/snowman) | Cross-architecture decompiler. | <!--tool--><!--test-->
|
||||
| binary | [taintgrind](https://github.com/wmkhoo/taintgrind) | A valgrind taint analysis tool. | <!--tool--><!--failing-->
|
||||
| binary | [valgrind](http://valgrind.org) | A Dynamic Binary Instrumentation framwork with some built-in tools. | <!--tool--><!--test-->
|
||||
| binary | [villoc](https://github.com/wapiflapi/villoc) | Visualization of heap operations. | <!--tool--><!--test-->
|
||||
| binary | [virtualsocket](https://github.com/antoniobianchi333/virtualsocket) | A nice library to interact with binaries. | <!--tool--><!--test-->
|
||||
| binary | [wcc](https://github.com/endrazine/wcc) | The Witchcraft Compiler Collection is a collection of compilation tools to perform binary black magic on the GNU/Linux and other POSIX platforms. | <!--tool--><!--no-test-->
|
||||
|
|
10
valgrind/install
Executable file
10
valgrind/install
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
INST_DIR=$PWD
|
||||
|
||||
curl ftp://sourceware.org/pub/valgrind/valgrind-3.13.0.tar.bz2 | tar xj
|
||||
cd valgrind-3.13.0
|
||||
./autogen.sh
|
||||
./configure --prefix=$INST_DIR
|
||||
make -j $(nproc)
|
||||
make install
|
Loading…
Reference in a new issue