Skip to content

Commit

Permalink
dockerfile added
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogonzalezperez committed Jul 15, 2020
1 parent 378ffdc commit 0f8e29f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM debian:stretch

WORKDIR /root/Eternalblue-Doublepulsar-Metasploit

RUN apt-get update && \
apt-get -y install wine git gnupg curl

RUN dpkg --add-architecture i386 && \
apt-get update && \
apt-get -y install wine32

RUN curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && \
chmod 755 msfinstall && \
./msfinstall

ADD . /root/Eternalblue-Doublepulsar-Metasploit

RUN cp eternalblue_doublepulsar.rb /opt/metasploit-framework/embedded/framework/modules/exploits/windows/smb/

RUN mkdir -p /root/.wine/drive_c


0 comments on commit 0f8e29f

Please sign in to comment.