mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
9da2466609
- It also provides typing info (close #650) - Enhance the test suite - Remove deprecated PE functions
10 lines
231 B
Python
10 lines
231 B
Python
import lief
|
|
import sys
|
|
|
|
pe = lief.parse(sys.argv[1])
|
|
exports = pe.get_export()
|
|
|
|
for e in filter(lambda e: e.is_forwarded, exports.entries):
|
|
fwd = e.forward_information
|
|
print(f"{e.name:<35} -> {fwd.library}.{fwd.function}")
|