I want to get information about the dynamic section of an ELF file. Basically the same information I get using the command line:
readelf -d elfFile
I want to get information about the dynamic section of an ELF file. Basically the same information I get using the command line:
readelf -d elfFile
using pyelftools:
tag = section.get_tag(n)
gives the nth tag of a specific section