Search results

  1. S

    Class Informer By Sirmabus

    Finally got around to both updating to IDA 7.1 and/or putting them up on soureforge: https://sourceforge.net/projects/classinformer/ https://sourceforge.net/u/sirmabus/profile/
  2. S

    Class Informer By Sirmabus

    Getting around to updatding all my plugins to IDA 7 finally. Put in about 30 hours into so far. There is a lot of IDA SDK API changes so it's a lot more work as opposed to just doing an update. For one thing, they nicely added RTTI support to IDA. But unfortuantly so far I noticed it has an...
  3. S

    Class Informer By Sirmabus

    I'll get to it soon. Making a 64bit (AMD64 DLL) version shouldn't be a problem, but it will need some investigation because the patch notes say they added RTTI support. Which means maybe IDA detects RTTI now and might already place a lot of the structures automatically. If so just means I might...
  4. S

    Class Informer By Sirmabus

    I'll have to study it. I'm not so interested adding constructor/destructor support although people have asked for that. Also people ask for some kind of automatic member function naming. There was a white paper once where it claimed they do full class reconstruction years ago but I doubt it...
  5. S

    Class Informer By Sirmabus

    Thanks for making and posting a 6.8 version :-)
  6. S

    Class Informer By Sirmabus

    Sorry for the delay, I should check the site more often. That's good info. Didn't know there was a hard limit of 2048 characters for these names. The problem is IDA string limits are normally 1024 due to the way the internal DB system works. One could structure things to use multiples of...
  7. S

    Class Informer By Sirmabus

    You could probably make a Python script to fix them.
  8. S

    Class Informer By Sirmabus

    Thanks much. I'm sure it's easier to do from Python since it's sort of abstracted away from a lot of the binary details, but it's not all that difficult for C++ still. See: http://www.macromonkey.com/qt-4-8-4-on-windows-for-ida-pro-cc-plug-in-development-part-1/ Took me a second there to...
  9. S

    Release IDA Plugin Info By sirmabus

    Well it shouldn't crash at anyrate, unless assuming you did have the 2013 runtime and it was the "Failed to load" or "is missing 'PLUGIN' export." throws. Which sort of needs to be there to say "something is really strange here", instead say just skipping the plug-in with out knowing why. If you...
  10. S

    NEW IDA Pro ExtraPass plugin v3.4 by Sirmabus

    That error happens in "TryFunction()" when it encounters something unepected when it thinks it's looking at what should probably be a funciton in the specificed address range. Like IDA it's self makes mistakes or the wrong assumption, or why there even has to be this plug-in like this in the...
  11. S

    Release IDA Plugin Info By sirmabus

    Hey thanks much.
  12. S

    HELP Looking for help from someone who knows how to write IDA plugins

    I made a little script for dumping pushed arguments that might do what you want. 1) Select your cursor on or inside a function of interest. 2) Run the script. 3) When it prompts you, enter how many arguments to dump. It will dump everything out to the output window where you can click on the...
Top