Hide a zip file inside an image

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
hacxx
Posts: 57
Joined: 09 Apr 2015 13:18

Hide a zip file inside an image

#1 Post by hacxx » 22 Nov 2021 10:11

With the command below the user is able to hide zipfile.zip inside hackedimage.jpg.

Code: Select all

copy /b sourceimage.jpg + zipfile.zip hackedimage.jpg
The hackedimage.jpg will display as normal image and if the hackedimage.jpg is open with WinRAR it will show zipfile.zip

More tips:
*** link removed ***
Last edited by aGerman on 22 Nov 2021 11:14, edited 1 time in total.
Reason: link removed

Amanullah3456
Posts: 2
Joined: 28 Jun 2022 00:11

Re: Hide a zip file inside an image

#2 Post by Amanullah3456 » 01 Jul 2022 05:52

Type "copy /b IMAGEFILE. jpg+ZIPFILE. ...

ShadowThief
Expert
Posts: 1159
Joined: 06 Sep 2013 21:28
Location: Virginia, United States

Re: Hide a zip file inside an image

#3 Post by ShadowThief » 07 Jul 2022 15:55

Amanullah3456 wrote:
01 Jul 2022 05:52
Type "copy /b IMAGEFILE. jpg+ZIPFILE. ...
They weren't asking a question, and their syntax is correct. Copy uses the format

Code: Select all

copy source destination

Post Reply