I want to used python to get the executed file version, and i know the pefile.py

how to used it to do this?

notes: the executed file may be not completely.

link
1  
This is belong to stackoverflow – joe Aug 12 '09 at 8:47
2  
Welcome to stackoverflow. This question has now become a dupe of stackoverflow.com/questions/1264472/… – innaM Aug 12 '09 at 9:11
feedback

migrated from superuser.com Aug 12 '09 at 9:09

This question came from our site for computer enthusiasts and power users.

2 Answers

I'm not sure that I understand your problem correctly, but if it's something along the lines of using pefile to retrieve the version of a provided executable, then perhaps (taken from [the tutorial][1])

import pefile
pe =  pefile.PE(‘/path/to/pefile.exe’)
pe.dump_info()

will provide you with the version information. I have no idea how sensible pefile is when parsing incomplete files, but conjecturing that the version information is somewhere in the header and that pefile uses a generator to read the file, then it should be possible to read the information if the header is parseable.

link
feedback

This is the best answer I think you can find:

print hex(pe.VS_VERSIONINFO.Length)
print hex(pe.VS_VERSIONINFO.Type)
print hex(pe.VS_VERSIONINFO.ValueLength)

print hex(pe.VS_FIXEDFILEINFO.Signature)
print hex(pe.VS_FIXEDFILEINFO.FileFlags)
print hex(pe.VS_FIXEDFILEINFO.FileOS)


for fileinfo in pe.FileInfo:

if fileinfo.Key == 'StringFileInfo':
for st in fileinfo.StringTable:
for entry in st.entries.items():
print '%s: %s' % (entry[0], entry[1])

if fileinfo.Key == 'VarFileInfo':
for var in fileinfo.Var:
print '%s: %s' % var.entry.items()[0]

From Ero Carrera's (the author of pefile.py) own blog.

pefile: parsing version information from the resources directory

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.