| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
To run this:
python steganography.py --help
usage: steganography.py [-h] [-t TEXT] [-e ENCODE] [-d DECODE]
Steganography encoder/decoder, this Python scripts encode data within images.
optional arguments:
-h, --help show this help message and exit
-t TEXT, --text TEXT The text data to encode into the image, this only
should be specified for encoding
-e ENCODE, --encode ENCODE
Encode the following image
-d DECODE, --decode DECODE
Decode the following image
python steganography.py -e image.PNG -t "This is some secret data."
[*] Maximum bytes to encode: 125028 [*] Encoding data... [+] Saved encoded image.
python steganography.py -d encoded_image.PNG
[+] Decoding... [+] Decoded data: This is some secret data.
| Back | FazBrowse Home | New Git URL |