Skip to content

Instantly share code, notes, and snippets.

@r0t0shell
Created March 11, 2023 11:08
Show Gist options
  • Select an option

  • Save r0t0shell/5a2194f441819d0dc84ffb9cafe1dc16 to your computer and use it in GitHub Desktop.

Select an option

Save r0t0shell/5a2194f441819d0dc84ffb9cafe1dc16 to your computer and use it in GitHub Desktop.
Dockerfile for movcc container
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