How to hide any file inside a jpg

Gunjan

Active member
Legendary
Joined
Jan 30, 2013
Messages
12,255
Kin
163💸
Kumi
512💴
Trait Points
0⚔️
In this trick u will learn how to hide any file or video inside a photo

1. Open "cmd"

Make a new folder in desktop name it as 1
in that folder move any pic [suppose 2.jpg] and a video/any file [suppose 3.mp4]

2. Now on cmd type cd desktop/1/ and hit enter

3. Now type copy /b 2.jpg+3.mp4 Result.jpg press enter

that's it... U will see a file name Result.jpg and if u double click on it, it will be view'd as a photo... even if u try to edit it will be treated as a photo.. But the size will be same as of the video or of the file u used.

And if u try to open it with WIN-RAR it will again show the photo.

The only way is by changing the extension to .rar
 

Revyy

Active member
Veteran
Joined
May 12, 2011
Messages
4,939
Kin
0💸
Kumi
0💴
Trait Points
0⚔️
Failed to Specify what system you have done this on?

Windows and Macbook systems are very different. If this was done on a computer with windows then I have no use for It.
 

Zombie

Active member
Veteran
Joined
Oct 14, 2010
Messages
2,676
Kin
241💸
Kumi
6💴
Trait Points
0⚔️
Awards
Failed to Specify what system you have done this on?

Windows and Macbook systems are very different. If this was done on a computer with windows then I have no use for It.
Code:
cat image.png stuff.tar.gz > image.png
mv image.png stuff.tar.gz
tar -zxvf stuff.tar.gz
If you don't know your basic shell commands, you should probably use a windows machine.

I can make files disappear...
...by adding a period at the beginning of a file name.

#LinuxPro
And they become visible by hitting ctrl+h in most file manages or using ls -al in bash. They're not even hidden in midnight commander.

If you really want to hide files:

Code:
su root
umount /boot
mv /home/user/folder/file /boot/file
ls -l /boot
mount boot
ls -l /boot
exit
Edit: If you installed everything on one partition, shame on you, and this wont work for you.

#LinuxPro
 
Last edited:
  • Like
Reactions: Wabbit and Gunjan
Top