这是indexloc提供的服务,不要输入任何密码
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM debian:stretch

RUN apt-get update && \
apt-get install -y build-essential git gcc-multilib && \
git clone https://github.com/xoreaxeaxeax/movfuscator.git && \
cd movfuscator && \
/bin/sh build.sh && \
/bin/sh install.sh && \
/bin/sh check.sh



ENTRYPOINT ["/usr/local/bin/movcc"]
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@


build:
docker build .