PE 头的大小

发布于 2024-12-17 03:18:55 字数 39 浏览 0 评论 0原文

有没有办法在不读取全部或整个文件的情况下找出 PE 标头的大小?

Is there a way to find out the size of a PE Header without reading all of it or the entire file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮邮递员 2024-12-24 03:18:55

您可以这样计算 PE 标头的总大小:

sizeof(Signature) + sizeof(FileHeader) + sizeof(OptionalHeader) + sizeof(SectionTable)

文件标头始终具有相同的大小,但OptionalHeader 的大小可以不同,节表大小也可以不同。

OptionalHeader的大小存储在FileHeader.SizeOfOptionalHeader中,节表大小等于FileHeader.NumberOfSections * sizeof(IMAGE_SECTION_HEADER)

和一些C代码:

DWORD SizeOfPEHeader(const IMAGE_NT_HEADERS * pNTH)
{
    return (offsetof(IMAGE_NT_HEADERS, OptionalHeader) + pNTH->FileHeader.SizeOfOptionalHeader + (pNTH->FileHeader.NumberOfSections * sizeof(IMAGE_SECTION_HEADER)));
}

您所要做的就是阅读DOS header,获取PE偏移量(e_lfanew)并将PE.Signature + PE.FileHeader读入内存。这是两次固定大小的读取操作,您就拥有了所需的所有信息。

You can calculate the total size of the PE header like this:

sizeof(Signature) + sizeof(FileHeader) + sizeof(OptionalHeader) + sizeof(SectionTable)

The file header always has the same size but the OptionalHeader's size can differ, as can the section table size.

The OptionalHeader's size is stored in FileHeader.SizeOfOptionalHeader, and the section table size equals FileHeader.NumberOfSections * sizeof(IMAGE_SECTION_HEADER)

And some C code:

DWORD SizeOfPEHeader(const IMAGE_NT_HEADERS * pNTH)
{
    return (offsetof(IMAGE_NT_HEADERS, OptionalHeader) + pNTH->FileHeader.SizeOfOptionalHeader + (pNTH->FileHeader.NumberOfSections * sizeof(IMAGE_SECTION_HEADER)));
}

All you have to do is read the DOS header, get the PE offset (e_lfanew) and read PE.Signature + PE.FileHeader into memory. That's two reading operations of fixed size and you have all the info you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文