stego is a steganographic swiss army knife.
stdin
/stdout
detection (try piping to stego
instead of using --txt
)```bash
stego encode --input image.png --output encoded-image.png --txt "Hello, Stego!" # Encodes the message "Hello, Stego!" into the provided image
stego decode --input encoded-image.png # prints out the encoded message ("Hello, Stego!") hidden in the provided image
echo "Hello, Stego!" | stego encode --input image.png --output encoded-image.png
cat secret | stego encode -i hostimage.png -o output.png # encodes contents of secret into hostimage.png stego decode -i output.png # prints contents of secret
stego --help stego encode --help stego decode --help ```
bash
cargo install stego
OR
bash
git clone https://github.com/ajmwagar/stego
cd stego
cargo install --path ./ --force