mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-14 22:06:58 +00:00
added shellsploit
This commit is contained in:
parent
e373444359
commit
d9885afc37
2 changed files with 13 additions and 0 deletions
|
@ -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
12
shellsploit/install
Executable 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 ..
|
Loading…
Add table
Reference in a new issue