For example, the plugin fluorescence.py is a very small tool that adds a choice in the "Options" menu of IDA to highlight call instructions. It is supposed to work upon dropping it into the plugins directory. Do such plugins only work on IDA Pro or can they be used with the free version?
Asked
Active
Viewed 7,118 times
6
-
1I'm voting to close this question as off-topic because not only has the OP not even bothered to try it out himself first, but also did not even mention the IDA version that he's interested in. – TechLord Mar 08 '18 at 00:20
-
25 years passed, does IDA freeware 8.x supports plugins now? If it is, I would develop the plugin myself. – huang Jan 04 '23 at 06:39
1 Answers
6
No, most plugins don't work, without hacks, with the freeware version because various exported functions (like callui
) are either renamed or deleted.

joxeankoret
- 4,488
- 2
- 21
- 35
-
1Nice to know. No explicit mention that on the download page, and nothing in the Help file under Plugin modules. – Laurie Stearn Apr 06 '18 at 05:46
-
1AFAIK IDA plugins generally work (if used with a supported SDK version, recall IDA free is usually a few steps back). The issue with IDAPython is that the plugin itself is not included in the download, but should work if somehow made available. – NirIzr Jul 27 '18 at 01:01
-
Possibly relevant in particular the part where you wrote, quote: Kind of. After diffing with Diaphora libida64.so, I just realized that some symbols have been renamed to zyaXXX. That's all. – 0xC0000022L Jan 04 '23 at 17:18