Steganography - Encrypt archive into image secretly
Hey Guys!
Just did a simple coding. This coding is use to hide and encrypt your important data into an image file. You hide your data into an image. Well but you must first archive your data in zip, rar or any archive of your choice. Now run this software. All you have to do it copy the following code in notepad and save it as .bat extension run it to use... You must keep the image file and the archive file in the same folder for this software to work. Here is the code :
Code:
@ECHO OFF
cls
ECHO Thanks for Using HiDeR
ECHO You can edit this software and distribute it any number of time...
ECHO /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
ECHO / \
ECHO \ ###### # # ###### ###### # /
ECHO / # # # # # # # # # # \
ECHO \ # # # # # # # # # # /
ECHO / ###### # # # # ###### # # \
ECHO \ # # # # # # # # ####### /
ECHO / # # # # # # # # # # \
ECHO \ # # ##### ###### # # # # /
ECHO / \
ECHO \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
ECHO Enter name of the image [with extension] :
SET /P image=
ECHO Enter the archive name [with extension] :
SET /P archive=
ECHO Enter name of the secrect image that will hide data in it [with extension] :
SET /P secret=
copy /B %image%+%archive% %secret%
ECHO Done
Pause
Exit
All the best...! Happy Hiding Have Fun...!
Re: Steganography - Encrypt archive into image secretly
Quote:
Originally Posted by
Rudra.J
Hey Guys!
Just did a simple coding. This coding is use to hide and encrypt your important data into an image file. You hide your data into an image. Well but you must first archive your data in zip, rar or any archive of your choice. Now run this software. All you have to do it copy the following code in notepad and save it as .bat extension run it to use... You must keep the image file and the archive file in the same folder for this software to work.
All the best...! Happy Hiding Have Fun...!
Hey that is so cool...! Well you can let your data open in the public, but no one will know what is hiding inside the image...! hahaha... Thanks man..!