How to analyze binary file?

前端 未结 13 2223
甜味超标
甜味超标 2021-01-30 04:12

I have a binary file. I don\'t know how it\'s formatted, I only know it comes from a delphi code.

Does it exist any way to analyze a binary file?

Does it exist

13条回答
  •  不思量自难忘°
    2021-01-30 05:09

    The unix "file" command is really useful - I don't know if there is anything like it in windows. You run it like this:

    file myfile.ext
    

    And it spits out a text description based on the magic numbers and data contained therein.

    Probably it is contained within cygwin.

提交回复
热议问题