Created
December 10, 2024 17:12
-
-
Save xorhex/04c00a12d64e25a0b51578efa4497751 to your computer and use it in GitHub Desktop.
Binary Ninja - List Function Names for a DLL from the Type Library
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_lib_functions(dllname: str): | |
for lib in bv.platform.type_libraries: | |
if lib.name == dllname: | |
for f in lib.named_objects: | |
yield(f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment