CheckPointSW / Karta

Karta - source code assisted fast binary matching plugin for IDA
MIT License
862 stars 103 forks source link

fix(disa/ida) use BasicBlock.endEA instead of .end_ea #16

Closed jonas-x closed 5 years ago

jonas-x commented 5 years ago

I encountered a crash running karta_matcher on ida6.9 (linux) with the error: 'BasicBlock' object has no attribute 'end_ea'.

Testing locally I found that a BasicBlock only have endEA and startEA, also example online use these variables.

edit: https://www.hex-rays.com/products/ida/support/idapython_docs/ida_gdl.BasicBlock-class.html

chkp-eyalit commented 5 years ago

Nice catch, thanks.