added shellsploit

This commit is contained in:
Yan 2016-02-11 10:22:43 -08:00
parent e373444359
commit d9885afc37
2 changed files with 13 additions and 0 deletions

View file

@ -32,6 +32,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 | [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--><!--test-->
| binary | [villoc](https://github.com/wapiflapi/villoc) | Visualization of heap operations. | <!--tool--><!--test-->

12
shellsploit/install Executable file
View file

@ -0,0 +1,12 @@
#!/bin/bash -e
git clone https://github.com/b3mb4m/shellsploit-framework.git
cd shellsploit-framework
python easyinstall.py install
chmod 755 shellsploit
cd ..
mkdir -p bin
cd bin
ln -sf ../shellsploit-framework/shellsploit .
cd ..