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-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-02-21 11:29:21 +01:00
|
|
|
echo "Usage: ./crypter.sh -[e/d] [inputfile]";
|
2024-02-02 15:49:55 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-02-21 11:29:21 +01:00
|
|
|
# Check if keys are set
|
|
|
|
if [ ! -f keys ]; then echo "KEYS=\"-des-ede3-cbc -pbkdf2\"" > keys; fi
|
|
|
|
source keys
|
|
|
|
|
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-02-21 10:29:45 +01:00
|
|
|
OUTPUT="${INPUT}.crypto"
|
|
|
|
openssl enc $KEYS -salt -in ${INPUT} -out ${OUTPUT}.temp
|
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
|
|
|
|
rm -f ${INPUT}
|
|
|
|
exit 0
|
|
|
|
else
|
|
|
|
# NOK - remove empty output file
|
|
|
|
echo "Output file is 0 bytes! Not removing the source file"
|
|
|
|
rm -f ${OUTPUT}
|
|
|
|
exit 2
|
|
|
|
fi
|
2024-02-02 15:49:55 +01:00
|
|
|
;;
|
2024-02-21 11:29:21 +01:00
|
|
|
"-d")
|
|
|
|
echo "Decrypting file ${INPUT}";
|
|
|
|
OUTPUT="`echo $INPUT | sed 's/\.crypto//'`" #Tim of the last extension in future update"
|
2024-02-02 15:49:55 +01:00
|
|
|
base64 -d ${INPUT} > ${INPUT}.temp
|
2024-02-21 10:29:45 +01:00
|
|
|
openssl enc -d $KEYS -in ${INPUT}.temp -out ${OUTPUT}
|
2024-02-02 15:49:55 +01:00
|
|
|
rm -f ${INPUT}.temp
|
2024-02-21 11:29:21 +01:00
|
|
|
exit
|
|
|
|
if [ "`stat ${OUTPUT} | grep Size | awk '{ print $2}'`" != 0 ]
|
|
|
|
then
|
|
|
|
# OK - safe to delete the original input file
|
|
|
|
rm -f ${INPUT}
|
|
|
|
else
|
|
|
|
# NOK - remove empty output file
|
|
|
|
echo "Output file is 0 bytes! Not removing the source file"
|
|
|
|
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
|