Skip to content

rls1004/porting-ida-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

porting-ida-python

porting IDA python script 6.x-7.3 to 7.4

Usage

$ python porting-ida-python.py [file]

Example

$ python porting-ida-python.py test.py
.startEA -> .start_ea
.SETPROC_ALL -> .SETPROC_LOADER_NON_FATAL
.autoWait -> .auto_wait
.AnalyzeArea -> .plan_and_wait
.MakeName(func.start_ea, "_panic") -> .set_name(func.start_ea,  "_panic",  idc.SN_CHECK)
.MakeName(func.start_ea, "_do_printf") -> .set_name(func.start_ea,  "_do_printf",  idc.SN_CHECK)
.GetSegmentAttr -> .get_segm_attr
.GetMnem -> .print_insn_mnem
.MakeFunction -> .add_func
.GetFlags -> .get_full_flags
.GetOpnd -> .print_operand
.FindBinary -> .find_binary
[+] create: ida7_test.py

About

porting IDA python script 6.x-7.3 to 7.4

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages