Skip to content

astros3x/astri-hider

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASTRI@HIDER

📍 About

Astri@Hider is a tool written in python that allows you to hide secret text messages in a JPG file without actually changing the image. It has a clean and flat GUI that make it intuitive and easy to use. made-with-python version

🗒️ Features

  • Hide a message: Hide a message in a .jpg file without actually changing the image.
message = str(("message")).encode()
f = open("file.jpeg","ab")
f.write(message)
  • Reader: Read any text added to a .jpg file.
f = open("file.jpeg","rb")
content = f.read()
off = content.index(bytes.fromhex('FFD9'))
f.seek(off + 2)
msg = f.read().decode('utf-8')
  • Encrypted MSG: Write an encrypted message using the .key in a .jpg file.
  • Read encrypted: Read a secret message inside a .jpg using the .key file used to encrypt it.
  • Encryption key: Change the .key to encrypt yur message as you want.
  • Clear: Clear a .jpg from any text/useless bytes.
with open("file.jpeg", "rb+") as f:
    content = f.read()
    off = content.index(bytes.fromhex("FFD9"))
    if off != -1:
        f.seek(off + 2)
        f.truncate()

❓ Support

If you have any issues or need help contact us in our discord server.

About

Astri@Hider is a tool written in python that allows you to hide secret text messages in a JPG file without actually change the image.

Topics

Resources

License

Stars

Watchers

Forks

Languages