ctf-tools/xortool/install

9 lines
176 B
Bash
Executable file

#!/bin/bash -e
git clone --depth 1 https://github.com/hellman/xortool.git
pip install -e ./xortool
mkdir -p bin
cd bin
ln -s ../xortool/xortool/{xortool,xortool-xor} .
cd ..