view python/readelf.py @ 126:bbf4c9b138d4

Changes to elf reading
author Windel Bouwman
date Sun, 13 Jan 2013 12:14:27 +0100
parents db8aafe00d27
children
line wrap: on
line source

#!/usr/bin/python

import elffile, argparse

parser = argparse.ArgumentParser()
parser.add_argument('file', type=argparse.FileType('rb'))
parser.add_argument('-l', action='store_const', const=True, default=False, dest='list_program_headers')

args = parser.parse_args()
print(args)
ef = elffile.ElfFile(args.file)
print(ef)

if args.list_program_headers:
   print('program headers')
   phs = ef.parsePrograms()
   print(phs)
   for ph in phs:
      print('type=0x{0:X} vaddr=0x{1:X} filesz=0x{2:X}'.format(ph.p_type, ph.p_vaddr, ph.p_filesz))