Download https://github.com/erocarrera/pefile import pefile pe = pefile.PE('exe파일, DLL, object 코드 등 ') print(pe.dump_info()) pefile을 import 한 후, exe파일 또는 DLL , object 코드 FON 폰트파일등을 선언해줍니다. pe.dump_info() 를 통해 선언한 파일을 덤프해서 출력합니다. ----------DOS_HEADER---------- [IMAGE_DOS_HEADER] 0x0 0x0 e_magic: 0x5A4D 0x2 0x2 e_cblp: 0x90 0x4 0x4 e_cp: 0x3 0x6 0x6 e_crlc: 0x0 0x8 0x8 e_cparhdr: 0x4 ----------NT_HEADERS---------- [IMAGE_NT_HEADERS] 0xF0 0x0 Signature: 0x4550 ----------FILE_HEADER---------- [IMAGE...
#
PE
#
pefile
#
Python
#
파이썬
원문 링크 : Python - pefile