mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
commit
d15a0a107f
4 changed files with 13 additions and 0 deletions
|
@ -50,6 +50,7 @@ Installers for the following tools are included:
|
|||
| 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-->
|
||||
| binary | [xrop](https://github.com/acama/xrop) | Gadget finder. | <!--tool--><!--failing-->
|
||||
| binary | [manticore](https://github.com/trailofbits/manticore) | Manticore is a prototyping tool for dynamic binary analysis, with support for symbolic execution, taint analysis, and binary instrumentation. | <!--tool--><!--no-test-->
|
||||
| forensics | [binwalk](https://github.com/devttys0/binwalk.git) | Firmware (and arbitrary file) analysis tool. | <!--tool--><!--test-->
|
||||
| forensics | [dislocker](http://www.hsc.fr/ressources/outils/dislocker/) | Tool for reading Bitlocker encrypted partitions. | <!--tool--><!--test-->
|
||||
| forensics | [exetractor](https://github.com/kholia/exetractor-clone) | Unpacker for packed Python executables. Supports PyInstaller and py2exe. | <!--tool--><!--test-->
|
||||
|
|
4
manticore/install
Normal file
4
manticore/install
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
git clone --depth 1 https://github.com/trailofbits/manticore.git && cd manticore
|
||||
ctf-tools-pip install --no-binary capstone .
|
5
manticore/install-root-debian
Normal file
5
manticore/install-root-debian
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
set -eu -o pipefail
|
||||
|
||||
apt-get -y install z3
|
3
manticore/uninstall
Normal file
3
manticore/uninstall
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
ctf-tools-pip uninstall -y manticore || true
|
Loading…
Reference in a new issue