0xgalz / Virtuailor

IDAPython tool for creating automatic C++ virtual tables in IDA Pro
GNU General Public License v3.0
1.28k stars 128 forks source link

Incompatibility of IDA in conditional BPs? #4

Closed cclauss closed 5 years ago

cclauss commented 5 years ago

Removed future print_function in BPs due to incompatibility of IDA in conditional BPs

Two changes in #2 was reverted in https://github.com/0xgalz/Virtuailor/commit/e72106a5b04b676dfc84a38d57bc1e1c5343d164 . If you get a minute, can you explain this message. I do not know much about IDA.

0xgalz commented 5 years ago

Hi, IDA is an interactive disassembler, its a tool for reverse engineering. https://www.hex-rays.com/products/ida/index.shtml The reason I reverted the changes is that conditional breakpoints in IDA do not support this import and an error occurs when doing so.

cclauss commented 5 years ago

Thanks.