mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 06:52:36 +00:00
13 lines
241 B
Bash
Executable file
13 lines
241 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
git clone https://github.com/ALSchwalm/foresight.git
|
|
|
|
# python3 virtualenv
|
|
virtualenv -p $(which python3) python3
|
|
source python3/bin/activate
|
|
pip install -e foresight
|
|
|
|
mkdir -p bin
|
|
cd bin
|
|
ln -s ../python3/bin/foresee .
|
|
cd ..
|