Description: Steghide is a stenography programme. Homepage is http://steghide.sourceforge.net. In short I can describe how it is used. You need jpeg, bmp or wav file and the file you want to hide. Steghide will compress, encrypt and embed this file into jpeg, bmp or wav mentioned above. Nobody can see that this file contain another file. But if he has steghide and knows password, he can get embedded file out of original file.
Steghide is console programme and I just wanted to make some script that allow all the people to use it even though they don't like console programmes. With this script, you can use steghide just by means of right button in Konqueror. If you click on the jpeg, bmp or wav file by right button you will see in "Actions" possibility to embed file or extract file.
Hi, packing a file into a jpeg works, but extracting doesn't... could you maybe help me...?
The error must be somewhere here:
else #for extracting file
current_path=$(echo ${1%/*}) #where is the file which should contain embedded file
pass=$(kdialog --password "Type password") then
steghide extract -sf "$1" -p "$pass"
fi
fi
Ratings & Comments
2 Comments
hi, I made a steghide servicemenu for kde3 and kde4 at http://www.kde-look.org/content/show.php?content=105172. Thanks and good work. Giuseppe Benigno
Hi, packing a file into a jpeg works, but extracting doesn't... could you maybe help me...? The error must be somewhere here: else #for extracting file current_path=$(echo ${1%/*}) #where is the file which should contain embedded file pass=$(kdialog --password "Type password") then steghide extract -sf "$1" -p "$pass" fi fi