berdav / ilspycmd-docker

Docker images to run ilspycmd and decompile .NET applications on Linux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ilspycmd-docker

🕵️🐳

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

Usage

Pull the image from the docker hub

This image is pushed to the official docker hub.

You can install it using

sudo docker pull berdav/ilspycmd

Or directly run it using

sudo docker run -v .:/docker --rm -ti berdav/ilspycmd

Build the image

Alternatively you can build the image from this repository

To build the image simply use the provided script:

sudo ./setup.sh

Decompile a library

To 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.sh

After 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.dll

Then you will find the extracted data inside target directory.

About

Docker images to run ilspycmd and decompile .NET applications on Linux

License:GNU General Public License v3.0


Languages

Language:Shell 53.9%Language:Dockerfile 46.1%