zardus / idalink

Some glue facilitating remote use of IDA (the Interactive DisAssembler) Python API.
BSD 2-Clause "Simplified" License
77 stars 18 forks source link

idalink

idalink arose of the need to easily use IDA's API for analysis without wanting to be stuck in the IDA interface. It's rather hackish still and and we provide no warranty of any kind (express or implied), but we are doing our best to fix any issues you find. Pull requests are -of course- also encouraged!

idalink works by spawning an IDA CLI session in the background (in a detached screen session), and connects to it using RPyC.

Requirements

idalink requires the following:

idalink uses:

Usage

To use idalink, put it in a place where you can import it and do, in any python session (ie, outside of IDA):

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from idalink import IDALink

# We want debug messages for now
import logging
logging.basicConfig()
logging.getLogger('idalink').setLevel('DEBUG')

# Let's do some testing with idalink!
with IDALink("idat64", "./tests/bash") as ida:
    # use idc
    s = ida.idc.ScreenEA()
    print("Default ScreenEA is {:x}".format(s))

    # use idautils
    print("All segments")
    for s in ida.idautils.Segments():
        print(" - Segment at {:x} is named {}".format(s, ida.idc.SegName(s)))

    # use idaapi
    print("First byte for each function")
    for i, s in enumerate(ida.idautils.Functions()):
        print(" - Byte at {:x} is {:02x}".format(s, ida.idaapi.get_byte(s)))

    # access IDA memory in a dict way
    print("Accessing memory directly")
    functions = next(ida.idautils.Functions())
    print(" - Byte at {:x} is {}".format(s, ida.memory[s]))

And that's that. Basically, you get access to the IDA API from outside of IDA. Good stuff.

Issues