gpt4 book ai didi

python - 如何在Python中找到PE头的偏移量和签名?

转载 作者:行者123 更新时间:2023-12-01 04:37:42 25 4
gpt4 key购买 nike

我不知道该怎么做。我确实知道签名是 50 45 00 00,但我不确定如何获取 .exe 文件并计算它在 python 中使用的次数。

最后,它应该包含魔数(Magic Number)、PE header 的偏移量、PE 签名、入口点、图像库、PE 的节数、每个节的名称和偏移量。

这是我到目前为止所拥有的(仅适用于魔数(Magic Number)):

def sig(content):
content = content.encode("hex")
content = str(content)
signature = content[0:2].upper()
sig2 = content[2:4].upper()
print "Magic Number: " + str(signature) + " " + str(sig2)

如果您能帮忙,请告诉我!

最佳答案

除了偏移量之外的所有内容

import struct
import pefile
import pydasm

pe = pefile.PE(filename)
print "PE Signature: " + hex(pe.VS_FIXEDFILEINFO.Signature)
print "Image Base: " + hex(pe.OPTIONAL_HEADER.ImageBase)
print "Address of EntryPoint: " + hex(pe.OPTIONAL_HEADER.AddressOfEntryPoint)
print "RVA Number and Size: " + hex(pe.OPTIONAL_HEADER.NumberOfRvaAndSizes)
print "Number of Sections within PE: " + hex(pe.FILE_HEADER.NumberOfSections)

for section in pe.sections:
print 'Section Name: ' + (section.Name)

关于python - 如何在Python中找到PE头的偏移量和签名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31456859/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com