Dockerized Wine IDA, with Jupyter & prebuilt image! https://hub.docker.com/r/nyamisty/docker-wine-ida
Find a file
2022-01-30 09:47:36 +08:00
.github/workflows Bump version 7.7sp1 & introduce fixes for wine idapython 2022-01-30 09:47:36 +08:00
docker-ida-logo.png Add readme [ci skip] 2021-08-16 14:23:39 +08:00
Dockerfile Bump version 7.7sp1 & introduce fixes for wine idapython 2022-01-30 09:47:36 +08:00
manual_build.sh Initial working commit 2021-08-16 14:23:02 +08:00
README.md fix rdp usage [ci skip] 2021-08-30 04:26:11 +08:00

docker-wine-ida

Docker IDA

Dockerized Windows IDA running on Wine, with Xvfb/X11/Xrdp support builtin!

with prebuilt leaked IDA version available at nyamisty/docker-wine-ida

Installation

docker pull nyamisty/docker-wine-ida:7.6sp1

docker pull nyamisty/docker-wine-ida:7.5sp3

docker pull nyamisty/docker-wine-ida:7.0

Usage

docker-wine-ida is based on scottyhardy/docker-wine, but without its ./docker-wine wrapper script, so the usage is in the manual-running part

  • Run with Xvfb:

    • Without mapping dir:
    docker run --name docker-ida -it nyamisty/docker-wine-ida:7.6sp1 wine C:\\IDA\\ida.exe
    
    • Map current directory to C:\workspace
    docker run --name docker-ida -v "${PWD}:/root/.wine64/drive_c/workspace" -it nyamisty/docker-wine-ida:7.6sp1 wine C:\\IDA\\ida.exe C:\\workspace\\test.bin
    
  • Run with X11 forward:

    docker run --name docker-ida --hostname="$(hostname)" --env="USE_XVFB=no" --env="DISPLAY" --volume="${XAUTHORITY:-${HOME}/.Xauthority}:/root/.Xauthority:ro" --volume="/tmp/.X11-unix:/tmp/.X11-unix:ro" -it nyamisty/docker-wine-ida:7.6sp1 wine C:\\IDA\\ida.exe
    
  • Run with Xrdp:

    1. Run the container, and export the RDP port 3389.
    docker run --name docker-ida --hostname="$(hostname)" --env="RDP_SERVER=yes" --publish="3389:3389/tcp" -it nyamisty/docker-wine-ida:7.6sp1
    
    1. Connect to RDP server with credentials:
    • user: root
    • pass: DockerWineIDA
    1. Run IDA in the terminal:
    wine C:\\IDA\\ida.exe
    wine C:\\IDA\\ida64.exe
    

Credits