作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道该怎么做。我确实知道签名是 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/
我是一名优秀的程序员,十分优秀!