Installing Ida Pro Linux

The IDA Evaluation Version previously came installed with Kali Linux 1.0, but since the upgrade to 2.0 and now Rolling Edition, IDA is no longer present. Since the evaluation version is available as 32-bit binaries only, getting it running requires figuring out the rather large set of dependent 32-bit libraries that must be installed on Kali 64-bit.

  1. Ida Pro 7
  2. Mac Ida Pro

Installing Plugin¶ Since FIRST is an IDA Python plugin it only works with a license version of Hex Ray’s IDA Pro. Due to the integrations with IDA Pro there is a minimum version number. The FIRST plugin only works with IDA 6.9 (service pack 1), relased May 2016, and higher. Start IDA Pro, click File/Script file. From the menu, choose the location of qilingida.py and the plugin will be loaded automatically. Once loaded, the plugin is available under 'Edit-Plugins-Qiling Emulator' and pop-up menu. The plugin supports IDA Pro 7.x with Python3.6+. Recommend platforms: macOS &.


Ida

Contribute to jas502n/IDAPro7.2 development by creating an account on GitHub. Installing Plugin¶ Since FIRST is an IDA Python plugin it only works with a license version of Hex Ray’s IDA Pro. Due to the integrations with IDA Pro there is a minimum version number. The FIRST plugin only works with IDA 6.9 (service pack 1), relased May 2016, and higher. Nov 28, 2017 - Ida Pro Linux Install Rating: 7,4/10 4741reviews.

For a quick fix, run the following commands:
$ sudo dpkg --add-architecture i386
$ sudo apt-get update
$ sudo apt-get install libglib2.0-0:i386 libx11-xcb1:i386 libxi6:i386 libsm6:i386 libfontconfig1:i386 libqt5gui5:i386

Now IDA should successfully execute from the CLI and give you a graphical window to accept the IDA License Agreement.
How to determine what libraries are missing and which packages provide them involves the iterative process of:

Ida Pro 7

  1. Check for missing shared objects
  2. Check which package provides them
  3. Install that package
For example:
~/Downloads/idademo69$ ldd idaq | grep 'not found'
libgobject-2.0.so.0 => not found
libgthread-2.0.so.0 => not found
libglib-2.0.so.0 => not found
libXext.so.6 => not found
libX11.so.6 => not found
libgthread-2.0.so.0 => not found
libglib-2.0.so.0 => not found
~/Downloads/idademo69$ dpkg -S libXext.so.6
libxext6:amd64: /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
libxext6:amd64: /usr/lib/x86_64-linux-gnu/libXext.so.6
~/Downloads/idademo69$ sudo apt-get install libxext6:i386

Mac Ida Pro

References