帮助查找文件的十六进制标头信息
我并不是 100% 这意味着应该进入 stackoverflow,但我确信如果有必要它会被移动。
我有一个十六进制头文件,我刚刚在屏幕上抓取,想知道该文件的扩展名到底是什么。该文件本来是一个exe,但似乎不起作用,但查看十六进制信息表明它是一个mzp,我只需要确认一下即可。
谢谢。
I'm not 100% this is meant to go in stackoverflow but I'm sure it'll be moved if necessary.
I have a hex header file I just screen grabbed and would like to know what extension the file really is. The file was originally an exe but didn't seem to work, but looking at the hex information showed that it was an mzp, I just need it to be confirmed.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它是用Delphi 创建的可执行文件。前 3 个字节 0x4D 0x5A 0x50 被解码为 ASCII 中的“MZP”。 “P”代表帕斯卡。
It is an executable file created with Delphi. The first 3 bytes 0x4D 0x5A 0x50 are decoded as 'MZP' in ASCII. The "P" stands for Pascal.
MZ - 前两个字节表示 dos 可执行文件。不确定第三个字节 P 的用途。实际上可能不止一个字节并且是程序标识符的一部分?
http://www.fileformat.info/format/exe/corion-mz.htm
MZ - First two bytes indicate dos executable. Not sure what third byte P is for. Might be actually more than one byte and part of program identifier?
http://www.fileformat.info/format/exe/corion-mz.htm
这看起来确实像一个
exe
文件。This does look like an
exe
file.