add doc to download images instead of building
This commit is contained in:
parent
63183d4cea
commit
c66927898f
2 changed files with 23 additions and 1 deletions
15
rasta_exp/download_sif_images.sh
Normal file
15
rasta_exp/download_sif_images.sh
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
SIF_DIR=$1
|
||||
if [[ -z "${SIF_DIR}" ]]; then
|
||||
echo MISSING SIF_DIR parameter
|
||||
exit 1
|
||||
fi
|
||||
|
||||
[[ -d "${SIF_DIR}" ]] || mkdir "${SIF_DIR}"
|
||||
|
||||
tools="androguard androguard_dad didfail adagio anadroid blueseal didfail flowdroid mallodroid redexer saaf wognsen_et_al iccta ic3 ic3_fork gator droidsafe apparecium amandroid dialdroid"
|
||||
|
||||
for tool in ${tools}; do
|
||||
curl -L -o "${SIF_DIR}/rasta-${tool}.sif" "https://zenodo.org/records/10980349/files/rasta-${tool}.sif?download=1"
|
||||
done;
|
Loading…
Add table
Add a link
Reference in a new issue