This is a powerful and lightweight steganography program to hide message to a file. There are two options:
- Hide file to another file without password
- Hide file to another file with passowrd encrypted with AES256 and PBKDF2 algorithms
For more information and basic concepts click here (English version) or here (Portuguese version)
Before you install you must install dependency. In Debian and Ubuntu distributions: Type in console:
sudo apt install libssl-dev
To compile, just type:
mkdir <YOUR_DIRECTORY> && cd <YOUR_DIRECTORY>
git clone https://github.com/devfabiosilva/myStegHideProgram.git
cd myStegHideProgram/src/ && make
Optionally you can install into your system program directory /usr/bin/
sudo make install
If you want to delete compiled fstg program:
make clean
If you installed and wish to unistall from system program directory /usr/bin/ type:
sudo make uninstall
Run locally:
./fstg [ OPTIONS ] <DEST. FILE> <FILE TO BE HIDDEN>
Or if you installed in system program directory type:
fstg [ OPTIONS ] <DEST. FILE> <FILE TO BE HIDDEN>
- add <DEST. FILE> Add to <DEST. FILE>
Example:
Hide a message text in mytext.txt inside mypicture.jpeg without password:
fstg add mypicture.jpg mytext.txt
- add-with-password <DEST. FILE> Encrypt and add to <DEST. FILE>
Example:
Hide a message text in mytext.txt inside mypicture.jpeg with password encryption
fstg add-with-password mypicture.jpg mytext.txt
- extract <DEST. FILE> Extract an stegged file (if exists) from <DEST. FILE>
Example:
To extract a hidden message inside mypicture.jpeg type:
fstg extract mypicture.jpeg
-
usage Shows program version and details.
-
version Shows program version and details.
In example directory there is an image and a hidden message inside.
To open hidden message you must extract the encrypted hidden file:
fstg extract incognito.jpg
PASSWORD IS 1234
You can donate with any amount of money:
Coin | Wallet |
---|---|
Bitcoin: | 1JDckpLRJGhp46LTcjY1vsW19wurZ3L1d5 |
Nano: | nano_1cb5fs7xmixqzpitfn9ouy4j1g3hjmdfudc1igt5xhwwps7qdku5htqxmznb |
Litecoin: | LRjEiKadFzPCoGorWvSVUnWPsFyPZGt97f |
Dogecoin: | DRrWWMdwY6AN8rdz7zH2cp3qaK8vSgDTau |
This project is under MIT license see LICENSE
Contact me at [email protected] or [email protected]