Python 3 Steganography Script to Hide Text, Images & EXE Files Inside Another Images in Command Line
from treasure_image import PIRATE #if want to hide a string in example.jpg(host image)PIRATE.hide_str_treasure(image="profile.jpg", treasure="JOHN WILLIAMSON ASTLE") from treasure_image import EXPLORER #if want to extract a string from example.jpg(host image)text = EXPLORER.seek_str_treasure(image="profile.jpg")print(text)
from treasure_image import PIRATE PIRATE.hide_img_treasure(image="profile.jpg", treasure="1.png") PIRATE.hide_file_treasure(image="profile.jpg", treasure="file.exe") from treasure_image import EXPLORER EXPLORER.seek_str_treasure(image="profile.jpg") EXPLORER.seek_img_treasure(image="profile.jpg") EXPLORER.seek_exe_treasure(image="profile.jpg")