mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
21 lines
778 B
Bash
Executable file
21 lines
778 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
source ctf-tools-venv-activate
|
|
|
|
#[ -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 --depth 1 https://github.com/angr/angr-dev
|
|
angr-dev/setup.sh -w -r https://git:@github.com/salls angrop
|
|
rm -rf angr-dev/wheels
|
|
|
|
mkdir -p bin
|
|
cd bin
|
|
cat <<END > angr-management
|
|
#!/bin/bash -e
|
|
|
|
$VIRTUAL_ENV/bin/python -m angrmanagement "\$@"
|
|
END
|
|
chmod 755 angr-management
|
|
cd ..
|