Add inital pwn container and expose common tor ports

This commit is contained in:
Sivert V. Sæther 2022-05-05 21:40:37 +02:00
parent e32b549dea
commit 9dbc6d5139
2 changed files with 6 additions and 0 deletions

5
siverten/pwn/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM kalilinux/kali-bleeding-edge:latest
RUN apt update && apt -y upgrade
RUN apt -y install metasploit-framework nmap msfpc

View File

@ -1,4 +1,5 @@
FROM alpine:latest FROM alpine:latest
RUN apk update && apk upgrade RUN apk update && apk upgrade
RUN apk add tor RUN apk add tor
EXPOSE 9030 9050 9051 9090
CMD /usr/bin/tor CMD /usr/bin/tor