开发者

Reverse engineering a custom data file

开发者 https://www.devze.com 2022-12-24 04:20 出处:网络
At my place of work we have a legacy document management system that for various reasons is now unsupported by the developers. I have been asked to look into extracting the documents contained in this

At my place of work we have a legacy document management system that for various reasons is now unsupported by the developers. I have been asked to look into extracting the documents contained in this system to eventually be imported into a new 3rd party system.

From tracing and process monitoring I have determined that the document images (mainly tiff files) are stored in a number of 1.5GB files. These files seem to be read from a specific offset and then written to a tmp file that is then served via a web app to the client, and then deleted.

I guess I am looking for suggestions as开发者_如何学JAVA to how I can inspect these large files that contain the tiff images, and eventually extract and write them to individual files.


Are the TIFFs compressed in some way? If not, then your job may be pretty easy: stitch the TIFFs together from the 1.5G files.

Can you see the output of a particular 1.5G file (or series of them)? If so, then you should be able to piece together what the bytes should look like for that TIFF if it were uncompressed.

If the bytes don't appear to be there, then try some standard compressions (zip, tar, etc.) to see if you get a match.


I'd open a file, seek to the required offset, and then stream into a tiff object (ideally one that supports streaming from memory or file). Then you've got it. Poke around at some of the other bits, as there's likely metadata about the document that may be useful to the next system.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号