Skip to content

Stegdetect

It is a tool which detects whether the given file has steganographic content or not.

Installation

Please clone this repository before executing the following commands.

If using a 64-bit system,

$ linux32 ./configure

$ linux32 make

You can now run stegdetect from the local directory:

$ ./stegdetect
Note: Stegdetect tool works only for JPEG image formats.

Usage

To run stegdetect on a directory of JPEGs use:

for img in `find /path/to/images/ -iname "*jpg"`; do
  ./stegdetect -tF $img;
done