LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

outguess

steganography tool that hides data in JPEG images

TLDR

Embed data in image
$ outguess -d [secret.txt] [cover.jpg] [output.jpg]
copy
Extract hidden data
$ outguess -r [stego.jpg] [output.txt]
copy
Embed with password
$ outguess -k "[password]" -d [secret.txt] [cover.jpg] [output.jpg]
copy
Extract with password
$ outguess -k "[password]" -r [stego.jpg] [output.txt]
copy
Check embedding capacity
$ outguess -c [cover.jpg]
copy

SYNOPSIS

outguess [options] [input] [output]

DESCRIPTION

OutGuess is a steganography tool that hides data in JPEG images. It preserves image statistics to resist statistical analysis, making detection harder than simpler methods.OutGuess modifies DCT coefficients in ways that maintain expected statistical distributions.

PARAMETERS

-d file

Data file to embed.
-r
Extract mode.
-k key
Password/key.
-c
Check capacity.
-F
Force embedding.
-e
Use error correction.

EXAMPLE

$ # Hide message
outguess -k "secret" -d message.txt photo.jpg stego.jpg

# Recover message
outguess -k "secret" -r stego.jpg recovered.txt
copy

INSTALL

sudo apt install outguess
copy
nix profile install nixpkgs#outguess
copy

CAVEATS

JPEG only. Repeated embedding degrades image. Capacity depends on image complexity. Password provides encryption.

HISTORY

OutGuess was developed by Niels Provos as a steganographic tool resistant to statistical steganalysis techniques.

SEE ALSO

Braincup
Open source brain training for math, memory and focus
Braincup mini-games
41 mini-games · Apache-2.0
No ads · No tracking
Play in browser
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid
276 stars
From the maker of Linux Command Library
Copied to clipboard
Braincup
Open source brain training for math, memory and focus. 41 mini-games, from mental arithmetic to Sudoku, N-Back and Solo Chess.
Apache-2.0 licensed · No ads · No tracking · No account
From the maker of Linux Command Library
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid