반응형
ida ][ 함수 이름과 주소 출력해보기
■ 사용법
This file contains 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
# | |
# write by kyoung chip ,jang | |
# python 2.7 | |
# ida 7.2 | |
# | |
from idautils import * | |
from idaapi import * | |
from idc import * | |
ea =BeginEA() | |
for funcAddr in Functions( SegStart(ea) , SegEnd( ea ) ) : | |
funcName = GetFunctionName(funcAddr) | |
if funcName.find("main") > 0 or funcName.find("Main") > 0 or funcName.find("Start") > 0 or funcName.find("start") : | |
print "Function %s is at 0x%x" % ( funcName, funcAddr ) |



반응형
'debug > 0x05-ida' 카테고리의 다른 글
ida ][ 함수 이름과 주소 출력해보기2 (0) | 2019.09.04 |
---|