🕵️🐳
Docker images to run ilspycmd and decompile .NET applications on Linux
.NET applications on Linux are difficult to decompile. ilspycmd can be used to decompile them but it requires a specific version of .NET.
With this Docker image you can easily run ilspycmd just installing it from Docker
This image is pushed to the official docker hub.
You can install it using
sudo docker pull berdav/ilspycmdOr directly run it using
sudo docker run -v .:/docker --rm -ti berdav/ilspycmdAlternatively you can build the image from this repository
To build the image simply use the provided script:
sudo ./setup.shTo decompile the library place it inside this directory
cp /home/test/target.dll .Then you can execute the run.sh script as root
sudo ./run.shAfter that you can decompile the dll or the exe from the /docker directory
ilspy@ilspycmd$ cd /docker
ilspy@ilspycmd:/docker$ ilspycmd -p -o target target.dllThen you will find the extracted data inside target directory.