Seed Protect is a collection of simple Windows batch scripts that utilize Steghide to securely hide and extract sensitive data (e.g., seed phrases, passwords) within JPG image files. This allows for an additional layer of obfuscation and security when storing or sharing sensitive text data.
- ofero-encrypt.bat:
Embed a.txt
file containing sensitive data into a.jpg
image usingSteghide
. - ofero-decrypt.bat:
Extract the hidden.txt
file from a.jpg
image.
Both scripts provide a user-friendly drag-and-drop interface, requiring no command-line experience.
-
Steghide
Ensuresteghide
is installed and included in thesteghide
folder inside the repository.
Download Steghide -
Windows OS
The batch files are designed to run on Windows.
- Place
ofero-encrypt.bat
in the same directory as the Steghide executable. - Drag and drop both:
- A
.txt
file containing sensitive data, and - A
.jpg
file to hide the text in.
- A
- Follow the on-screen prompts.
- The
.txt
file will be securely embedded into the.jpg
image and deleted after successful encryption.
Example:
Drag seed.txt
and cover.jpg
onto ofero-encrypt.bat
.
This will embed seed.txt
into cover.jpg
.
2. Decryption - Extract hidden text from a .jpg
image
- Place
ofero-decrypt.bat
in the same directory as the Steghide executable. - Drag and drop a
.jpg
file containing hidden data onto the batch script. - A file named
decrypt.txt
will be extracted into the same directory.
Example:
Drag cover.jpg
onto ofero-decrypt.bat
.
This will extract decrypt.txt
.
seed-protect/
│
├── steghide/ # Directory for the Steghide executable
│ └── steghide.exe # Steghide tool
│
├── ofero-encrypt.bat # Script to hide a .txt file into a .jpg file
├── ofero-decrypt.bat # Script to extract hidden text from a .jpg file
└── README.md # This documentation file
Steghide will prompt for a password during encryption and extraction. Use a strong password to prevent unauthorized access. The .txt file is deleted automatically after successful encryption to prevent duplication of sensitive data. Ensure you back up the password securely, as it is required for decryption.
This tool is provided as is, without any warranty. Use it responsibly to protect sensitive data.
Feel free to fork this repository and submit pull requests for improvements or bug fixes.
This project is licensed under the MIT License.
Thank you for using Ofero Network's Security Tools!