mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-04 18:29:26 +00:00
added snowman
This commit is contained in:
parent
2c7b3d7bdc
commit
3b39ae41fc
3 changed files with 16 additions and 0 deletions
|
@ -28,6 +28,7 @@ Installers for the following tools are included:
|
|||
| binary | [radare2](http://www.radare.org/) | Some crazy thing crowell likes. | <!--tool--><!--test-->
|
||||
| binary | [rp++](https://github.com/0vercl0k/rp) | Another gadget finder. | <!--tool--><!--test-->
|
||||
| binary | [shellnoob](https://github.com/reyammer/shellnoob) | Shellcode writing helper. | <!--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--><!--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-->
|
||||
|
|
12
snowman/install
Executable file
12
snowman/install
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
INST_DIR=$PWD
|
||||
|
||||
[ -e snowman ] || git clone https://github.com/yegord/snowman
|
||||
cd snowman
|
||||
rm -rf build
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -D CMAKE_INSTALL_PREFIX=$INST_DIR ../src
|
||||
cmake --build .
|
||||
cmake --build . --target install
|
3
snowman/install-root
Executable file
3
snowman/install-root
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
apt-get -y install libboost-dev cmake libqt4-dev
|
Loading…
Reference in a new issue