I have a file jpeg which has been probably modified using DOS copy /b command. Is there any software that can detect which part has been appended?
I'd like to filter out the image part, so I can take a look at the rest of the file.
|
I have a file jpeg which has been probably modified using DOS copy /b command. Is there any software that can detect which part has been appended? I'd like to filter out the image part, so I can take a look at the rest of the file. |
|||||||||||||
|
|
I found an interesting program. It's called StegSecret and it can do what I need. It's under GPLv3, so it's free software. Unfortunately, it's only on Spanish, but the interface is easy enough to figure out. |
|||||
|
|
Fire up a hex editor and look for the JPEG End Of Image (EOI) marker (0xFF, 0xD9). Note: It can occur more than once in a JPEG file (eg once at the end of the thumbnail and again at the end of the main image) and there is always the chance it occurs in the appended data you're looking for. |
|||
|