Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will random data appended to a JPG make it unusable?

Tags:

So, to simplify my life I want to be able to append from 1 to 7 additional characters on the end of some jpg images my program is processing*. These are dummy padding (fillers, etc - probably all 0x00) just to make the file size a multiple of 8 bytes for block encryption.

Having tried this out with a few programs, it appears they are fine with the additional characters, which occur after the FF D9 that specifies the end of the image - so it appears that the file format is well defined enough that the 'corruption' I'm adding at the end shouldn't matter.

I can always post process the files later if needed, but my preference is to do the simplest thing possible - which is to let them remain (I'm decrypting other file types and they won't mind, so having a special case is annoying).

I figure with all the talk of Steganography hullaballo years ago, someone has some input here...

(encryption processing by 8 byte blocks, I don't want to save pre-encrypted file size, so append 0x00 to input data, and leave them there after decoding)

like image 203
Adam Davis Avatar asked Sep 08 '08 23:09

Adam Davis


People also ask

What are the limitations of JPG?

The JPEG image format is limited to 8-bits, which puts a hard limitation of 16.8 million possible colors. This means that all those other colors that your camera is capable of recording are essentially discarded when the image is converted to JPEG format.

Do JPEGs contain metadata?

A typical JPEG file contains a lot more information than just the bytes required to store image data. A JPEG file also has a lot of metadata in each file containing auxiliary information about the image. On an average, this kind of metadata occupies 16% of size of the JPEG file.

What is JPEG not good for?

JPEGs don't support transparent backgrounds. Non-rectangular logos and graphics featuring lots of text are unlikely to work well in this format as a result. JPEG images will also struggle to blend seamlessly with web pages that feature different background colors. PNG files, on the other hand, do support transparency.

How is data stored in JPG?

JPEG data in general is stored as a stream of blocks, and each block is identified by a marker value. The first two bytes of every JPEG stream are the Start Of Image (SOI) marker values FFh D8h.


2 Answers

No, you can add bits to the end of a jpg file, without making it unusable. The heading of the jpg file tells how to read it, so the program reading it will stop at the end of the jpg data.

In fact, people have hidden zip files inside jpg files by appending the zip data to the end of the jpg data. Because of the way these formats are structured, the resulting file is valid in either format.

like image 61
pkaeding Avatar answered Oct 09 '22 08:10

pkaeding


You can .. but the results may be unpredictable.

Even though there is enough information in the format to tell the client to ignore the extra data it is likely not a case the programmer tested for.

A paranoid program might look at the size, notice the discrepancy and decide it won't process your file because clearly it doesn't fully understand it. This is particularly likely when reading data from the web when random bytes in a file could be considered a security risk.

like image 36
Rob Walker Avatar answered Oct 09 '22 08:10

Rob Walker