You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2019. It is now read-only.
tgtEA = idaapi.askaddr(0, "Enter target address")
if tgtEA is None:
exit
f = idaapi.get_func(tgtEA)
if not f:
print "No function at 0x%x" % (tgtEA)
exit
fc = idaapi.FlowChart(f)
for block in fc:
if block.startEA <= tgtEA:
if block.endEA > tgtEA:
print "0x%x is part of block [0x%x - 0x%x)" % (tgtEA, block.startEA, block.endEA)
The text was updated successfully, but these errors were encountered:
functions are not linear outside windowsland, jump tables are complex to analyze, and many other tricky things related to analysis, so its good to get the analysis results from ida and import them into r2 somehow for comparison
On 16 Jun 2019, at 17:56, Itay Cohen ***@***.***> wrote:
why? We already use function_start and function_length
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#18?email_source=notifications&email_token=AAG75FRYBXPKS6NTZN2LAJLP2ZPEBA5CNFSM4HYOVPHKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODXZP5FI#issuecomment-502464149>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AAG75FSGFRHZPQMMODFFRETP2ZPEBANCNFSM4HYOVPHA>.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The text was updated successfully, but these errors were encountered: