VulFi icon indicating copy to clipboard operation
VulFi copied to clipboard

About the problem that the plug-in cannot run in ida Pro 9.0

Open p1yang opened this issue 6 months ago • 3 comments

Ida Pro 9.0 modified part of the pythonapi, causing vuifi to fail to run. I modified some of the code to make it possible to run.

add import ida_ida
line 111:comment on this line
line 112:  change to   if ida_ida.inf_is_64bit():
line 114:  change to  elif ida_ida.inf_is_32bit_exactly():
line 119:  change to  self.endian = "big" if ida_ida.inf_is_be() else "little"

p1yang avatar Aug 10 '24 19:08 p1yang