Here we are going to learn how to hide your secure contents
inside an Image.
Requirements:
Winrar (or) Winzip.
Image file – With .Jpeg Extension.
Procedure:
- Place your confident files inside a folder. (Example – Word Document, Excel Document etc..).
- Zip the folder with either Winrar (or) Winzip.
- Create another folder and place the Zipped file in to it.
- Place the Image file in to the folder in which you place the Zip file. (Actually we are going to hide the Zipped contents inside the placed Image.).
- Now open a notepad and paste the below mentioned codes and save it as Filebinder.bat inside the folder containing the Image and Zipped file.
@echo off
title File Binder V1.0
echo.
color f0
cls
:f
echo.
echo Enter the file name of the Image with extension (example: Image.Jpeg)
set/p "img=>"
goto cf
:cf
cls
if exist %img% (
goto i
) else (
echo.
echo No such file found in this folder !!!
goto f
)
:i
echo.
echo Enter the name of the Zip file with extension (example: File.zip)
set/p "fil=>"
goto ci
:ci
cls
if exist %fil% (
goto o
) else (
echo.
echo No such file found in this folder !!!
goto i
)
:o
echo.
echo Enter the name required for the output Image file with extension (example: Outputimg.jpeg)
set/p "out=>"
:mydata
cls
echo.
echo You entered the following data:
echo Image file name =%img%
echo Archive file name = %fil%
echo Output file name =%out%
echo.
echo If the information is correct then
pause
echo.
echo Please hold your breath for some time. The time taken by binding process will
depend on size of your files.
echo.
echo binding started...
copy /b "%img%"+"%fil%" "%out%"
echo.
echo bye bye !!!
echo.
echo The binder will now exit.
pause
- Open the Filebinder.bat and follow the steps in it.
- Finally you will get an Output Image.
- If you open it normally it opens as Image. To access the content in side that image, open the same Output Image in Winrar (or) Winzip.
Note: Time taken for binding depend on content size and size
of the Image. Usually keep your Content zipped file to be in the size of 1 – 2 mb.
Enjoy…!