GitHunt
AS

astros3x/Astri-hider

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.

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.

Languages

Python100.0%

Contributors

Latest Release

v1.0.0July 16, 2023
Apache License 2.0
Created July 11, 2023
Updated December 1, 2025
astros3x/Astri-hider | GitHunt