mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-29 13:54:33 +00:00
9 lines
143 B
Python
9 lines
143 B
Python
#!/usr/bin/env python
|
|
import sys
|
|
import lief
|
|
|
|
b = lief.parse(sys.argv[1])
|
|
manager = b.resources_manager
|
|
print(manager)
|
|
print(manager.manifest)
|