How to analyze binary file?

前端 未结 13 2262
甜味超标
甜味超标 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

    Do you know the program that uses it? If so you can hook that programs write to file function and get an idea of what data its writing, the size of the data and where.

    More Info: http://www.codeproject.com/KB/DLL/Win32APIHooking_Trouble.aspx

提交回复
热议问题