-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathget-Futag.sh
More file actions
executable file
·26 lines (24 loc) · 1.11 KB
/
get-Futag.sh
File metadata and controls
executable file
·26 lines (24 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
echo "************************************************"
echo "* ______ __ __ ______ ___ ______ *"
echo "* / ____/ / / / / /_ __/ / | / ____/ *"
echo "* / /_ / / / / / / / /| | / / __ *"
echo "* / __/ / /_/ / / / / ___ | / /_/ / *"
echo "* /_/ \____/ /_/ /_/ |_| \____/ *"
echo "* *"
echo "* Fuzzing targets Automated Generator *"
echo "* *"
echo "************************************************"
echo "* This script prepares testing libraries *"
echo "************************************************"
echo ""
echo "-- [Futag]: Getting stable Futag package."
if [ ! -f futag-llvm.2.0.4.tar.xz ]; then
wget https://github.com/ispras/Futag/releases/download/v3.0.0/futag-llvm18.alt11.tar.xz
wget https://github.com/ispras/Futag/releases/download/v3.0.0/futag-3.0.0.tar.gz
fi
echo "-- [Futag]: Extracting..."
tar xf futag-llvm18.alt11.tar.xz
#cd futag-llvm
#./buildAFLplusplus.sh
echo "-- [Futag]: Futag package is extracted to futag-llvm folder!"