
Steghide servicemenu
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
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.
egregorion
11 years ago
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
Report
stalin2000
12 years ago
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
Report