Skip to main content

IDA Domain

PyPI version Python Support License: MIT

The IDA Domain API is a new open-source Python API designed to make scripting in IDA simpler, more consistent, and more natural.

This is a first step in a much longer journey. It’s not the finish line, but a foundation for ongoing collaboration between Hex-Rays and the reverse engineering community. Over time, the Domain API will expand to cover more areas of IDA, gradually becoming the main entry point for scripting and plugin development.

The Domain in Domain API refers to the domain of reverse engineering. Concepts like functions, types, cross-references, and more are first-class citizens in this API, giving you cleaner, domain-focused abstractions for common tasks.

The Domain API sits on top of the IDA Python SDK, complementing it rather than replacing it. You can use both side by side—combining the clarity and simplicity of Domain API calls with the full flexibility of the SDK when needed.

Compatibility: Requires IDA Pro 9.1.0 or later

🚀 Key Features

  • Domain-focused design – Work directly with core reverse engineering concepts like functions, types, and xrefs as first-class citizens.
  • Open source from day one – Read the code, suggest improvements, or contribute new ideas.
  • Pure Python implementation – No compilation required, works with modern Python versions.
  • Compatible by design – Use alongside the IDA Python SDK without conflicts.
  • Developer-centric – Reduce boilerplate and streamline frequent tasks.
  • Independently versioned – Upgrade at your own pace and pin versions for stability.
  • Simple installation – Get started with a single pip install.

📦 Installation

Prerequisites

IDA Pro Version: The IDA Domain library requires IDA Pro 9.1.0 or later.

The idapro Python module needs to know where IDA Pro is installed. The location is stored in a per-user config file (%APPDATA%\Hex-Rays\IDA Pro\ida-config.json on Windows, ~/.idapro/ida-config.json on Linux/macOS).

  • If IDA was installed via HCLI: the install path is configured automatically — no further setup is required.

  • Otherwise: run the py-activate-idalib.py activation script that ships with IDA once. It auto-detects the install directory from its own location and writes it to the per-user config. The script normally lives in <IDA install dir>/idalib/python/:

    Linux/macOS:

    python3 "/path/to/ida/idalib/python/py-activate-idalib.py"
    

    Windows:

    python "C:\Program Files\IDA Professional 9.1\idalib\python\py-activate-idalib.py"
    

    You can also pass -d <ida-install-dir> to point at a specific IDA installation explicitly.

Install from PyPI

pip install ida-domain

Overriding the IDA install directory with IDADIR

To override the configured install directory for a single session or script — for example to test a specific IDA build, switch between multiple installed versions, or in CI — set the IDADIR environment variable before importing idapro:

Linux/macOS:

export IDADIR="/path/to/your/ida/installation"

Windows:

set "IDADIR=C:\Program Files\IDA Professional 9.1"

Example paths:

  • macOS: /Applications/IDA Professional 9.1.app/Contents/MacOS/
  • Windows: C:\Program Files\IDA Professional 9.1\
  • Linux: /opt/ida-9.1/

Important: Set IDADIR only for the current shell session or inside the script that uses idapro — do not set it as a persistent/global environment variable (e.g. via ~/.bashrc, ~/.zshrc, or Windows System Properties). A globally exported IDADIR can interfere with the IDA GUI and other IDA tools on your system.

🎯 Usage Example

Here is an example showing how to use IDA Domain to analyze a binary:

#!/usr/bin/env python3
"""
Database exploration example for IDA Domain API.

This example demonstrates how to open an IDA database and explore its basic properties.
"""

import argparse
from dataclasses import asdict

import ida_domain
from ida_domain import Database
from ida_domain.database import IdaCommandOptions


def explore_database(db_path):
    """Explore basic database information."""
    ida_options = IdaCommandOptions(auto_analysis=True, new_database=False)
    with Database.open(db_path, ida_options) as db:
        # Get basic information
        print(f'Address range: {hex(db.minimum_ea)} - {hex(db.maximum_ea)}')

        # Get metadata
        print('Database metadata:')
        metadata_dict = asdict(db.metadata)
        for key, value in metadata_dict.items():
            print(f'  {key}: {value}')

        # Count functions
        function_count = 0
        for _ in db.functions:
            function_count += 1
        print(f'Total functions: {function_count}')


def main():
    """Main entry point with argument parsing."""
    parser = argparse.ArgumentParser(description='Database exploration example')
    parser.add_argument(
        '-f', '--input-file', help='Binary input file to be loaded', type=str, required=True
    )
    args = parser.parse_args()
    explore_database(args.input_file)


if __name__ == '__main__':
    main()

📖 Documentation

Complete documentation is available at: https://ida-domain.docs.hex-rays.com/

🛠️ Development

For development, we use a uv based workflow:

git clone https://github.com/HexRaysSA/ida-domain.git
cd ida-domain
uv sync --extra dev
uv run pre-commit install

🧪 Testing

Run the test suite using pytest:

uv sync --extra dev
uv run pytest

📚 Build Documentation

To build the documentation locally:

uv sync --extra docs
uv run mkdocs serve

Or to just build it,

uv run mkdocs build

The documentation is available in site/

Online Documentation

The latest documentation is available at: https://ida-domain.docs.hex-rays.com/

📝 Examples

Check the examples/ directory for usage examples:

uv run python examples/analyze_database.py

Installed and editable packages can locate the examples programmatically:

from ida_domain import examples_path

examples = examples_path()

Contributing

We welcome contributions! Please see our Contributing Guidelines for details on how to:

  • Report bugs and suggest features
  • Submit pull requests with proper testing

License

This project is licensed under the MIT License - see the LICENSE file for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ida_domain-0.5.1.tar.gz (396.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ida_domain-0.5.1-py3-none-any.whl (201.3 kB view details)

Uploaded Python 3

File details

Details for the file ida_domain-0.5.1.tar.gz.

File metadata

  • Download URL: ida_domain-0.5.1.tar.gz
  • Upload date:
  • Size: 396.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for ida_domain-0.5.1.tar.gz
Algorithm Hash digest
SHA256 c49f2c417047d882e954f651b50a709a3f27903b33ba533b794aa54d6536d16f
MD5 7159efa187f139192f0922e38d2ca4bf
BLAKE2b-256 8034be087d3ea1c3a6573e0660cb5b40f0c4ade9ae5772cf1c5d98d52472d28b

See more details on using hashes here.

File details

Details for the file ida_domain-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: ida_domain-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 201.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for ida_domain-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bfbb17c7d0cb2ed7d3f21342e1c8787f9018d5c2a94cdfd29e06537dd026a06d
MD5 cd82b0bbe8b29c7d7c3896e99316e4be
BLAKE2b-256 27789c698d818b0fddc6648f703a0821edeeb65b18404b43f556d249c5446c96

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.5.1 This release

2 files

0.5.0

2 files

0.4.0

2 files

0.3.5

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page