Awesome-Python-Scripts/Steg_Tool
Shankar Jayaprakash 46cc100c5e
Added Steg_Tool Script (#234)
Co-authored-by: Shankar JP <shankarjp12@outlook.com>
2021-10-10 21:13:16 +05:30
..
image.png Added Steg_Tool Script (#234) 2021-10-10 21:13:16 +05:30
README.md Added Steg_Tool Script (#234) 2021-10-10 21:13:16 +05:30
secret.txt Added Steg_Tool Script (#234) 2021-10-10 21:13:16 +05:30
steg.py Added Steg_Tool Script (#234) 2021-10-10 21:13:16 +05:30

Steganography Tool

  • Advanced Image Steganography Tool used to hide files inside Images.
  • Uses LSB (Least Significant Bit) Algorithm to store file data inside the image
  • Works with only .png format

Commands

python3 steg.py

Input

encode <input_image_name> <output_image_name> <file_name>

decode <encoded_image_name> <extracted_file_name>

Example

encode image.png image_new.png secret.txt
decode image_new.png secret_new.txt