Created
September 14, 2016 15:53
-
-
Save kukfa/c05389a55ea6fcf331a4f7a22f9ac278 to your computer and use it in GitHub Desktop.
Binary Ninja function count
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
| 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