Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xorhex/04c00a12d64e25a0b51578efa4497751 to your computer and use it in GitHub Desktop.
Save xorhex/04c00a12d64e25a0b51578efa4497751 to your computer and use it in GitHub Desktop.
Binary Ninja - List Function Names for a DLL from the Type Library
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