Skip to content

Dockerized Wine IDA, with prebuilt image!

Notifications You must be signed in to change notification settings

nevinhappy/docker-wine-ida

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

    docker run --name docker-ida -it nyamisty/docker-wine-ida:7.6sp1 wine C:\\IDA\\ida.exe
    
  • 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:

    docker run --name docker-ida --hostname="$(hostname)" --env="RDP_SERVER=yes" --publish="3389:3389/tcp" -it nyamisty/docker-wine-ida:7.6sp1 wine C:\\IDA\\ida.exe
    

Credits

About

Dockerized Wine IDA, with prebuilt image!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 80.6%
  • Shell 19.4%