mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
82 lines
2.3 KiB
Bash
82 lines
2.3 KiB
Bash
#!/bin/bash
|
|
# Unzips an autopsy platform zip to specified directory and does setup
|
|
# called like: install_autopsy.sh [-z zip_path] [-i install_directory]
|
|
|
|
usage() {
|
|
echo "Usage: install_autopsy.sh [-z zip_path] [-i install_directory] [-v asc_file]" 1>&2;
|
|
echo "If specifying a .asc verification file (with -v flag), the program will attempt to create a temp folder in the working directory and verify the signature with gpg." 1>&2;
|
|
}
|
|
|
|
while getopts "z:i:v:" o; do
|
|
case "${o}" in
|
|
z)
|
|
AUTOPSY_ZIP_PATH=${OPTARG}
|
|
;;
|
|
i)
|
|
INSTALL_DIR=${OPTARG}
|
|
;;
|
|
v) ASC_FILE=${OPTARG}
|
|
;;
|
|
*)
|
|
usage
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [[ -z "$AUTOPSY_ZIP_PATH" ]] || [[ -z "$INSTALL_DIR" ]]; then
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -n "$ASC_FILE" ]]
|
|
then
|
|
VERIFY_DIR=$(pwd)/temp
|
|
KEY_DIR=$VERIFY_DIR/private
|
|
mkdir -p $VERIFY_DIR && \
|
|
sudo wget -O $VERIFY_DIR/carrier.asc https://sleuthkit.org/carrier.asc && \
|
|
mkdir -p $KEY_DIR && \
|
|
sudo chmod 600 $KEY_DIR && \
|
|
sudo gpg --homedir "$KEY_DIR" --import $VERIFY_DIR/carrier.asc && \
|
|
sudo gpgv --homedir "$KEY_DIR" --keyring "$KEY_DIR/pubring.kbx" $ASC_FILE $AUTOPSY_ZIP_PATH && \
|
|
sudo rm -r $VERIFY_DIR
|
|
if [[ $? -ne 0 ]]
|
|
then
|
|
echo "Unable to successfully verify $AUTOPSY_ZIP_PATH with $ASC_FILE" >> /dev/stderr
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
|
|
ZIP_FILE_NAME=$(basename -- "$AUTOPSY_ZIP_PATH")
|
|
ZIP_NAME="${ZIP_FILE_NAME%.*}"
|
|
AUTOPSY_EXTRACTED_PATH=$INSTALL_DIR/$ZIP_NAME
|
|
|
|
if [[ -d $AUTOPSY_EXTRACTED_PATH || -f $AUTOPSY_EXTRACTED_PATH ]]
|
|
then
|
|
echo "A file or directory already exists at $AUTOPSY_EXTRACTED_PATH" >> /dev/stderr
|
|
exit 1
|
|
fi
|
|
|
|
echo "Extracting $AUTOPSY_ZIP_PATH to $AUTOPSY_EXTRACTED_PATH..."
|
|
mkdir -p $AUTOPSY_EXTRACTED_PATH && \
|
|
unzip $AUTOPSY_ZIP_PATH -d $INSTALL_DIR
|
|
if [[ $? -ne 0 ]]
|
|
then
|
|
echo "Unable to successfully extract $AUTOPSY_ZIP_PATH to $INSTALL_DIR" >> /dev/stderr
|
|
exit 1
|
|
fi
|
|
|
|
echo "Setting up autopsy at $AUTOPSY_EXTRACTED_PATH..."
|
|
pushd $AUTOPSY_EXTRACTED_PATH && \
|
|
chown -R $(whoami) . && \
|
|
chmod u+x ./unix_setup.sh && \
|
|
./unix_setup.sh && \
|
|
popd
|
|
if [[ $? -ne 0 ]]
|
|
then
|
|
echo "Unable to setup permissions for autopsy binaries" >> /dev/stderr
|
|
exit 1
|
|
else
|
|
echo "Autopsy setup done."
|
|
fi |