Created
June 26, 2021 23:13
-
-
Save tandasat/675f1db744203aa574b4d9c866d221f5 to your computer and use it in GitHub Desktop.
IDA script to show the first instruction of the all functions
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
from idautils import * | |
from idaapi import * | |
from idc import * | |
for funcea in Functions(): | |
functionName = get_func_name(funcea) | |
for (startea, endea) in Chunks(funcea): | |
print(f"{startea:08x} {GetDisasm(startea)} : {functionName}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment