How to hide any file inside a jpg

Gunjan

Kage in the Making 👑
Legendary
Joined
Jan 30, 2013
Messages
12,261
Reaction score
422
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
 

-Jiraiya-

Kage in the Making 👑
Legendary
Joined
Sep 16, 2010
Messages
16,205
Reaction score
963
Cool trick bro..
I know this exists for long time but didn't make any effort to try it..!
 

Revyy

Anbu Operative 🎭
Veteran
Joined
May 12, 2011
Messages
4,939
Reaction score
722
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.
 

Οdin

Sage of Six Posts 🔮
Immortal
Joined
Jun 14, 2012
Messages
63,117
Reaction score
1,491
I can make files disappear...
...by adding a period at the beginning of a file name.

#LinuxPro
 

Gunjan

Kage in the Making 👑
Legendary
Joined
Jan 30, 2013
Messages
12,261
Reaction score
422
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.

Windows 7.....
 

Parrish

Kage in the Making 👑
Legendary
Joined
Jul 30, 2012
Messages
11,364
Reaction score
1,641
This is one of the ways people bot your computer.
 

-Punk-

Member
Joined
Aug 23, 2012
Messages
35,343
Reaction score
3,840
I'm a noob with technology , this is to much for me
 

Zombie

Anbu Operative 🎭
Veteran
Joined
Oct 14, 2010
Messages
2,676
Reaction score
695
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:
Top