Skip to content

Instantly share code, notes, and snippets.

@kukfa
Created September 14, 2016 15:53
Show Gist options
  • Select an option

  • Save kukfa/c05389a55ea6fcf331a4f7a22f9ac278 to your computer and use it in GitHub Desktop.

Select an option

Save kukfa/c05389a55ea6fcf331a4f7a22f9ac278 to your computer and use it in GitHub Desktop.
Binary Ninja function count
import binaryninja
def functionCount(bv):
print("Function count: " + str(len(bv.functions)))
binaryninja.PluginCommand.register('Function Count', 'Prints the function count to the log', functionCount)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment