All Projects → rcx → Classinformer Ida7

rcx / Classinformer Ida7

ClassInformer backported for IDA Pro 7.0

Projects that are alternatives of or similar to Classinformer Ida7

Ret Sync
ret-sync is a set of plugins that helps to synchronize a debugging session (WinDbg/GDB/LLDB/OllyDbg2/x64dbg) with IDA/Ghidra/Binary Ninja disassemblers.
Stars: ✭ 896 (+296.46%)
Mutual labels:  ida-pro, ida-plugin, reverse-engineering
Stingray
IDAPython plugin for finding function strings recursively
Stars: ✭ 110 (-51.33%)
Mutual labels:  ida-pro, ida-plugin, reverse-engineering
Flare Ida
IDA Pro utilities from FLARE team
Stars: ✭ 1,374 (+507.96%)
Mutual labels:  ida-pro, ida-plugin, reverse-engineering
Efixplorer
IDA plugin for UEFI firmware analysis and reverse engineering automation
Stars: ✭ 268 (+18.58%)
Mutual labels:  ida-pro, ida-plugin, reverse-engineering
Binexport
Export disassemblies into Protocol Buffers
Stars: ✭ 586 (+159.29%)
Mutual labels:  ida-pro, ida-plugin, reverse-engineering
Sark
IDAPython Made Easy
Stars: ✭ 477 (+111.06%)
Mutual labels:  ida-pro, ida-plugin, reverse-engineering
Ida gel
A collection of IDA loaders for various game console ELF's. (PS3, PSVita, WiiU)
Stars: ✭ 76 (-66.37%)
Mutual labels:  ida-pro, ida-plugin, reverse-engineering
Idarling
Collaborative Reverse Engineering plugin for IDA Pro & Hex-Rays
Stars: ✭ 588 (+160.18%)
Mutual labels:  ida-pro, ida-plugin, reverse-engineering
Rematch
REmatch, a complete binary diffing framework that is free and strives to be open source and community driven.
Stars: ✭ 141 (-37.61%)
Mutual labels:  ida-pro, ida-plugin, reverse-engineering
Ida For Delphi
IDA Python Script to Get All function names from Event Constructor (VCL)
Stars: ✭ 92 (-59.29%)
Mutual labels:  ida-pro, reverse-engineering
Lighthouse
A Code Coverage Explorer for Reverse Engineers
Stars: ✭ 1,348 (+496.46%)
Mutual labels:  ida-pro, reverse-engineering
Reversing List
Reversing list
Stars: ✭ 106 (-53.1%)
Mutual labels:  ida-pro, reverse-engineering
Idangr
Use angr in the IDA Pro debugger generating a state from the current debug session
Stars: ✭ 214 (-5.31%)
Mutual labels:  ida-pro, ida-plugin
Functions Plus
IDA Pro plugin to show functions in a tree view
Stars: ✭ 79 (-65.04%)
Mutual labels:  ida-pro, ida-plugin
Botw Re Notes
Reverse engineering notes and tools for The Legend of Zelda: Breath of the Wild
Stars: ✭ 78 (-65.49%)
Mutual labels:  ida-pro, reverse-engineering
Mazewalker
Toolkit for enriching and speeding up static malware analysis
Stars: ✭ 132 (-41.59%)
Mutual labels:  ida-pro, reverse-engineering
Amie
A Minimalist Instruction Extender for the ARM architecture and IDA Pro
Stars: ✭ 136 (-39.82%)
Mutual labels:  ida-pro, reverse-engineering
Jarvis
"Just Another ReVersIng Suite" or whatever other bullshit you can think of
Stars: ✭ 137 (-39.38%)
Mutual labels:  ida-plugin, reverse-engineering
Hrdev
Hex-Rays Decompiler Enhanced View
Stars: ✭ 163 (-27.88%)
Mutual labels:  ida-pro, ida-plugin
Native Shim
A "shim" for loading native jni files for Android active debugging
Stars: ✭ 145 (-35.84%)
Mutual labels:  ida-pro, reverse-engineering

ClassInformer for IDA 7.0

Originally by sirmabus, backported to IDA 7.0. For IDA 7.1, the orignal author has released an official build. Unforunately for those of us who are too broke to afford it we need 7.0 :P

Compiled binaries over at the Releases. If it crashes, use the Debug build and provide a crashdump and crash log! Otherwise I can't fix the issue

How to compile it

The process for compiling classinformer can be involved. To streamline the dependency collection process three macros are in place:

  1. $(IDADIR)
  2. $(QTDIR)
  3. $(IDASUPPORT)

To set the paths, go to the Property Manager tab in Solution Explorer, and edit PropertySheet. It's not important which configuration you edit PropertySheet in, they all use the same file. Then go to Common Properties -> User Macros and set up macros to paths like below:

$(IDADIR)

This should be your IDA root directory (the directory containing ida.exe). Put your IDA SDK directory (idasdk70) into this directory. So your directory structure may look something like:

C:\Program Files\IDA 7.0 $(IDADIR)
+--- idasdk70
     +--- include
     +--- lib
+--- ida.exe
+--- ida64.exe

$(QTDIR)

You need a QT SDK installation to pregenerate the gui files. Your directory structure may look something like:

C:\Program FIles\Qt\qt-5.6.0-x64-msvc2015\5.6\msvc2015_64
+--- bin
+--- lib
+--- include

$(IDASUPPORT)

You need some support libraries that sirmabus wrote, ported for IDA 7. Setup a directory to hold all of these libraries:

idasupport
+--- IDA_SegmentSelect (https://github.com/ecx86/IDA7-SegmentSelect)
+--- IDA_OggPlayer (https://github.com/ecx86/IDA7-OggPlayer)
+--- IDA_WaitBoxEx-7.0 (https://github.com/dude719/IDA_WaitBoxEx-7.0)
+--- SupportLib (https://github.com/ecx86/IDA7-SupportLib)

Each of these repositories should have the Release .lib precompiled for you. If they are not, you can compile them using a process similar to the one used to compile this project.

After your paths are setup, you are ready to compile. Use Release for the ida.exe plugin, and Release64 for the ida64.exe plugin.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].