mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-14 22:06:58 +00:00
added angr!
This commit is contained in:
parent
71a1ba3ff3
commit
20aebb1c9c
3 changed files with 27 additions and 0 deletions
|
@ -8,6 +8,7 @@ Installers for the following tools are included:
|
|||
| Category | Tool | Description |
|
||||
|----------|------|-------------|
|
||||
| binary | [afl](http://lcamtuf.coredump.cx/afl/) | State-of-the-art fuzzer. | <!--tool-->
|
||||
| binary | [angr](http://angr.io) | Next-generation binary analysis engine from Shellphish. | <!--tool-->
|
||||
| binary | [barf](https://github.com/programa-stic/barf-project) | Binary Analysis and Reverse-engineering Framework. | <!--tool-->
|
||||
| binary | [bindead](https://bitbucket.org/mihaila/bindead/wiki/Home) | A static analysis tool for binaries. | <!--tool-->
|
||||
| binary | [checksec](https://github.com/slimm609/checksec.sh) | Check binary hardening settings. | <!--tool-->
|
||||
|
|
20
angr/install
Executable file
20
angr/install
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
[ -e $VIRTUAL_ENV/lib/python2.7/site-packages/PyQt4 ] || ln -s /usr/lib/python2.7/dist-packages/PyQt4 $VIRTUAL_ENV/lib/python2.7/site-packages/
|
||||
[ -e $VIRTUAL_ENV/lib/python2.7/site-packages/sip.so ] || ln -s /usr/lib/python2.7/dist-packages/sip.so $VIRTUAL_ENV/lib/python2.7/site-packages/
|
||||
[ -e $VIRTUAL_ENV/lib/python2.7/site-packages/pygraphviz ] || ln -s /usr/lib/pymodules/python2.7/pygraphviz $VIRTUAL_ENV/lib/python2.7/site-packages/
|
||||
|
||||
git clone https://github.com/angr/angr-dev
|
||||
cd angr-dev
|
||||
./setup.sh
|
||||
cd ..
|
||||
|
||||
mkdir -p bin
|
||||
cd bin
|
||||
cat <<END > angr-management
|
||||
#!/bin/bash -e
|
||||
|
||||
$VIRTUAL_ENV/bin/python -m angrmanagement "\$@"
|
||||
END
|
||||
chmod 755 angr-management
|
||||
cd ..
|
6
angr/install-root
Executable file
6
angr/install-root
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
apt-get -y install python-dev libffi-dev build-essential
|
||||
|
||||
# for angr-management
|
||||
apt-get -y install python-qt4 python-sip python-pygraphviz
|
Loading…
Add table
Reference in a new issue