Compare commits

...

2 Commits

Author SHA1 Message Date
Pierre-Antoine 4a340eb0ca Script: Add ARM (AmnesiaRemove). 2024-09-21 20:04:34 +02:00
Pierre-Antoine 9a2be7c5f9 Scripts: Add steghide hide and extract. 2024-09-21 20:04:08 +02:00
3 changed files with 31 additions and 0 deletions

6
scripts/ARM Executable file
View File

@ -0,0 +1,6 @@
#! /bin/sh
for file in $@
do
$HOME/.bin/arm -a -p $file
done

10
scripts/Steghide Extract Executable file
View File

@ -0,0 +1,10 @@
#! /bin/sh
for file in $@
do
password=$(zenity --password --title "Decrypt data password in $file")
steghide extract \
--passphrase "$password" \
-sf "$file"
done

15
scripts/Steghide Hide Executable file
View File

@ -0,0 +1,15 @@
#! /bin/sh
password=$(zenity --password --title "Encrypt data password")
image=$(zenity --file-selection --title="Select an image")
file=$(basename $image)
cp $image ./$file
steghide embed \
--encryption twofish \
--compress 9 \
-cf $file \
-ef $1 \
--passphrase "$password"