Go to file
Luca c0ae08acc1 steghide 2022-05-07 13:46:14 +01:00
images steghide 2022-05-07 13:46:14 +01:00
steghide-src steghide 2022-05-07 13:46:14 +01:00
FilesToAdd.cpp steghide 2022-05-07 13:46:14 +01:00
FilesToAdd.h steghide 2022-05-07 13:46:14 +01:00
FilesToAddListModel.cpp steghide 2022-05-07 13:46:14 +01:00
FilesToAddListModel.h steghide 2022-05-07 13:46:14 +01:00
LICENSE steghide 2022-05-07 13:46:14 +01:00
README.md steghide 2022-05-07 13:46:14 +01:00
StdRedirection.h steghide 2022-05-07 13:46:14 +01:00
Steghide-GUI.pro steghide 2022-05-07 13:46:14 +01:00
Steghide-GUI.pro.user steghide 2022-05-07 13:46:14 +01:00
Steghide-GUI.pro.user.4f3d9da steghide 2022-05-07 13:46:14 +01:00
Steghide-GUI.pro.user.381ec20 steghide 2022-05-07 13:46:14 +01:00
categoryitemmodel.cpp steghide 2022-05-07 13:46:14 +01:00
config.h steghide 2022-05-07 13:46:14 +01:00
dialog.cpp steghide 2022-05-07 13:46:14 +01:00
dialog.h steghide 2022-05-07 13:46:14 +01:00
dialog.ui steghide 2022-05-07 13:46:14 +01:00
extractdialog.cpp steghide 2022-05-07 13:46:14 +01:00
extractdialog.h steghide 2022-05-07 13:46:14 +01:00
extractdialog.ui steghide 2022-05-07 13:46:14 +01:00
imageresources.qrc steghide 2022-05-07 13:46:14 +01:00
main.cpp steghide 2022-05-07 13:46:14 +01:00
mainwindow.cpp steghide 2022-05-07 13:46:14 +01:00
mainwindow.h steghide 2022-05-07 13:46:14 +01:00
mainwindow.ui steghide 2022-05-07 13:46:14 +01:00

README.md

Steghide-GUI is unofficial graphical frontend for steghide (http://steghide.sourceforge.net/) written in Qt and steghide is a steganography program that is able to hide data in various kinds of image- and audio-files. The color- respectivly sample-frequencies are not changed thus making the embedding resistant against first-order statistical tests.

HOW TO COMPILE AND INSTALL

Required packages: ##Debian : qmake libmhash-dev libmcrypt-dev ##Arch : mhash mcrypt

Old :

To generate makefile just create folder where you wants to build and use command: qmake -spec linux-g++ -o Makefile ../Steghide-GUI/Steghide-GUI.pro Where last path it's path to .pro file from Steghide-GUI source;

After you generate makefile just type: make to build it and get compiled Steghide-GUI binary (Run ./Steghide-GUI).

If you want to install Steghide-GUI via 'make install' after 'make' command add this lines in *.pro files and repeat all commands listed above (in this example install path will be /usr/local/bin/): target.path = /usr/local/bin/ INSTALLS += target

LAZY WAY: Just install QT Creator and open .pro file ;)

Note :

make sure that you have folder named ~/.local/bin/

New :

qmake -spec linux-g++ -o Makefile Steghide-GUI.pro make && make install