Created
March 11, 2023 11:08
-
-
Save r0t0shell/5a2194f441819d0dc84ffb9cafe1dc16 to your computer and use it in GitHub Desktop.
Dockerfile for movcc container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:22.04 AS movcc | |
| RUN apt update -y | |
| RUN apt install -y git libc6-dev-i386 build-essential | |
| WORKDIR /root | |
| RUN git clone https://github.com/xoreaxeaxeax/movfuscator | |
| WORKDIR /root/movfuscator | |
| RUN ./build.sh | |
| RUN ./install.sh | |
| RUN ./check.sh | |
| ENTRYPOINT ["/bin/bash"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment