openssl_file_encryption/crypter

92 lines
2.1 KiB
Plaintext
Raw Normal View History

2024-02-02 15:49:55 +01:00
#!/bin/bash
2024-02-02 16:02:44 +01:00
# Author: F. Bischof (info@meer-web.nl)
2024-02-21 11:56:53 +01:00
# URL: https://github.com/Meer-Web/openssl_file_encryption
2024-02-02 15:49:55 +01:00
# Check for input file
if [ -n "$2" ]
then
INPUT=$2
if [ ! -e "$INPUT" ];
then
echo "Input file does not exist!"
exit 2
fi
else
2024-04-17 12:17:09 +02:00
echo "Usage: ./crypter.sh -[e/d] inputfile [--no-verify]";
2024-02-02 15:49:55 +01:00
exit 1
fi
2024-02-23 09:25:16 +01:00
# Check if algos are set
if [ ! -f ~/.crypter/.algos ]
2024-02-21 11:50:25 +01:00
then
mkdir -p ~/.crypter
2024-02-23 09:25:16 +01:00
echo "ALGOS=\"-des-ede3-cbc -pbkdf2\"" > ~/.crypter/.algos
2024-02-21 11:50:25 +01:00
fi
2024-02-23 09:25:16 +01:00
source ~/.crypter/.algos
2024-02-21 11:29:21 +01:00
2024-02-21 10:29:45 +01:00
# Check method
case "$1" in
"-e")
2024-02-21 11:29:21 +01:00
echo "Encrypting file ${INPUT}"
2024-04-17 12:03:02 +02:00
OUTPUT="${INPUT}.crypt"
HASH=$(sha256sum ${INPUT} > ${OUTPUT}.hash)
openssl enc ${ALGOS} -salt -in ${INPUT} -out ${OUTPUT}.temp > /dev/null 2>&1
2024-02-02 15:49:55 +01:00
base64 ${OUTPUT}.temp > ${OUTPUT}
rm -f ${OUTPUT}.temp
2024-02-21 11:29:21 +01:00
if [ "`stat ${OUTPUT} | grep Size | awk '{ print $2}'`" != 0 ]
then
# OK - safe to delete the original input file
2024-02-21 11:45:50 +01:00
echo "OK - Deleting file ${INPUT}"
2024-02-21 11:29:21 +01:00
rm -f ${INPUT}
exit 0
else
# NOK - remove empty output file
2024-02-21 11:45:50 +01:00
echo "CRITICAL - Output file ${OUTPUT} is 0 bytes! Not removing the source file ${INPUT}"
2024-04-17 12:17:09 +02:00
rm -f ${OUTPUT} ${OUTPUT}.hash
2024-02-21 11:29:21 +01:00
exit 2
fi
2024-02-02 15:49:55 +01:00
;;
2024-02-21 11:29:21 +01:00
"-d")
echo "Decrypting file ${INPUT}";
2024-04-17 12:03:02 +02:00
OUTPUT=$(echo ${INPUT} | sed 's/\.crypt//')
2024-02-02 15:49:55 +01:00
base64 -d ${INPUT} > ${INPUT}.temp
2024-04-17 12:03:02 +02:00
openssl enc -d ${ALGOS} -in ${INPUT}.temp -out ${OUTPUT} > /dev/null 2>&1
2024-02-02 15:49:55 +01:00
rm -f ${INPUT}.temp
2024-02-21 11:29:21 +01:00
if [ "`stat ${OUTPUT} | grep Size | awk '{ print $2}'`" != 0 ]
then
2024-04-17 12:17:09 +02:00
if [ "$3" != '--no-verify' ]
2024-02-23 09:25:16 +01:00
then
2024-04-17 12:17:09 +02:00
# SHA256SUM CHECK
CUR_HASH=$(sha256sum --quiet --check ${OUTPUT}.crypt.hash)
if [ $? != 0 ]
then
# NOK - Hash mismatch
echo "CRITICAL - Hashes mismatching!"
rm -f ${OUTPUT}
exit 2
else
# OK - safe to delete the original input file
echo "OK - Hashes matching, deleting input file"
rm -f ${INPUT} ${INPUT}.hash
exit 0
fi
2024-02-23 09:25:16 +01:00
else
2024-04-17 12:17:09 +02:00
echo "Ignoring hash verify"
2024-04-17 12:03:02 +02:00
rm -f ${INPUT} ${INPUT}.hash
2024-02-23 09:25:16 +01:00
fi
2024-04-17 12:17:09 +02:00
2024-02-21 11:29:21 +01:00
else
# NOK - remove empty output file
2024-02-23 09:25:16 +01:00
echo "CRITICAL - Output file is 0 bytes! Not removing the input file"
2024-02-21 11:29:21 +01:00
rm -f ${OUTPUT}
exit 2
fi
2024-02-02 15:49:55 +01:00
exit 0
;;
2024-02-21 11:29:21 +01:00
*)
echo "Usage: ./crypter.sh -[e/d] [inputfile]";
exit 1
;;
2024-02-02 15:49:55 +01:00
esac
exit 3