mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
9 lines
146 B
Python
9 lines
146 B
Python
#!/usr/bin/env python
|
|
import sys
|
|
import lief
|
|
|
|
b = lief.PE.parse(sys.argv[1])
|
|
manager = b.resources_manager
|
|
print(manager)
|
|
print(manager.manifest)
|