ctf-tools/pathgrind/install
2015-06-19 11:48:15 -07:00

30 lines
506 B
Bash
Executable file

#!/bin/bash -e
git clone https://github.com/codelion/pathgrind.git
cd pathgrind
patch -p1 < ../valgrind-libc.patch
./install.sh
chmod 755 fuzz/fuzz.py fuzz/gui.py fuzz/plotfuzz.py
cd ../
mkdir -p bin
cat <<END > bin/pathgrind-fuzz
#!/bin/sh
cd "$PWD/pathgrind/"
python fuzz/fuzz.py "\$@"
END
cat <<END > bin/pathgrind-gui
#!/bin/sh
cd "$PWD/pathgrind/"
python fuzz/gui.py "\$@"
END
cat <<END > bin/pathgrind-plot
#!/bin/sh
cd "$PWD/pathgrind/"
python fuzz/plot.py "\$@"
END
chmod 755 bin/pathgrind-*