You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo -e "\\n""$MAGENTA""$BOLD""Docker will be installed (if not already on the system) and the image be downloaded!""$NC"
277
+
ANSWER=("y")
278
+
fi
279
+
case${ANSWER:0:1}in
280
+
y|Y )
281
+
apt-get install "${INSTALL_APP_LIST[@]}" -y
282
+
if [[ "$(docker images -q embeddedanalyzer/emba:latest 2> /dev/null)"=="" ]] ;then
283
+
echo -e "$ORANGE""embeddedanalyzer/emba docker image will be downloaded""$NC"
284
+
docker pull embeddedanalyzer/emba:latest
285
+
else
286
+
echo -e "$ORANGE""embeddedanalyzer/emba docker image is already downloaded""$NC"
287
+
fi
288
+
;;
289
+
esac
290
+
253
291
# cwe checker docker
254
292
255
293
echo -e "\\nWith emba you can automatically find vulnerable pattern in binary executables (just start emba with the parameter -c). Docker and the cwe_checker from fkiecad are required for this."
@@ -714,6 +752,7 @@ case ${ANSWER:0:1} in
714
752
fi
715
753
716
754
cd ../.. ||exit 1
755
+
rm ./external/binwalk -r
717
756
718
757
if [[ -f"/usr/local/bin/binwalk"&&"$BINWALK_PRE_AVAILABLE"-eq 0 ]] ;then
0 commit comments